diff options
Diffstat (limited to 'res')
| -rw-r--r-- | res/values/strings.xml | 2 | ||||
| -rw-r--r-- | res/xml/settings.xml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index d46b828..7cc8d1d 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -36,6 +36,8 @@ <string name="pref_category_suggestions">Suggestions</string> <string name="pref_suggestions_title">Suggestions</string> <string name="pref_suggestions_summary">Enable word completion and spell checking</string> + <string name="pref_space_bar_auto_complete_title">Autocomplete with the space bar</string> + <string name="pref_space_bar_auto_complete_summary">Enter the best suggestion by pressing space</string> <string name="pref_category_typing">Typing</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> diff --git a/res/xml/settings.xml b/res/xml/settings.xml index a63c9d8..d846dd1 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -14,6 +14,7 @@ </PreferenceCategory> <PreferenceCategory android:title="@string/pref_category_suggestions"> <CheckBoxPreference android:key="suggestions" android:title="@string/pref_suggestions_title" android:summary="@string/pref_suggestions_summary" android:defaultValue="true"/> + <CheckBoxPreference android:key="space_bar_auto_complete" android:title="@string/pref_space_bar_auto_complete_title" android:summary="@string/pref_space_bar_auto_complete_summary" android:defaultValue="false"/> </PreferenceCategory> <PreferenceCategory android:title="@string/pref_category_typing"> <ListPreference android:key="swipe_dist" android:title="@string/pref_swipe_dist_title" android:summary="@string/pref_swipe_dist_summary" android:defaultValue="15" android:entries="@array/pref_swipe_dist_entries" android:entryValues="@array/pref_swipe_dist_values"/> |
