Standard Android internationalization .xml file
Example:
<resources>
<string name="greeting">Hello {name}!</string>
<string name="farewell">Goodbye {name}!</string>
<plurals name="entities_found">
<item quantity="one"<entity found>/item>
<item quantity="other"<entities found>/item>
</plurals>
</resources>

  • Only string and plurals data will be translated
  • Plurals items must be as shown in the above example
  • Other types will not be translated
  • Value can be an HTML but must have escaped html tags or url encoded
  • Variables are not mandatory, but if you use them, you must indicate both the start and end variable symbols

Translation Rules

General Options