diff options
author | stuconnolly <stuart02@gmail.com> | 2010-10-19 15:07:28 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-10-19 15:07:28 +0000 |
commit | 07c60cd26a34d2aac9d31eac3dae390647ab9fd1 (patch) | |
tree | 91df1d0920bd5a29704428de3782cea036497a5b /Source/SPContentFilterManager.m | |
parent | 58d3c046c37ef4f9d880727f124e9c338212925e (diff) | |
download | sequelpro-07c60cd26a34d2aac9d31eac3dae390647ab9fd1.tar.gz sequelpro-07c60cd26a34d2aac9d31eac3dae390647ab9fd1.tar.bz2 sequelpro-07c60cd26a34d2aac9d31eac3dae390647ab9fd1.zip |
Remove use of multiple comments for localized strings.
Diffstat (limited to 'Source/SPContentFilterManager.m')
-rw-r--r-- | Source/SPContentFilterManager.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/SPContentFilterManager.m b/Source/SPContentFilterManager.m index 8d1c0713..26114a2e 100644 --- a/Source/SPContentFilterManager.m +++ b/Source/SPContentFilterManager.m @@ -31,10 +31,10 @@ #import "SPConstants.h" #import "SPConnectionController.h" -#define SP_MULTIPLE_SELECTION_PLACEHOLDER_STRING NSLocalizedString(@"[multiple selection]", @"displayed when multiple content filters are selected in ContentFilterManager") -#define SP_NO_SELECTION_PLACEHOLDER_STRING NSLocalizedString(@"[no selection]", @"displayed if there is no content filter selected in ContentFilterManager") +#define SP_MULTIPLE_SELECTION_PLACEHOLDER_STRING NSLocalizedString(@"[multiple selection]", @"[multiple selection]") +#define SP_NO_SELECTION_PLACEHOLDER_STRING NSLocalizedString(@"[no selection]", @"[no selection]") #define SP_NAME_REQUIRED_PLACEHOLDER_STRING NSLocalizedString(@"[name required]", @"displayed when new content filter has empty Name field (ContentFilterManager)") -#define SP_FILE_PARSER_ERROR_TITLE_STRING NSLocalizedString(@"Error while reading data file", @"File with content filters could not be parsed - message title (ContentFilterManager)") +#define SP_FILE_PARSER_ERROR_TITLE_STRING NSLocalizedString(@"Error while reading data file", @"error while reading data file") @interface SPContentFilterManager (PrivateAPI) @@ -841,7 +841,7 @@ defaultButton:NSLocalizedString(@"OK", @"OK button") alternateButton:nil otherButton:nil - informativeTextWithFormat:NSLocalizedString(@"File couldn't be read.", @"file with content filters could not be parsed - message text (ContentFilterManager)")]; + informativeTextWithFormat:NSLocalizedString(@"File couldn't be read.", @"error while reading data file")]; [alert setAlertStyle:NSCriticalAlertStyle]; [alert runModal]; |