aboutsummaryrefslogtreecommitdiffstats
path: root/Demo/AppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/AppDelegate.m')
-rw-r--r--Demo/AppDelegate.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/AppDelegate.m b/Demo/AppDelegate.m
index 24d2c81..6a5dd03 100644
--- a/Demo/AppDelegate.m
+++ b/Demo/AppDelegate.m
@@ -46,7 +46,7 @@ static void *MASObservingContext = &MASObservingContext;
- (void)playShortcutFeedback
{
[[NSSound soundNamed:@"Ping"] play];
- [_feedbackTextField setStringValue:@"Shortcut pressed!"];
+ [_feedbackTextField setStringValue:NSLocalizedString(@"Shortcut pressed!", @"Feedback that’s displayed when user presses the sample shortcut.")];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[_feedbackTextField setStringValue:@""];
});