Android XML Free
ByCrowdinVerified Author

Localization format for web and mobile apps, Android Studio, Google Play services

Try Crowdin

Android XML translation with Crowdin

Copy link

Android XML is a natively supported file format, you can use it without an additional installation. Just upload it to your projects and start the localization.

File Format Details

Copy link
Attribute Value
File Extension .xml
API Type android
Source can be edited in Crowdin Yes
Generating translated files via Bundles Search Crowdin Store
Supports pluralization Yes
WYSIWYG Preview in the editor No
Supported types of contextual information Text comments, Screenshots, Live preview via SDK
Custom attributes Yes
Existing translations import possibility Key-value mapping

Sample File

Copy link
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="identifier_1">String for translation 1</string>
  <string name="identifier_2" comment="Type string's context here">String for translation 2</string>
  <string name="identifier_3">String for translation 3</string>
  <string name="identifier_4" translatable="false">String for translation 4</string>
  <string name="identifier_5" maxLength="15"> String for translation 5</string>
  <plurals name="apples_count">
    <item quantity="one">%s apple</item>
    <item quantity="other">%s apples</item>
  </plurals>
</resources>

Translating Android XML

Copy link

Attributes

Import as a hidden string:


<resources>

  <string name="identifier_3" translatable="false">String for translation</string>

</resources>

Custom Attributes

Max. Length for the translated string:


<string name="identifier_5" maxLength="15"> String for translation 5</string>

Comments:


<resources>

  <string name="identifier" comment="Type string's context here">String for translation</string>

</resources>

Plurals


<resources>

  <plurals name="apples_count">

    <item quantity="one">%s apple</item>

    <item quantity="other">%s apples</item>

  </plurals>

</resources>

Crowdin is a platform that helps you manage and translate content into different languages. Integrate Crowdin with your repo, CMS, or other systems. Source content is always up to date for your translators, and translated content is returned automatically.

Learn More
Categories
File Formats
Works with
  • Crowdin Enterprise
  • crowdin.com
Details

Released on May 16, 2022

Updated on Feb 23, 2024

Published by Crowdin

Identifier:android-xml