
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?
17 lines
384 B
XML
17 lines
384 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<resources>
|
|
<string-array name="updateIntervalNames">
|
|
<item>Never</item>
|
|
<item>Hourly</item>
|
|
<item>Every 4 Hours</item>
|
|
<item>Every 12 Hours</item>
|
|
<item>Daily</item>
|
|
</string-array>
|
|
|
|
<string-array name="themeNames">
|
|
<item>Dark</item>
|
|
<item>Light</item>
|
|
<item>Light (with dark action bar)</item>
|
|
</string-array>
|
|
</resources>
|