aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoravenjamin <avenjamin@gmail.com>2008-08-30 17:21:10 +0000
committeravenjamin <avenjamin@gmail.com>2008-08-30 17:21:10 +0000
commit9c347ca9ef64c8230fac1927a897a08440c269e0 (patch)
treebe18ad4e94e457447838a154eb3342f1e3c85f8e
parent50404d84388ed339dc929ac1cbb27aae3a29cb51 (diff)
downloadsequelpro-9c347ca9ef64c8230fac1927a897a08440c269e0.tar.gz
sequelpro-9c347ca9ef64c8230fac1927a897a08440c269e0.tar.bz2
sequelpro-9c347ca9ef64c8230fac1927a897a08440c269e0.zip
• Added localisation for TABLES and TABLE INFORMATION
• Issue 35 - marked fixed
-rw-r--r--English.lproj/Localizable.stringsbin32914 -> 33230 bytes
-rw-r--r--SPTableInfo.m2
-rw-r--r--TablesList.m2
3 files changed, 2 insertions, 2 deletions
diff --git a/English.lproj/Localizable.strings b/English.lproj/Localizable.strings
index 1646888a..5b76de27 100644
--- a/English.lproj/Localizable.strings
+++ b/English.lproj/Localizable.strings
Binary files differ
diff --git a/SPTableInfo.m b/SPTableInfo.m
index c1050937..0885e96f 100644
--- a/SPTableInfo.m
+++ b/SPTableInfo.m
@@ -28,7 +28,7 @@
// selector:@selector(tableChanged:)
// name:NSTableViewSelectionDidChangeNotification
// object:nil];
- [info addObject:@"TABLE INFORMATION"];
+ [info addObject:NSLocalizedString(@"TABLE INFORMATION",@"header for table info pane")];
[infoTable reloadData];
}
diff --git a/TablesList.m b/TablesList.m
index 06616069..19b9362f 100644
--- a/TablesList.m
+++ b/TablesList.m
@@ -677,7 +677,7 @@ loads structure or source if tab selected the first time
tables = [[NSMutableArray alloc] init];
structureLoaded = NO;
contentLoaded = NO;
- [tables addObject:@"TABLES"];
+ [tables addObject:NSLocalizedString(@"TABLES",@"header for table list")];
return self;
}