|
Android
Android localization file example
IntroductionGet Localization has full support for Android-based localization file. ExampleFollowing shows an example of an Android localization file. All mentioned tags are supported. <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Your Appname</string>
<string name="text_welcome">Welcome !!!</string>
<plurals name="numberOfSongsAvailable">
<item quantity="one">One song found.</item>
<item quantity="other">%d songs found.</item>
</plurals>
<string-array name="planets_array">
<item>Mercury</item>
<item>Venus</item>
<item>Earth</item>
<item>Mars</item>
</string-array>
</resources>Notes
|