aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Shpakovski2013-02-06 11:44:03 -0800
committerVadim Shpakovski2013-02-06 11:44:03 -0800
commit20d323b59c68fcfdc398d670b3a4cc2f9b367da8 (patch)
tree9f1a5926dd2779bc2bf0ab4036719016a1b041b1
parent42be5135fbfacb48940dfe595ffe83fa3861078c (diff)
parentdfdcd5655ebbb1ffdf1fb25060fd2e89eb4b4cc2 (diff)
downloadMASShortcut-20d323b59c68fcfdc398d670b3a4cc2f9b367da8.tar.bz2
Merge pull request #16 from OldFriend/master
Fixed mistypes (double 'used' x2)
-rw-r--r--MASShortcut.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/MASShortcut.m b/MASShortcut.m
index b53a1a6..f03be0e 100644
--- a/MASShortcut.m
+++ b/MASShortcut.m
@@ -300,7 +300,7 @@ BOOL MASShortcutAllowsAnyHotkeyWithOptionModifier = NO;
if (equalFlags && equalHotkeyLowercase) {
if (outError) {
- NSString *format = NSLocalizedString(@"This shortcut cannot be used used because it is already used by the menu item ‘%@’.",
+ NSString *format = NSLocalizedString(@"This shortcut cannot be used because it is already used by the menu item ‘%@’.",
@"Message for alert when shortcut is already used");
NSDictionary *info = [NSDictionary dictionaryWithObject:[NSString stringWithFormat:format, menuItem.title]
forKey:NSLocalizedDescriptionKey];
@@ -327,7 +327,7 @@ BOOL MASShortcutAllowsAnyHotkeyWithOptionModifier = NO;
([(__bridge NSNumber *)flags unsignedIntegerValue] == self.carbonFlags)) {
if (outError) {
- NSString *description = NSLocalizedString(@"This combination cannot be used used because it is already used by a system-wide "
+ NSString *description = NSLocalizedString(@"This combination cannot be used because it is already used by a system-wide "
@"keyboard shortcut.\nIf you really want to use this key combination, most shortcuts "
@"can be changed in the Keyboard & Mouse panel in System Preferences.",
@"Message for alert when shortcut is already used by the system");