diff options
| author | Jules Aguillon | 2022-01-30 23:29:50 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2022-01-30 23:29:50 +0100 |
| commit | 8631dfb723716e3273e92b2dfd02008d733b86a9 (patch) | |
| tree | 9c05a311c2554f11f2184198e40de3fa24807fa9 /res/values | |
| parent | c9f7f2cfc8c08254d9a2c7edd9d290759c63b9b6 (diff) | |
| download | unexpected-keyboard-8631dfb723716e3273e92b2dfd02008d733b86a9.tar.gz unexpected-keyboard-8631dfb723716e3273e92b2dfd02008d733b86a9.zip | |
Select theme depending on system settings
Automatically choose between the Dark and Light themes.
Diffstat (limited to 'res/values')
| -rw-r--r-- | res/values/arrays.xml | 2 | ||||
| -rw-r--r-- | res/values/strings.xml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index bcc8576..62d791c 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -29,11 +29,13 @@ <item>4</item> </string-array> <string-array name="pref_theme_entries"> + <item>@string/pref_theme_e_system</item> <item>@string/pref_theme_e_dark</item> <item>@string/pref_theme_e_light</item> <item>@string/pref_theme_e_black</item> </string-array> <string-array name="pref_theme_values"> + <item>system</item> <item>dark</item> <item>light</item> <item>black</item> diff --git a/res/values/strings.xml b/res/values/strings.xml index 1ff286a..199fbd2 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -28,6 +28,7 @@ <string name="pref_character_size_title">Label size</string> <string name="pref_character_size_summary">Size of characters displayed on the keyboard (%.2fx)</string> <string name="pref_theme">Theme</string> + <string name="pref_theme_e_system">System settings</string> <string name="pref_theme_e_dark">Dark</string> <string name="pref_theme_e_light">Light</string> <string name="pref_theme_e_black">Black</string> |
