diff options
author | rowanbeentje <rowan@beent.je> | 2010-08-01 20:11:43 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-08-01 20:11:43 +0000 |
commit | 9f1097088cd2748c8f7e78c2afd0d7c461d814ae (patch) | |
tree | eb6b72b8f17d34ed7307d8aa99675451ead72d42 /Source/SPTableData.m | |
parent | 309e1058669d1d6b1bd6e665c2bb6b20591419c5 (diff) | |
download | sequelpro-9f1097088cd2748c8f7e78c2afd0d7c461d814ae.tar.gz sequelpro-9f1097088cd2748c8f7e78c2afd0d7c461d814ae.tar.bz2 sequelpro-9f1097088cd2748c8f7e78c2afd0d7c461d814ae.zip |
- Make a few more strings localizable
Diffstat (limited to 'Source/SPTableData.m')
-rw-r--r-- | Source/SPTableData.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableData.m b/Source/SPTableData.m index 6e169e09..8ec18cae 100644 --- a/Source/SPTableData.m +++ b/Source/SPTableData.m @@ -853,7 +853,7 @@ // If the "Engine" key is NULL, a problem occurred when retrieving the table information. if ([[status objectForKey:@"Engine"] isNSNull]) { - [status setDictionary:[NSDictionary dictionaryWithObjectsAndKeys:@"Error", @"Engine", [NSString stringWithFormat:@"An error occurred retrieving table information. MySQL said: %@", [status objectForKey:@"Comment"]], @"Comment", [tableListInstance tableName], @"Name", nil]]; + [status setDictionary:[NSDictionary dictionaryWithObjectsAndKeys:@"Error", @"Engine", [NSString stringWithFormat:NSLocalizedString(@"An error occurred retrieving table information. MySQL said: %@", @"MySQL table info retrieval error message"), [status objectForKey:@"Comment"]], @"Comment", [tableListInstance tableName], @"Name", nil]]; return FALSE; } |