diff options
author | stuconnolly <stuart02@gmail.com> | 2011-01-30 16:32:11 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-01-30 16:32:11 +0000 |
commit | 3ffb14a65c91b48ebd146516145b80c483bd3b96 (patch) | |
tree | a6f82aaa40013c2613eeaa1a21b1a45bc3d56f6e | |
parent | feca4191773700887c4279390f94d6a8c65d399c (diff) | |
download | sequelpro-3ffb14a65c91b48ebd146516145b80c483bd3b96.tar.gz sequelpro-3ffb14a65c91b48ebd146516145b80c483bd3b96.tar.bz2 sequelpro-3ffb14a65c91b48ebd146516145b80c483bd3b96.zip |
Improve unsaved theme warning message.
-rw-r--r-- | Source/SPEditorPreferencePane.m | 13 | ||||
-rw-r--r-- | sequel-pro.xcodeproj/project.pbxproj | 1 |
2 files changed, 9 insertions, 5 deletions
diff --git a/Source/SPEditorPreferencePane.m b/Source/SPEditorPreferencePane.m index 6176c742..3b9d8c9c 100644 --- a/Source/SPEditorPreferencePane.m +++ b/Source/SPEditorPreferencePane.m @@ -38,7 +38,6 @@ @end - @implementation SPEditorPreferencePane #pragma mark - @@ -738,12 +737,16 @@ [[NSColorPanel sharedColorPanel] close]; SPBeginWaitingAlertSheet(@"title", - NSLocalizedString(@"Proceed", @"proceed button"), NSLocalizedString(@"Cancel", @"cancel button"), nil, - NSWarningAlertStyle, [[self view] window], self, + NSLocalizedString(@"Proceed", @"proceed button"), + NSLocalizedString(@"Cancel", @"cancel button"), + nil, + NSWarningAlertStyle, + [[self view] window], + self, @selector(checkForUnsavedThemeDidEndSheet:returnCode:contextInfo:), nil, - NSLocalizedString(@"Warning", @"warning"), - NSLocalizedString(@"Current color theme is unsaved. Do you want to proceed without saving it?", @"Current color theme is unsaved. Do you want to proceed without saving it message"), + NSLocalizedString(@"Unsaved Theme", @"unsaved theme message"), + NSLocalizedString(@"The current color theme is unsaved. Do you want to proceed without saving it?", @"unsaved theme informative message"), checkForUnsavedThemeSheetStatus ); diff --git a/sequel-pro.xcodeproj/project.pbxproj b/sequel-pro.xcodeproj/project.pbxproj index 40c30c25..8ed64a39 100644 --- a/sequel-pro.xcodeproj/project.pbxproj +++ b/sequel-pro.xcodeproj/project.pbxproj @@ -2715,6 +2715,7 @@ isa = PBXProject; buildConfigurationList = C05733CB08A9546B00998B17 /* Build configuration list for PBXProject "sequel-pro" */; compatibilityVersion = "Xcode 3.1"; + developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( English, |