diff options
author | stuconnolly <stuart02@gmail.com> | 2011-04-03 09:34:29 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-04-03 09:34:29 +0000 |
commit | 3ed8b33deeadcc98185911f41bc6bcb4e53b4719 (patch) | |
tree | b0e20fd5a534a0e24fe00206163fdca5245882fd /Source/SPQueryController.m | |
parent | c7a4e604462e11bf26dc7b58645fa6429848e6fc (diff) | |
download | sequelpro-3ed8b33deeadcc98185911f41bc6bcb4e53b4719.tar.gz sequelpro-3ed8b33deeadcc98185911f41bc6bcb4e53b4719.tar.bz2 sequelpro-3ed8b33deeadcc98185911f41bc6bcb4e53b4719.zip |
Bring outline view branch up to date with trunk (r3246:r3264).
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]]) { |