diff options
| author | Jules Aguillon | 2021-12-30 22:22:25 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2021-12-30 22:22:25 +0100 |
| commit | 9c82c9cfdcd1e6ac69ebe467932bedfc930cf9bc (patch) | |
| tree | 2c9a4b109e083db0e5ecdffcaf022c88b0c35df1 /res/values | |
| parent | 8bef0728ae61e70291d3ea8f2e583e9fc94aff0d (diff) | |
| download | unexpected-keyboard-9c82c9cfdcd1e6ac69ebe467932bedfc930cf9bc.tar.gz unexpected-keyboard-9c82c9cfdcd1e6ac69ebe467932bedfc930cf9bc.zip | |
Improve the "precision" option
Now named "swiping distance". Changed to a dropdown.
Diffstat (limited to 'res/values')
| -rw-r--r-- | res/values/arrays.xml | 14 | ||||
| -rw-r--r-- | res/values/strings.xml | 9 |
2 files changed, 21 insertions, 2 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index d8c83f1..66d5699 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -32,4 +32,18 @@ <item>light</item> <item>black</item> </string-array> + <string-array name="pref_swipe_dist_entries"> + <item>@string/pref_swipe_dist_e_very_short</item> + <item>@string/pref_swipe_dist_e_short</item> + <item>@string/pref_swipe_dist_e_default</item> + <item>@string/pref_swipe_dist_e_far</item> + <item>@string/pref_swipe_dist_e_very_far</item> + </string-array> + <string-array name="pref_swipe_dist_values"> + <item>5</item> + <item>7.5</item> + <item>15</item> + <item>25</item> + <item>35</item> + </string-array> </resources> diff --git a/res/values/strings.xml b/res/values/strings.xml index ca31dca..59689ea 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -11,8 +11,8 @@ <string name="pref_accents_e_all">Show every accents</string> <string name="pref_accents_e_none">Hide accents</string> <string name="pref_category_typing">Typing</string> - <string name="pref_preci_title">Precision</string> - <string name="pref_preci_summary">Distance of corner values (%sdp)</string> + <string name="pref_swipe_dist_title">Swiping distance</string> + <string name="pref_swipe_dist_summary">Distance of characters in the corners of the keys (%s)</string> <string name="pref_long_timeout_title">Long press timeout</string> <string name="pref_long_interval_title">Long press interval</string> <string name="pref_category_vibrate">Vibration</string> @@ -31,4 +31,9 @@ <string name="pref_theme_e_dark">Dark</string> <string name="pref_theme_e_light">Light</string> <string name="pref_theme_e_black">Black</string> + <string name="pref_swipe_dist_e_very_short">Very short</string> + <string name="pref_swipe_dist_e_short">Short</string> + <string name="pref_swipe_dist_e_default">Normal</string> + <string name="pref_swipe_dist_e_far">Far</string> + <string name="pref_swipe_dist_e_very_far">Very far</string> </resources> |
