diff options
author | dmoagx <post@wickenrode.com> | 2010-09-26 23:55:32 +0000 |
---|---|---|
committer | dmoagx <post@wickenrode.com> | 2010-09-26 23:55:32 +0000 |
commit | 37fadd868cd6bc80cafac2645d33a69e38d6741b (patch) | |
tree | ad8eeffe8c9b5ce6fc421dd95524285c7265dd0e /Source/SPPreferenceController.m | |
parent | 2281746fdc1f1a2ff93fc28fc0182614445d5938 (diff) | |
download | sequelpro-37fadd868cd6bc80cafac2645d33a69e38d6741b.tar.gz sequelpro-37fadd868cd6bc80cafac2645d33a69e38d6741b.tar.bz2 sequelpro-37fadd868cd6bc80cafac2645d33a69e38d6741b.zip |
* One label was too short in Content Filter Manager
* Changed some NSLocalizedString() comments to be more descriptive - keep in mind that the comment is the only thing that can provide context here.
Diffstat (limited to 'Source/SPPreferenceController.m')
-rw-r--r-- | Source/SPPreferenceController.m | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Source/SPPreferenceController.m b/Source/SPPreferenceController.m index 932bed9c..838d48e5 100644 --- a/Source/SPPreferenceController.m +++ b/Source/SPPreferenceController.m @@ -140,17 +140,17 @@ nil ] retain]; editorNameForColors = [[NSArray arrayWithObjects: - NSLocalizedString(@"Text",@"text label for color table"), - NSLocalizedString(@"Background",@"background label for color table"), - NSLocalizedString(@"Caret",@"caret label for color table"), - NSLocalizedString(@"Comment",@"comment label"), - NSLocalizedString(@"Keyword",@"keyword label for color table"), - NSLocalizedString(@"Numeric",@"numeric label for color table"), - NSLocalizedString(@"Quote",@"quote label for color table"), - NSLocalizedString(@"Backtick Quote",@"backtick quote label for color table"), - NSLocalizedString(@"Variable",@"variable label for color table"), - NSLocalizedString(@"Query Background",@"query background label for color table"), - NSLocalizedString(@"Selection",@"selection label for color table"), + NSLocalizedString(@"Text",@"text label for color table (Prefs > Editor)"), + NSLocalizedString(@"Background",@"background label for color table (Prefs > Editor)"), + NSLocalizedString(@"Caret",@"caret label for color table (Prefs > Editor)"), + NSLocalizedString(@"Comment",@"comment label for color table (Prefs > Editor)"), + NSLocalizedString(@"Keyword",@"keyword label for color table (Prefs > Editor)"), + NSLocalizedString(@"Numeric",@"numeric label for color table (Prefs > Editor)"), + NSLocalizedString(@"Quote",@"quote label for color table (Prefs > Editor)"), + NSLocalizedString(@"Backtick Quote",@"backtick quote label for color table (Prefs > Editor)"), + NSLocalizedString(@"Variable",@"variable label for color table (Prefs > Editor)"), + NSLocalizedString(@"Query Background",@"query background label for color table (Prefs > Editor)"), + NSLocalizedString(@"Selection",@"selection label for color table (Prefs > Editor)"), nil ] retain]; @@ -1620,7 +1620,7 @@ [themeSelectionMenu removeAllItems]; [themeSelectionMenu setAutoenablesItems:YES]; [themeSelectionMenu setShowsStateColumn:YES]; - [themeSelectionMenu addItemWithTitle:NSLocalizedString(@"Default", @"default label") action:@selector(setDefaultColors:) keyEquivalent:@""]; + [themeSelectionMenu addItemWithTitle:NSLocalizedString(@"Default", @"Name of 'Default' color theme (Prefs > Editor)") action:@selector(setDefaultColors:) keyEquivalent:@""]; [themeSelectionMenu addItem:[NSMenuItem separatorItem]]; NSArray *foundThemes = [self getAvailableThemes]; |