diff options
author | dmoagx <post@wickenrode.com> | 2011-03-20 00:25:03 +0000 |
---|---|---|
committer | dmoagx <post@wickenrode.com> | 2011-03-20 00:25:03 +0000 |
commit | 2c92f47bf1cd1e24cc464a79c5c3da564f4471f8 (patch) | |
tree | 9852b91f8f6381189c6687e3a3e1a6b7fcd8bc72 /Source/SPQueryController.m | |
parent | 2e74c19d188d2b9b17baed375a2250ee0abc53f5 (diff) | |
download | sequelpro-2c92f47bf1cd1e24cc464a79c5c3da564f4471f8.tar.gz sequelpro-2c92f47bf1cd1e24cc464a79c5c3da564f4471f8.tar.bz2 sequelpro-2c92f47bf1cd1e24cc464a79c5c3da564f4471f8.zip |
* Fix two untranslatable strings #1006
Diffstat (limited to 'Source/SPQueryController.m')
-rw-r--r-- | Source/SPQueryController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPQueryController.m b/Source/SPQueryController.m index 721c27e9..346be3d6 100644 --- a/Source/SPQueryController.m +++ b/Source/SPQueryController.m @@ -529,7 +529,7 @@ static SPQueryController *sharedQueryController = nil; { // Register a new untiled document and return its URL if(fileURL == nil) { - NSURL *new = [NSURL URLWithString:[[NSString stringWithFormat:@"Untitled %ld", (unsigned long)untitledDocumentCounter] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; + NSURL *new = [NSURL URLWithString:[[NSString stringWithFormat:NSLocalizedString(@"Untitled %ld",@"Title of a new Sequel Pro Document"), (unsigned long)untitledDocumentCounter] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; untitledDocumentCounter++; if(![favoritesContainer objectForKey:[new absoluteString]]) { |