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/SPTableRelations.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/SPTableRelations.m')
-rw-r--r-- | Source/SPTableRelations.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTableRelations.m b/Source/SPTableRelations.m index cca7f213..ce8b7829 100644 --- a/Source/SPTableRelations.m +++ b/Source/SPTableRelations.m @@ -166,7 +166,7 @@ - (IBAction)addRelation:(id)sender { // Set up the controls - [addRelationTableBox setTitle:[NSString stringWithFormat:@"Table: %@", [tablesListInstance tableName]]]; + [addRelationTableBox setTitle:[NSString stringWithFormat:NSLocalizedString(@"Table: %@", @"Add Relation sheet title, showing table name"), [tablesListInstance tableName]]]; [columnPopUpButton removeAllItems]; [columnPopUpButton addItemsWithTitles:[tableDataInstance columnNames]]; @@ -244,7 +244,7 @@ if (([tablesListInstance tableType] == SPTableTypeTable) && ([[engine lowercaseString] isEqualToString:@"innodb"])) { // Update the text label - [labelTextField setStringValue:[NSString stringWithFormat:@"Relations for table: %@", [tablesListInstance tableName]]]; + [labelTextField setStringValue:[NSString stringWithFormat:NSLocalizedString(@"Relations for table: %@", @"Relations tab subtitle showing table name"), [tablesListInstance tableName]]]; [addRelationButton setEnabled:enableInteraction]; [refreshRelationsButton setEnabled:enableInteraction]; |