Lokaliseringsformat til web- og mobil-apps, Android Studio, Google Play-tjenester
<resources>
<string name="identifier_1">Streng til oversættelse 1</string>
<string name="identifier_2" comment="Type string's context here">Streng til oversættelse 2</string>
<string name="identifier_3">Streng til oversættelse 3</string>
<string name="identifier_4" translatable="false">Streng til oversættelse 4</string>
<string name="identifier_5" maxLength="15"> Streng til oversættelse 5</string>
<plurals name="apples_count">
<item quantity="one">%s æble</item>
<item quantity="other">%s æbler</item>
</plurals>
</resources>
Importér som en skjult streng:
<resources>
<string name="identifier_3" translatable="false">Streng til oversættelse</string>
</resources>
Maks. Længde af den oversatte streng:
<string name="identifier_5" maxLength="15"> Streng til oversættelse 5</string>
<resources>
<string name="identifier" comment="Type string's context here">Streng til oversættelse</string>
</resources>
<resources>
<plurals name="apples_count">
<item quantity="one">%s æble</item>
<item quantity="other">%s æbler</item>
</plurals>
</resources>