aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableRelations.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-08-01 14:08:53 +0000
committerrowanbeentje <rowan@beent.je>2010-08-01 14:08:53 +0000
commitc2f2a6d1d126e8cb658b745bf5a534ca7307476d (patch)
treef0332cec0247614bcdd9166f61b856926ff69661 /Source/SPTableRelations.m
parenta5abfee83c7ffb81c68bbdcec9f24b53d2dd0a09 (diff)
parent6406428538c8daae5c00a8b4080b5c6a03d45be6 (diff)
downloadsequelpro-c2f2a6d1d126e8cb658b745bf5a534ca7307476d.tar.gz
sequelpro-c2f2a6d1d126e8cb658b745bf5a534ca7307476d.tar.bz2
sequelpro-c2f2a6d1d126e8cb658b745bf5a534ca7307476d.zip
- Branch (correct) 0.9.8 release for patching
Diffstat (limited to 'Source/SPTableRelations.m')
-rw-r--r--Source/SPTableRelations.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPTableRelations.m b/Source/SPTableRelations.m
index 7baa8702..01fec02e 100644
--- a/Source/SPTableRelations.m
+++ b/Source/SPTableRelations.m
@@ -403,10 +403,10 @@
if ([connection queryErrored]) {
- SPBeginAlertSheet(NSLocalizedString(@"Unable to delete relation", @"error deleting relation message"),
+ SPBeginAlertSheet(NSLocalizedString(@"Unable to remove relation", @"error removing relation message"),
NSLocalizedString(@"OK", @"OK button"),
nil, nil, [NSApp mainWindow], nil, nil, nil, nil,
- [NSString stringWithFormat:NSLocalizedString(@"The selected relation couldn't be deleted.\n\nMySQL said: %@", @"error deleting relation informative message"), [connection getLastErrorMessage]]);
+ [NSString stringWithFormat:NSLocalizedString(@"The selected relation couldn't be removed.\n\nMySQL said: %@", @"error removing relation informative message"), [connection getLastErrorMessage]]);
// Abort loop
break;
@@ -498,7 +498,7 @@
[constraint objectForKey:@"ref_table"], @"fk_table",
[constraint objectForKey:@"ref_columns"], @"fk_columns",
([constraint objectForKey:@"update"] ? [constraint objectForKey:@"update"] : @""), @"on_update",
- ([constraint objectForKey:@"delete"] ? [constraint objectForKey:@"delete"] : @""), @"on_delete",
+ ([constraint objectForKey:@"delete"] ? [constraint objectForKey:@"delete"] : @""), @"on_delete",
nil]];
}