aboutsummaryrefslogtreecommitdiff
path: root/AppKit/GTMHotKeyTextField.m
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-06-04 16:30:39 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-06-04 16:30:39 +0000
commit9920aadccc0c3a8f0c87199eafe942df35477fc1 (patch)
tree2ebbc95174ab1f8c5d7ac1f479051839efff32d6 /AppKit/GTMHotKeyTextField.m
parentf73258a5111224da89ee20c7c89f2bf41d44b431 (diff)
[Author: dmaclach]
Add localizations for GTMHotKeyTextField. DELTA=906 (904 added, 0 deleted, 2 changed) R=thomasvl
Diffstat (limited to 'AppKit/GTMHotKeyTextField.m')
-rw-r--r--AppKit/GTMHotKeyTextField.m6
1 files changed, 4 insertions, 2 deletions
diff --git a/AppKit/GTMHotKeyTextField.m b/AppKit/GTMHotKeyTextField.m
index fb479fd..5a95490 100644
--- a/AppKit/GTMHotKeyTextField.m
+++ b/AppKit/GTMHotKeyTextField.m
@@ -532,8 +532,10 @@ static CFStringRef kGTM_TISPropertyUnicodeKeyLayoutData = NULL;
// If they asked for strings, and we have one return it. Otherwise, return
// any key we've picked.
if (!useGlyph && localizedKey) {
- return NSLocalizedStringFromTableInBundle(localizedKey, @"KeyCode",
- bundle, @"");
+ return NSLocalizedStringFromTableInBundle(localizedKey,
+ @"GTMHotKeyTextField",
+ bundle,
+ @"");
} else if (key != 0) {
return [NSString stringWithFormat:@"%C", key];
}