diff options
author | dmoagx <post@wickenrode.com> | 2012-09-09 13:40:35 +0000 |
---|---|---|
committer | dmoagx <post@wickenrode.com> | 2012-09-09 13:40:35 +0000 |
commit | cce4c113499797fd7632fc668c1a3d782bb58f2a (patch) | |
tree | c220dd05d4f4d1832a67a3ec89205aeda64822af | |
parent | 76dbc35164cf8ffa9c0f54be94e09a2fbc5f49a1 (diff) | |
download | sequelpro-cce4c113499797fd7632fc668c1a3d782bb58f2a.tar.gz sequelpro-cce4c113499797fd7632fc668c1a3d782bb58f2a.tar.bz2 sequelpro-cce4c113499797fd7632fc668c1a3d782bb58f2a.zip |
* Make two strings localizable in Bundle Editor
-rw-r--r-- | Resources/English.lproj/Localizable.strings | bin | 232934 -> 233322 bytes | |||
-rw-r--r-- | Source/SPBundleEditorController.m | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Resources/English.lproj/Localizable.strings b/Resources/English.lproj/Localizable.strings Binary files differindex fdc10ee5..8fd66cfd 100644 --- a/Resources/English.lproj/Localizable.strings +++ b/Resources/English.lproj/Localizable.strings diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m index a23c3183..0b2b42a5 100644 --- a/Source/SPBundleEditorController.m +++ b/Source/SPBundleEditorController.m @@ -714,7 +714,7 @@ } if(category == nil) category = @""; - bundle = [NSMutableDictionary dictionaryWithObjects:[NSArray arrayWithObjects:@"New Bundle", @"New Name", @"", scope, category, newUUID, nil] + bundle = [NSMutableDictionary dictionaryWithObjects:[NSArray arrayWithObjects:NSLocalizedString(@"New Bundle",@"Bundle Editor : Default name for new bundle in the list on the left"), NSLocalizedString(@"New Name",@"Bundle Editor : Default name for a new bundle in the menu"), @"", scope, category, newUUID, nil] forKeys:[NSArray arrayWithObjects:kBundleNameKey, SPBundleFileNameKey, SPBundleFileCommandKey, SPBundleFileScopeKey, SPBundleFileCategoryKey, SPBundleFileUUIDKey, nil]]; } |