Re: Localization problems
Re: Localization problems
- Subject: Re: Localization problems
- From: Finlay Dobbie <email@hidden>
- Date: Wed, 15 Aug 2001 18:57:56 +0100
Try using a different language. I'm pretty sure I ran into something
very odd like this before... It looks like it just ignores localizable
strings in English.lproj, and just uses the key name, or something odd
like that.
-- Finlay
On Wednesday, August 15, 2001, at 10:27 am, Rosyna wrote:
I have a file called Localizable.strings in the English.lproj folder in
the resources folder (Along with all the nibs).
I was testing localization by changing a line to
/* Folder Localization */
"Folder" = "Pile";
But it still says Folder in the App. This is how I get the string:
[outlet setStringValue:NSLocalizedString(@"Folder",@"Folder
Localization")];
How can I get it to say "Pile" ?