diff options
author | sqlprodev <sqlprodev@northofthree.com> | 2011-04-14 22:38:11 +0000 |
---|---|---|
committer | sqlprodev <sqlprodev@northofthree.com> | 2011-04-14 22:38:11 +0000 |
commit | 555cb252a3e42d0df5835a18df4abbe1a0b0725a (patch) | |
tree | 05d6df3aeceb5105df5ca418c3cfc7c2e9f9a46b /Source/SPCustomQuery.m | |
parent | 17a3ea75f52422d1dd1dc0c0deea681d6994750a (diff) | |
download | sequelpro-555cb252a3e42d0df5835a18df4abbe1a0b0725a.tar.gz sequelpro-555cb252a3e42d0df5835a18df4abbe1a0b0725a.tar.bz2 sequelpro-555cb252a3e42d0df5835a18df4abbe1a0b0725a.zip |
Fixes source text encoding problems accidentally introduced in r3273
Diffstat (limited to 'Source/SPCustomQuery.m')
-rw-r--r-- | Source/SPCustomQuery.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m index df377e57..a67ec5f3 100644 --- a/Source/SPCustomQuery.m +++ b/Source/SPCustomQuery.m @@ -3186,7 +3186,7 @@ if(![searchString isEqualToString:SP_HELP_TOC_SEARCH_STRING]) [theHelp appendFormat:@"<br><i>%@ “%@”</i><br>", NSLocalizedString(@"Help topics for", @"help topics for"), searchString]; else - [theHelp appendFormat:@"<br><b>%@:</b><br>", NSLocalizedString(@"MySQL Help ‚Äì Categories", @"mysql help categories"), searchString]; + [theHelp appendFormat:@"<br><b>%@:</b><br>", NSLocalizedString(@"MySQL Help – Categories", @"mysql help categories"), searchString]; // iterate through all found rows and print them as HTML ul/li list [theHelp appendString:@"<ul>"]; |