My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
Android  
Android localization file example
Updated Mar 21, 2011 by phong.le...@gtempaccount.com

Introduction

Get Localization has full support for Android-based localization file.

Example

Following 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

Powered by Google Project Hosting