How to use multi languages for iPhone application?. Currently I used english language only. But in future I want to use around 20 to 30 languages. How to use it in iPhone development using MonoTouch?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You have to create a folder for each language you are using in the format "language.lproj" (e.g. en.lproj, de.proj) - in there you have to create a file called Localizable.strings (Compile Action: Content)
The File looks like that:
"Name For Your String"="Translation For Your String"; // don't forget the semicolon!
then you can call NSBundle.MainBundle.LocalizedString("Name For YourString", "", "")
Here's a short extension method which makes the translation a little easier:
public static class Extension
{
public static string t(this string translate)
{
return NSBundle.MainBundle.LocalizedString(translate, "", "");
}
}
you use it that way:
// don't forget the using
"My String".t();