Localizzazione formato per app web e telefono, Android Studio, servizi Google Play
<resources>
<string name="identifier_1">Stringa per traduzione 1</string>
<string name="identifier_2" comment="Type string's context here">Stringa per traduzione 2</string>
<string name="identifier_3">Stringa per traduzione 3</string>
<string name="identifier_4" translatable="false">Stringa per traduzione 4</string>
<string name="identifier_5" maxLength="15"> Stringa per traduzione 5</string>
<plurals name="apples_count">
<item quantity="one">%s mela</item>
<item quantity="other">%s mele</item>
</plurals>
</resources>
Importa come stringa nascosta:
<resources>
<string name="identifier_3" translatable="false">Stringa per traduzione</string>
</resources>
Max. Lunghezza per la stringa tradotta:
<string name="identifier_5" maxLength="15"> Stringa per traduzione 5</string>
<resources>
<string name="identifier" comment="Type string's context here">Stringa per traduzione</string>
</resources>
<resources>
<plurals name="apples_count">
<item quantity="one">%s mela</item>
<item quantity="other">%s mele</item>
</plurals>
</resources>