aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authordmoagx <post@wickenrode.com>2012-09-09 13:40:35 +0000
committerdmoagx <post@wickenrode.com>2012-09-09 13:40:35 +0000
commitcce4c113499797fd7632fc668c1a3d782bb58f2a (patch)
treec220dd05d4f4d1832a67a3ec89205aeda64822af /Source
parent76dbc35164cf8ffa9c0f54be94e09a2fbc5f49a1 (diff)
downloadsequelpro-cce4c113499797fd7632fc668c1a3d782bb58f2a.tar.gz
sequelpro-cce4c113499797fd7632fc668c1a3d782bb58f2a.tar.bz2
sequelpro-cce4c113499797fd7632fc668c1a3d782bb58f2a.zip
* Make two strings localizable in Bundle Editor
Diffstat (limited to 'Source')
-rw-r--r--Source/SPBundleEditorController.m2
1 files changed, 1 insertions, 1 deletions
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]];
}