diff options
author | stuconnolly <stuart02@gmail.com> | 2010-01-06 14:38:01 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-01-06 14:38:01 +0000 |
commit | 2c7eff725904c253efdb3412e9b6c27ab88decdb (patch) | |
tree | 93a9f74aadc9789add4bd370576b7a9fc19e07cb /Source | |
parent | fa2c56d4565a6278b188696e8572f9b0752ec455 (diff) | |
download | sequelpro-2c7eff725904c253efdb3412e9b6c27ab88decdb.tar.gz sequelpro-2c7eff725904c253efdb3412e9b6c27ab88decdb.tar.bz2 sequelpro-2c7eff725904c253efdb3412e9b6c27ab88decdb.zip |
Menu item label.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CustomQuery.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index c75172e0..7651640d 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -2927,7 +2927,7 @@ // Control Clear History menu item title according to isUntitled if ( [menuItem tag] == SP_HISTORY_CLEAR_MENUITEM_TAG ) { if ( [tableDocumentInstance isUntitled] ) { - [menuItem setTitle:NSLocalizedString(@"Clear global History", @"clear global history menu item title")]; + [menuItem setTitle:NSLocalizedString(@"Clear Global History", @"clear global history menu item title")]; [menuItem setToolTip:NSLocalizedString(@"Clear the global history list", @"clear the global history list tooltip message")]; } else { [menuItem setTitle:[NSString stringWithFormat:NSLocalizedString(@"Clear History for “%@”", @"clear history for “%@” menu title"), [tableDocumentInstance displayName]]]; |