I've successfully added a French localisation to my app. In XCode 4, it was just a case of selecting Localizable.strings and adding a new (French) localisation in the File Inspector. I then copy/pasted the French translation (from Word - unicode 16) into the new Localizable.strings (French) file that was generated.
I changed the language of the phone (both device and simulator) to French and removed the currently installed app, cleaned, and built.
Hey presto - everything's in French. Except that there are a few lines here and there that have remained in English. There seems to be no common element to these lines - either accents, formats or arguments.For example:
title = [NSString stringWithFormat:NSLocalizedString(@"You've just met %@", @"New friend message title"), self.friend.name];
/* New friend message title */
"You've just met %@" = "Vous venez de rencontrer %@";
Still appears as 'You've just met ...' rather than in French. I can't seem to figure out why these few lines aren't translating when everything else is. Any help much appreciated!
Thanks, Michael.