diff options
author | dmoagx <post@wickenrode.com> | 2012-05-17 17:44:04 +0000 |
---|---|---|
committer | dmoagx <post@wickenrode.com> | 2012-05-17 17:44:04 +0000 |
commit | 810cc01cfce1eec4d305d35dfd83fe508b099313 (patch) | |
tree | 59c06358f17c681451207a383de68c8984241b73 /Source/SPTableContentDelegate.m | |
parent | d2237c05664461e086664d25fbe717a06e9b5b75 (diff) | |
download | sequelpro-810cc01cfce1eec4d305d35dfd83fe508b099313.tar.gz sequelpro-810cc01cfce1eec4d305d35dfd83fe508b099313.tar.bz2 sequelpro-810cc01cfce1eec4d305d35dfd83fe508b099313.zip |
* Fixes the case of the curious @"es"'s
Diffstat (limited to 'Source/SPTableContentDelegate.m')
-rw-r--r-- | Source/SPTableContentDelegate.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableContentDelegate.m b/Source/SPTableContentDelegate.m index 3fdf1232..92b3b820 100644 --- a/Source/SPTableContentDelegate.m +++ b/Source/SPTableContentDelegate.m @@ -720,7 +720,7 @@ shouldBeginEditing = YES; break; default: - [SPTooltip showWithObject:[NSString stringWithFormat:kCellEditorErrorTooManyMatches, (long)numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?NSLocalizedString(@"es", @"Plural suffix for row count, eg 4 match*es*"):@""] + [SPTooltip showWithObject:[NSString stringWithFormat:kCellEditorErrorTooManyMatches, (long)numberOfPossibleUpdateRows] atLocation:pos ofType:@"text"]; shouldBeginEditing = NO; |