I have a load of week day name strings in resources\resources-dan, resources\resources-eng, resources\resources-por folders.
However if a user has a language that doesn't have one of these folder for example Polish then the following function causes a crash as there isn't a resource file to load. So how, using this structure system do I set a default langauge of say English if Polish cannot be found? Or do I have to create one for EVERY language and just have them as English if I don't support that language?
weekday_abbr_cache = [
Ui.loadResource(Rez.Strings.day0Abbr),
Ui.loadResource(Rez.Strings.day1Abbr),
Ui.loadResource(Rez.Strings.day2Abbr),
Ui.loadResource(Rez.Strings.day3Abbr),
Ui.loadResource(Rez.Strings.day4Abbr),
Ui.loadResource(Rez.Strings.day5Abbr),
Ui.loadResource(Rez.Strings.day6Abbr)
];
return weekday_abbr_cache[day];