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/SPCustomQuery.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/SPCustomQuery.m')
-rw-r--r-- | Source/SPCustomQuery.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m index ec5f8347..6703ea5d 100644 --- a/Source/SPCustomQuery.m +++ b/Source/SPCustomQuery.m @@ -1665,7 +1665,7 @@ NSString *tableForColumn = [columnDefinition objectForKey:@"org_table"]; if(!tableForColumn || ![tableForColumn length]) { - [errorText setStringValue:[NSString stringWithFormat:@"Couldn't identify field origin unambiguously. The column '%@' contains data from more than one table.", [columnDefinition objectForKey:@"name"]]]; + [errorText setStringValue:[NSString stringWithFormat:NSLocalizedString(@"Couldn't identify field origin unambiguously. The column '%@' contains data from more than one table.", @"Custom Query result editing error - could not identify a corresponding column"), [columnDefinition objectForKey:@"name"]]]; NSBeep(); return; } @@ -2046,9 +2046,9 @@ if(!isFieldEditable) if(numberOfPossibleUpdateRows == 0) - [errorText setStringValue:[NSString stringWithFormat:@"Field is not editable. No matching record found. Try to add the primary key field or more fields in your SELECT statement for table '%@' to identify field origin unambiguously.", tableForColumn]]; + [errorText setStringValue:[NSString stringWithFormat:NSLocalizedString(@"Field is not editable. No matching record found. Try to add the primary key field or more fields in your SELECT statement for table '%@' to identify field origin unambiguously.", @"Custom Query result editing error - could not identify original row"), tableForColumn]]; else - [errorText setStringValue:[NSString stringWithFormat:@"Field is not editable. Couldn't identify field origin unambiguously (%ld match%@).", (long)numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?@"es":@""]]; + [errorText setStringValue:[NSString stringWithFormat:NSLocalizedString(@"Field is not editable. Couldn't identify field origin unambiguously (%ld match%@).", @"Custom Query result editing error - could not match row being edited uniquely"), (long)numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?NSLocalizedString(@"es", @"Plural suffix for row count, eg 4 match*es*"):@""]]; } else { // no table/databse name are given |