Localization support. Change many names in NJKeyInputField to standard keyboard short...
[enjoyable.git] / Categories / NSRunningApplication+NJPossibleNames.m
index a3fdaf5..895134c 100644 (file)
         return self.localizedName;
     else if (self.bundleIdentifier)
         return self.bundleIdentifier;
-    else
-        return @"@Application";
+    else {
+        return NSLocalizedString(@"@Application",
+                                 @"Magic string to trigger automatic "
+                                 @"mapping renames. It should look like "
+                                 @"an identifier rather than normal "
+                                 @"word, with the @ on the front.");
+    }
 }
 
 @end