
Fixes #206. Two other small fixes too: * Units don't really translate, and they are appended to java strings anyway. If it is to be translated, do a proper formatted string. * Placed the light theme above the dark one, since it's the default.
19 lines
561 B
XML
19 lines
561 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<resources>
|
|
<string-array name="updateIntervalNames">
|
|
<item>@string/interval_never</item>
|
|
<item>@string/interval_1h</item>
|
|
<item>@string/interval_4h</item>
|
|
<item>@string/interval_12h</item>
|
|
<item>@string/interval_1d</item>
|
|
<item>@string/interval_1w</item>
|
|
<item>@string/interval_2w</item>
|
|
</string-array>
|
|
|
|
<string-array name="themeNames">
|
|
<item>@string/theme_light</item>
|
|
<item>@string/theme_dark</item>
|
|
</string-array>
|
|
|
|
</resources>
|