diff options
author | stuconnolly <stuart02@gmail.com> | 2010-10-19 15:34:42 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-10-19 15:34:42 +0000 |
commit | 54a82bd39cb5a4e9368700030fcd71ab5e724362 (patch) | |
tree | 39d2f47b6b6edeba2d0f4e14903fca06b83d7aa2 /Source/SPExportFileUtilities.m | |
parent | 07c60cd26a34d2aac9d31eac3dae390647ab9fd1 (diff) | |
download | sequelpro-54a82bd39cb5a4e9368700030fcd71ab5e724362.tar.gz sequelpro-54a82bd39cb5a4e9368700030fcd71ab5e724362.tar.bz2 sequelpro-54a82bd39cb5a4e9368700030fcd71ab5e724362.zip |
Localize the header included in SQL and XML exports.
Diffstat (limited to 'Source/SPExportFileUtilities.m')
-rw-r--r-- | Source/SPExportFileUtilities.m | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/SPExportFileUtilities.m b/Source/SPExportFileUtilities.m index e256b1be..2688b369 100644 --- a/Source/SPExportFileUtilities.m +++ b/Source/SPExportFileUtilities.m @@ -54,11 +54,11 @@ // Write the file header and the first table name [file writeData:[[NSMutableString stringWithFormat:@"%@: %@ %@: %@ %@: %@%@%@%@ %@%@%@", - NSLocalizedString(@"Host", @"csv export host heading"), + NSLocalizedString(@"Host", @"export header host label"), [tableDocumentInstance host], - NSLocalizedString(@"Database", @"csv export database heading"), + NSLocalizedString(@"Database", @"export header database label"), [tableDocumentInstance database], - NSLocalizedString(@"Generation Time", @"csv export generation time heading"), + NSLocalizedString(@"Generation Time", @"export header generation time label"), [NSDate date], lineEnding, lineEnding, @@ -80,11 +80,11 @@ [header setString:@"<?xml version=\"1.0\"?>\n\n"]; [header appendString:@"<!--\n-\n"]; [header appendString:@"- Sequel Pro XML dump\n"]; - [header appendFormat:@"- Version %@\n-\n", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]]; + [header appendFormat:@"- %@ %@\n-\n", NSLocalizedString(@"Version", @"export header version label"), [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]]; [header appendFormat:@"- %@\n- %@\n-\n", SPLOCALIZEDURL_HOMEPAGE, SPDevURL]; - [header appendFormat:@"- Host: %@ (MySQL %@)\n", [tableDocumentInstance host], [tableDocumentInstance mySQLVersion]]; - [header appendFormat:@"- Database: %@\n", [tableDocumentInstance database]]; - [header appendFormat:@"- Generation Time: %@\n", [NSDate date]]; + [header appendFormat:@"- %@: %@ (MySQL %@)\n", NSLocalizedString(@"Host", @"export header host label"), [tableDocumentInstance host], [tableDocumentInstance mySQLVersion]]; + [header appendFormat:@"- %@: %@\n", NSLocalizedString(@"Database", @"export header database label"), [tableDocumentInstance database]]; + [header appendFormat:@"- %@ Time: %@\n", NSLocalizedString(@"Generation Time", @"export header generation time label"), [NSDate date]]; [header appendString:@"-\n-->\n\n"]; if (exportSource == SPTableExport) { |