aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-08-28 21:01:51 +0000
committerstuconnolly <stuart02@gmail.com>2009-08-28 21:01:51 +0000
commit7866f392fed3e2b57998701dbdae5275e7c80d80 (patch)
tree0177ee63a51df5688d7a62e23bdff7004132c2cd /Source
parentde80153c8903211c7112d2fd86eb4b9f38d0ea73 (diff)
downloadsequelpro-7866f392fed3e2b57998701dbdae5275e7c80d80.tar.gz
sequelpro-7866f392fed3e2b57998701dbdae5275e7c80d80.tar.bz2
sequelpro-7866f392fed3e2b57998701dbdae5275e7c80d80.zip
Update Localizable.strings by running genstrings and remove use of multiple comments for a single string.
Diffstat (limited to 'Source')
-rw-r--r--Source/CMTextView.m2
-rw-r--r--Source/SPEditSheetTextView.m2
-rw-r--r--Source/TableDocument.m4
-rw-r--r--Source/TableDump.m6
4 files changed, 7 insertions, 7 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m
index 1ccff666..287bd227 100644
--- a/Source/CMTextView.m
+++ b/Source/CMTextView.m
@@ -2446,7 +2446,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
[alert setInformativeText:[NSString stringWithFormat:NSLocalizedString(@"Do you really want to proceed with %.1f MB of data?", @"message of panel asking for confirmation for inserting large text from dragging action"),
[filesize unsignedLongValue]/1048576.0]];
[alert setHelpAnchor:filepath];
- [alert setMessageText:NSLocalizedString(@"Warning",@"Warning")];
+ [alert setMessageText:NSLocalizedString(@"Warning",@"warning")];
[alert setAlertStyle:NSWarningAlertStyle];
[alert beginSheetModalForWindow:[self window]
modalDelegate:self
diff --git a/Source/SPEditSheetTextView.m b/Source/SPEditSheetTextView.m
index de2d2052..52e7eca6 100644
--- a/Source/SPEditSheetTextView.m
+++ b/Source/SPEditSheetTextView.m
@@ -176,7 +176,7 @@
[alert setInformativeText:[NSString stringWithFormat:NSLocalizedString(@"Do you really want to proceed with %.1f MB of data?", @"message of panel asking for confirmation for inserting large text from dragging action"),
[filesize unsignedLongValue]/1048576.0]];
[alert setHelpAnchor:filepath];
- [alert setMessageText:NSLocalizedString(@"Warning",@"Warning")];
+ [alert setMessageText:NSLocalizedString(@"Warning", @"warning")];
[alert setAlertStyle:NSWarningAlertStyle];
[alert beginSheetModalForWindow:[self window]
modalDelegate:self
diff --git a/Source/TableDocument.m b/Source/TableDocument.m
index 9549d3f0..ece7d376 100644
--- a/Source/TableDocument.m
+++ b/Source/TableDocument.m
@@ -1026,7 +1026,7 @@
NSMenuItem *menuItem = [[[[NSApp mainMenu] itemWithTitle:@"View"] submenu] itemAtIndex:5];
// Only update the menu item title if its the menu item and not the toolbar
- [menuItem setTitle:(!isConsoleVisible) ? NSLocalizedString(@"Hide Console", @"Hide Console") : NSLocalizedString(@"Show Console", @"Show Console")];
+ [menuItem setTitle:(!isConsoleVisible) ? NSLocalizedString(@"Hide Console", @"Hide Console") : NSLocalizedString(@"Show Console", @"show console")];
}
/**
@@ -2524,7 +2524,7 @@
[toolbarItem setView:historyControl];
} else if ([itemIdentifier isEqualToString:@"ShowConsoleIdentifier"]) {
- [toolbarItem setPaletteLabel:NSLocalizedString(@"Show Console", @"toolbar item for show console")];
+ [toolbarItem setPaletteLabel:NSLocalizedString(@"Show Console", @"show console")];
[toolbarItem setToolTip:NSLocalizedString(@"Show the console which shows all MySQL commands performed by Sequel Pro", @"tooltip for toolbar item for show console")];
[toolbarItem setLabel:NSLocalizedString(@"Console", @"Console")];
diff --git a/Source/TableDump.m b/Source/TableDump.m
index e07e4c86..dbd28bcd 100644
--- a/Source/TableDump.m
+++ b/Source/TableDump.m
@@ -433,7 +433,7 @@
}
if (errorStr) {
- NSBeginAlertSheet(NSLocalizedString(@"Error", @"Error"),
+ NSBeginAlertSheet(NSLocalizedString(@"Error", @"error"),
NSLocalizedString(@"OK", @"OK button"),
nil, nil,
tableWindow, self,
@@ -577,7 +577,7 @@
[singleProgressBar setIndeterminate:NO];
if(importArrayCount == 0){
- NSBeginAlertSheet(NSLocalizedString(@"Error", @"Error"),
+ NSBeginAlertSheet(NSLocalizedString(@"Error", @"error"),
NSLocalizedString(@"OK", @"OK button"),
nil, nil,
tableWindow, self,
@@ -619,7 +619,7 @@
// Sanity check the first row of the CSV to prevent hang loops caused by wrong line ending entry
if ([[importArray objectAtIndex:currentRow] count] > 512) {
- NSBeginAlertSheet(NSLocalizedString(@"Error", @"Error"),
+ NSBeginAlertSheet(NSLocalizedString(@"Error", @"error"),
NSLocalizedString(@"OK", @"OK button"),
nil, nil,
tableWindow, self,