Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use multi-languages for iPhone application using MonoTouch?

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?

like image 282
bharath Avatar asked Jun 07 '11 12:06

bharath


1 Answers

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();
like image 152
Thomas Rosenstein Avatar answered Oct 06 '22 18:10

Thomas Rosenstein