i just started learning localization, so i'm fairly new... one thing i can't figure out is how to localize the name of the app.
i can localize strings by doing something like this:
and then of course i have a Localizable.Strings file with language-specific "subfiles"(?) in the app's resources... so is there someway to do the same with the name of the app?
and while i'm on the subject, what is the point of IB allowing users to change the app's title in the menu bar object if it's not going to stick? it's kinda frustrating... wouldn't it be easier if apple made localizing the app's name just as easy in the .nib as changing all the other menu items?
i can localize strings by doing something like this:
Code:
static NSString * CONSTwelcome;
-(void)awakeFromNib
{
CONSTwelcome = NSLocalizedString (@"Welcome!", nil);
//bla bla bla
}
and then of course i have a Localizable.Strings file with language-specific "subfiles"(?) in the app's resources... so is there someway to do the same with the name of the app?
and while i'm on the subject, what is the point of IB allowing users to change the app's title in the menu bar object if it's not going to stick? it's kinda frustrating... wouldn't it be easier if apple made localizing the app's name just as easy in the .nib as changing all the other menu items?