diff options
author | stuconnolly <stuart02@gmail.com> | 2010-06-30 01:04:45 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-06-30 01:04:45 +0000 |
commit | 39cca06cbde12cb5c9c014ac86015ae541b8dfbb (patch) | |
tree | 7652a56bcb7301f8c5c013b21ce720cc13576bd6 /Source | |
parent | 5ef45531e07dc3a4cca74bed2d1572d71c9dc713 (diff) | |
download | sequelpro-39cca06cbde12cb5c9c014ac86015ae541b8dfbb.tar.gz sequelpro-39cca06cbde12cb5c9c014ac86015ae541b8dfbb.tar.bz2 sequelpro-39cca06cbde12cb5c9c014ac86015ae541b8dfbb.zip |
Add tooltips to the export dialog's tableview.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPExportController.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/SPExportController.m b/Source/SPExportController.m index 6dd289cd..a16486b1 100644 --- a/Source/SPExportController.m +++ b/Source/SPExportController.m @@ -340,6 +340,9 @@ [[[exportTableList tableColumnWithIdentifier:@"content"] headerCell] setStringValue:(enable) ? @"" : @"C"]; + // Set the tooltip + [[exportTableList tableColumnWithIdentifier:@"content"] setHeaderToolTip:(enable) ? @"" : NSLocalizedString(@"Include content", @"include content table column tooltip")]; + [exportCSVNULLValuesAsTextField setStringValue:[prefs stringForKey:SPNullValue]]; [exportXMLNULLValuesAsTextField setStringValue:[prefs stringForKey:SPNullValue]]; @@ -378,7 +381,7 @@ { [self setExportCancelled:YES]; - [exportProgressTitle setStringValue:NSLocalizedString(@"Cancelling...", @"cancelling export message")]; + [exportProgressTitle setStringValue:NSLocalizedString(@"Cancelling...", @"cancelling task status message")]; [exportProgressText setStringValue:NSLocalizedString(@"Cleaning up...", @"cancelling export cleaning up message")]; // Disable the cancel button |