Web, mobil uygulamalar, Android Studio ve Google Play hizmetleri için yerelleştirme biçimi
<resources>
<string name="identifier_1">1. çeviri için dizgi</string>
<string name="identifier_2" comment="Type string's context here">2. çeviri için dizgi</string>
<string name="identifier_3">3. çeviri için dizgi</string>
<string name="identifier_4" translatable="false">4. çeviri için dizgi</string>
<string name="identifier_5" maxLength="15"> 5. çeviri için dizgi</string>
<plurals name="apples_count">
<item quantity="one">%s elma</item>
<item quantity="other">%s elma</item>
</plurals>
</resources>
Gizli bir dizgi olarak içe aktar:
<resources>
<string name="identifier_3" translatable="false">Çeviri için dizgi</string>
</resources>
Çevrilen dizgi için En Fazla Uzunluk:
<string name="identifier_5" maxLength="15"> 5. çeviri için dizgi</string>
<resources>
<string name="identifier" comment="Type string's context here">Çeviri için dizgi</string>
</resources>
<resources>
<plurals name="apples_count">
<item quantity="one">%s elma</item>
<item quantity="other">%s elma</item>
</plurals>
</resources>