I have a calendar and can make local month names and short weekday names, for example weekdaynames with:
NSArray *weekdayNames = [[[[NSDateFormatter alloc] init] autorelease] shortWeekdaySymbols];
How can I localize these?
For example:
a daycounter i = 1..31
daystr = [NSString stringWithFormat: @" %i", daycounter];}
I get fine 1...31
in latin Numbers
What do I have to change/add that I get for example Arabic Numbers, Chinese Numbers etc?