diff options
| author | Vadim Shpakovski | 2013-02-06 11:44:03 -0800 |
|---|---|---|
| committer | Vadim Shpakovski | 2013-02-06 11:44:03 -0800 |
| commit | 20d323b59c68fcfdc398d670b3a4cc2f9b367da8 (patch) | |
| tree | 9f1a5926dd2779bc2bf0ab4036719016a1b041b1 | |
| parent | 42be5135fbfacb48940dfe595ffe83fa3861078c (diff) | |
| parent | dfdcd5655ebbb1ffdf1fb25060fd2e89eb4b4cc2 (diff) | |
| download | MASShortcut-20d323b59c68fcfdc398d670b3a4cc2f9b367da8.tar.bz2 | |
Merge pull request #16 from OldFriend/master
Fixed mistypes (double 'used' x2)
| -rw-r--r-- | MASShortcut.m | 4 |
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"); |
