diff options
author | stuconnolly <stuart02@gmail.com> | 2009-04-17 18:19:32 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-04-17 18:19:32 +0000 |
commit | 6646f022ec631d24afe58e8fbe4a7824f4a9c498 (patch) | |
tree | 1582920aa2805a8b6f8751eee94eaa26fbfe1edc /Source/TableDump.m | |
parent | 0be6e77f9b561db628c9ea5b8ddaef4f165d6b7c (diff) | |
download | sequelpro-6646f022ec631d24afe58e8fbe4a7824f4a9c498.tar.gz sequelpro-6646f022ec631d24afe58e8fbe4a7824f4a9c498.tar.bz2 sequelpro-6646f022ec631d24afe58e8fbe4a7824f4a9c498.zip |
- Update delete table and database warning messages to be more user friendly (issue #192).
- Also make these messages have a style of critical to indicate the potential loss of data as a result of performing the operation.
- Updated Localizable.strings to accommodate new dialog messages.
Diffstat (limited to 'Source/TableDump.m')
-rw-r--r-- | Source/TableDump.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m index b32c1fae..ff79129d 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -410,7 +410,7 @@ } if (errorStr) { - NSBeginAlertSheet(NSLocalizedString(@"Error", @"Title of error alert"), + NSBeginAlertSheet(NSLocalizedString(@"Error", @"Error"), NSLocalizedString(@"OK", @"OK button"), nil, nil, tableWindow, self, @@ -536,7 +536,7 @@ [singleProgressBar setIndeterminate:NO]; if([importArray count] == 0){ - NSBeginAlertSheet(NSLocalizedString(@"Error", @"Title of error alert"), + NSBeginAlertSheet(NSLocalizedString(@"Error", @"Error"), NSLocalizedString(@"OK", @"OK button"), nil, nil, tableWindow, self, |