here is a sample line:
playLabel = [CCLabelTTF labelWithString:NSLocalizedString(@"play", nil) fontName:@"font.ttf" fontSize:32];
and my font.ttf file only support English/Chinese/Japanese, and if it is korean, nothing will show up. so i want to use Arial font for Korean (but still my custom font.ttf font for chinese/japanese, for french or spanish it's fine though since i can simply ignore the mark above letters.
so how can i do this? or should i make a method like [Helper getFont] and return different font files for different localization?
and also, when adding the language, i have multiple choices for one language (like 'zh' is chinese, but 'zh-hans' is simplified chinese and 'zh-hant' is traditional chinese, so can i just use zh for both case if i don't want to separate them?