aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPPreferenceController.m
diff options
context:
space:
mode:
authorjakob <jakob@eggerapps.at>2010-04-22 13:49:44 +0000
committerjakob <jakob@eggerapps.at>2010-04-22 13:49:44 +0000
commit75b2c3cd2523501e0f03ef3cabbfa7ba2f150184 (patch)
tree5a3ef877f04eb3db0a6eb8a7536b6836a85bf62b /Source/SPPreferenceController.m
parent644ca35f080acd199a69d78dc93526caf5377b3f (diff)
downloadsequelpro-75b2c3cd2523501e0f03ef3cabbfa7ba2f150184.tar.gz
sequelpro-75b2c3cd2523501e0f03ef3cabbfa7ba2f150184.tar.bz2
sequelpro-75b2c3cd2523501e0f03ef3cabbfa7ba2f150184.zip
changed many occurrences of "REMOVE" to "DELETE", eg. "DELETE DATABASE"
Diffstat (limited to 'Source/SPPreferenceController.m')
-rw-r--r--Source/SPPreferenceController.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPPreferenceController.m b/Source/SPPreferenceController.m
index dc6433df..e27c9b05 100644
--- a/Source/SPPreferenceController.m
+++ b/Source/SPPreferenceController.m
@@ -346,11 +346,11 @@
- (IBAction)removeFavorite:(id)sender
{
if ([favoritesTableView numberOfSelectedRows] == 1) {
- NSAlert *alert = [NSAlert alertWithMessageText:[NSString stringWithFormat:NSLocalizedString(@"Remove favorite '%@'?", @"remove database message"), [favoritesController valueForKeyPath:@"selection.name"]]
- defaultButton:NSLocalizedString(@"Remove", @"remove button")
+ NSAlert *alert = [NSAlert alertWithMessageText:[NSString stringWithFormat:NSLocalizedString(@"Delete favorite '%@'?", @"delete database message"), [favoritesController valueForKeyPath:@"selection.name"]]
+ defaultButton:NSLocalizedString(@"Delete", @"delete button")
alternateButton:NSLocalizedString(@"Cancel", @"cancel button")
otherButton:nil
- informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"Are you sure you want to remove the favorite '%@'? This operation cannot be undone.", @"remove database informative message"), [favoritesController valueForKeyPath:@"selection.name"]]];
+ informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"Are you sure you want to delete the favorite '%@'? This operation cannot be undone.", @"delete database informative message"), [favoritesController valueForKeyPath:@"selection.name"]]];
NSArray *buttons = [alert buttons];