aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPNavigatorController.m
diff options
context:
space:
mode:
authordmoagx <post@wickenrode.com>2010-09-26 23:55:32 +0000
committerdmoagx <post@wickenrode.com>2010-09-26 23:55:32 +0000
commit37fadd868cd6bc80cafac2645d33a69e38d6741b (patch)
treead8eeffe8c9b5ce6fc421dd95524285c7265dd0e /Source/SPNavigatorController.m
parent2281746fdc1f1a2ff93fc28fc0182614445d5938 (diff)
downloadsequelpro-37fadd868cd6bc80cafac2645d33a69e38d6741b.tar.gz
sequelpro-37fadd868cd6bc80cafac2645d33a69e38d6741b.tar.bz2
sequelpro-37fadd868cd6bc80cafac2645d33a69e38d6741b.zip
* One label was too short in Content Filter Manager
* Changed some NSLocalizedString() comments to be more descriptive - keep in mind that the comment is the only thing that can provide context here.
Diffstat (limited to 'Source/SPNavigatorController.m')
-rw-r--r--Source/SPNavigatorController.m24
1 files changed, 12 insertions, 12 deletions
diff --git a/Source/SPNavigatorController.m b/Source/SPNavigatorController.m
index 76d77e7e..ec42b092 100644
--- a/Source/SPNavigatorController.m
+++ b/Source/SPNavigatorController.m
@@ -1196,23 +1196,23 @@ static NSComparisonResult compareStrings(NSString *s1, NSString *s2, void* conte
if(type == 0 || type == 1) // TABLE / VIEW
switch(index) {
case 0:
- return NSLocalizedString(@"Type", @"type label");
+ return NSLocalizedString(@"Type", @"type label (Navigator)");
case 1:
- return NSLocalizedString(@"Default", @"default label");
+ return NSLocalizedString(@"Default", @"default label (Navigator)");
case 2:
- return NSLocalizedString(@"Is Nullable", @"is nullable label");
+ return NSLocalizedString(@"Is Nullable", @"is nullable label (Navigator)");
case 3:
- return NSLocalizedString(@"Encoding", @"encoding label");
+ return NSLocalizedString(@"Encoding", @"encoding label (Navigator)");
case 4:
- return NSLocalizedString(@"Collation", @"collation label");
+ return NSLocalizedString(@"Collation", @"collation label (Navigator)");
case 5:
- return NSLocalizedString(@"Key", @"key label");
+ return NSLocalizedString(@"Key", @"key label (Navigator)");
case 6:
- return NSLocalizedString(@"Extra", @"extra label");
+ return NSLocalizedString(@"Extra", @"extra label (Navigator)");
case 7:
- return NSLocalizedString(@"Privileges", @"privileges label");
+ return NSLocalizedString(@"Privileges", @"privileges label (Navigator)");
case 8:
- return NSLocalizedString(@"Comment", @"comment label");
+ return NSLocalizedString(@"Comment", @"comment label (Navigator)");
}
if(type == 2) // PROCEDURE
@@ -1224,20 +1224,20 @@ static NSComparisonResult compareStrings(NSString *s1, NSString *s2, void* conte
case 2:
return @"Is Deterministic";
case 3:
- return NSLocalizedString(@"Execution Privilege", @"execution privilege label");
+ return NSLocalizedString(@"Execution Privilege", @"execution privilege label (Navigator)");
case 4:
return @"Definer";
}
if(type == 3) // FUNCTION
switch(index) {
case 0:
- return NSLocalizedString(@"Return Type", @"return type label");
+ return NSLocalizedString(@"Return Type", @"return type label (Navigator)");
case 1:
return @"SQL Data Access";
case 2:
return @"Is Deterministic";
case 3:
- return NSLocalizedString(@"Execution Privilege", @"execution privilege label");
+ return NSLocalizedString(@"Execution Privilege", @"execution privilege label (Navigator)");
case 4:
return @"Definer";
}