目前,我有三个单独.strings
的文件——分别用于英语、法语和德语。
我UISegmentedControl
在首选项部分有一个,我想.strings
根据选择的段更改使用的默认文件。
当我测试它时,本地化已经在应用程序之外工作,我什至设法根据选择的段来本地化单个对象(如果选择了法国,下面的标签文本从“South”变为“Sud”,然后如果重新选择英语,请再次返回)使用:
if(German segment) {
NSString *path= [[NSBundle mainBundle] pathForResource:@"de" ofType:@"lproj"];
NSBundle* languageBundle = [NSBundle bundleWithPath:path];
// Returns german version of localised string as label text.
self.defaultName.titleLabel.text = [languageBundle localizedStringForKey:@"PREF_WEATHER_NORTH" value:@"" table:nil];
// I would like to set the default .strings file to 'de' here.
}
else if(French segment) {
NSString *path= [[NSBundle mainBundle] pathForResource:@"fr" ofType:@"lproj"];
NSBundle* languageBundle = [NSBundle bundleWithPath:path];
// Returns french version of localised string as label text
self.defaultName.titleLabel.text = [languageBundle localizedStringForKey:@"PREF_WEATHER_NORTH" value:@"" table:nil];
// I would like to set the default .strings file to 'fr' here
}
else if(British segment) {
NSString *path= [[NSBundle mainBundle] pathForResource:@"en" ofType:@"lproj"];
NSBundle* languageBundle = [NSBundle bundleWithPath:path];
// Returns english version of localised string as label text
self.defaultName.titleLabel.text = [languageBundle localizedStringForKey:@"PREF_WEATHER_NORTH" value:@"" table:nil];
// I would like to set the default .strings file to 'en' here.
}
现在,由于我已经在按钮单击时本地化了单个字符串,我想知道是否可以一次性本地化每个文件中的所有字符串.strings
(以便我根据哪个段更改默认使用的 .strings选择)或至少以可接受的代码量为目标。
显然,目前我可以一个一个地键入它们,但由于应用程序中使用的本地化字符串的数量,这并不是一个真正的选择。
任何帮助,将不胜感激。