diff options
| author | Jules Aguillon | 2022-12-10 19:39:22 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2022-12-10 19:39:22 +0100 |
| commit | c17b53ce7f16c202f139aff98a65f8d859f4412b (patch) | |
| tree | 86a6bb77a9ef51dacb0802a8fa582d400e5f0f97 /res/values | |
| parent | 940fc81193097cd46a6ea31dd8137d3943226c40 (diff) | |
| download | unexpected-keyboard-c17b53ce7f16c202f139aff98a65f8d859f4412b.tar.gz unexpected-keyboard-c17b53ce7f16c202f139aff98a65f8d859f4412b.zip | |
Add option 'numpad_layout'
Allow choosing whether to show the high or the low digits first. The
numeric pane and the numpad are affected by the option.
Diffstat (limited to 'res/values')
| -rw-r--r-- | res/values/arrays.xml | 8 | ||||
| -rw-r--r-- | res/values/strings.xml | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index 524da3d..a43772c 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -71,6 +71,14 @@ <item>@string/pref_show_numpad_landscape</item> <item>@string/pref_show_numpad_always</item> </string-array> + <string-array name="pref_numpad_layout_values"> + <item>high_first</item> + <item>low_first</item> + </string-array> + <string-array name="pref_numpad_layout_entries"> + <item>@string/pref_numpad_layout_e_high_first</item> + <item>@string/pref_numpad_layout_e_low_first</item> + </string-array> <string-array name="pref_accents_values"> <item>1</item> <item>2</item> diff --git a/res/values/strings.xml b/res/values/strings.xml index a565b09..640e03a 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -16,6 +16,9 @@ <string name="pref_show_numpad_never">Never</string> <string name="pref_show_numpad_landscape">Only in landscape mode</string> <string name="pref_show_numpad_always">Always</string> + <string name="pref_numpad_layout">NumPad layout</string> + <string name="pref_numpad_layout_e_high_first">High digits first</string> + <string name="pref_numpad_layout_e_low_first">Low digits first</string> <string name="pref_autocapitalisation_title">Automatic capitalisation</string> <string name="pref_autocapitalisation_summary">Press Shift at the beginning of a sentence</string> <string name="pref_extra_keys_title">Add keys to the keyboard</string> |
