* Source/NSBundle.m (-localizedStringForKey:value:table): Correct

output when NSShowNonLocalizedStrings is YES.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28013 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2009-03-01 17:39:09 +00:00
parent 6d71b03cb4
commit 9027f0777b
2 changed files with 92 additions and 87 deletions

View file

@ -1,3 +1,8 @@
2009-03-01 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSBundle.m (-localizedStringForKey:value:table): Correct
output when NSShowNonLocalizedStrings is YES.
2009-02-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSURLProtocol.m:

View file

@ -2059,7 +2059,7 @@ IF_NO_GC(
if (show && [show isEqual: @"YES"])
{
/* It would be bad to localize this string! */
NSLog(@"Non-localized string: %@\n", newString);
NSLog(@"Non-localized string: %@\n", key);
newString = [key uppercaseString];
}
else