diff options
-rw-r--r-- | Interfaces/English.lproj/Localizable.strings | bin | 59184 -> 84242 bytes | |||
-rw-r--r-- | Source/CMTextView.m | 2 | ||||
-rw-r--r-- | Source/SPEditSheetTextView.m | 2 | ||||
-rw-r--r-- | Source/TableDocument.m | 4 | ||||
-rw-r--r-- | Source/TableDump.m | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/Interfaces/English.lproj/Localizable.strings b/Interfaces/English.lproj/Localizable.strings Binary files differindex b8261963..79e0428a 100644 --- a/Interfaces/English.lproj/Localizable.strings +++ b/Interfaces/English.lproj/Localizable.strings 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, |