
NOTE: I don't know how android will go with adding a new property to a string-array resource, but not having it translated everywhere. Will it struggle because the EN version has three values for "theme", but other translations only have two?
32 lines
777 B
XML
32 lines
777 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<string name="app_name">F-Droid</string>
|
|
<string name="version_name">0.69-test</string>
|
|
|
|
<string name="about_sitec">https://f-droid.org</string>
|
|
<string name="about_mailc">team@f-droid.org</string>
|
|
|
|
<string name="menu_bitcoin">Bitcoin</string>
|
|
<string name="menu_litecoin">Litecoin</string>
|
|
<string name="menu_dogecoin">Dogecoin</string>
|
|
<string name="menu_flattr">Flattr</string>
|
|
|
|
<string name="https">https://</string>
|
|
|
|
<string-array name="updateIntervalValues">
|
|
<item>0</item>
|
|
<item>1</item>
|
|
<item>4</item>
|
|
<item>12</item>
|
|
<item>24</item>
|
|
</string-array>
|
|
|
|
<string-array name="themeValues">
|
|
<item>dark</item>
|
|
<item>light</item>
|
|
<item>lightWithDarkActionBar</item>
|
|
</string-array>
|
|
|
|
</resources>
|