I would like to localize my constants. Constants are defined and declared the usual way:
extern NSString * const kStringName; NSString * const kStringName = @\"
Not exactly constant, but also useful
//in the beginning of source file static NSString* CommentsTitleString; @implementation ClassName +(void)initialize { CommentsTitleString = NSLocalizedString(@"PLAYER_comments", nil); } @end