diff options
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/strings.xml | 2 | ||||
-rw-r--r-- | java/res/xml/prefs.xml | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 2a47d7afa..68fa8fd37 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -434,4 +434,6 @@ <string name="language_settings">Language & input</string> <!-- Title of the Input method picker. This should be aligned with msgid="4653387336791222978" --> <string name="select_input_method">Choose input method</string> + <!-- Option to show setup wizard icon. [CHAR LIMIT=30]--> + <string name="show_setup_wizard_icon" translatable="false">Show setup wizard icon</string> </resources> diff --git a/java/res/xml/prefs.xml b/java/res/xml/prefs.xml index 276395bad..e5fef8834 100644 --- a/java/res/xml/prefs.xml +++ b/java/res/xml/prefs.xml @@ -145,7 +145,7 @@ android:fragment="com.android.inputmethod.latin.AdditionalSubtypeSettings" android:key="custom_input_styles" android:title="@string/custom_input_styles_title" /> - <!-- Values for popup dismiss delay are added programatically --> + <!-- Values for popup dismiss delay are added programmatically --> <CheckBoxPreference android:key="pref_sliding_key_input_preview" android:title="@string/sliding_key_input_preview" @@ -171,6 +171,11 @@ android:key="pref_keypress_sound_volume" android:title="@string/prefs_keypress_sound_volume_settings" latin:maxValue="100" /> <!-- percent --> + <!-- The show setup wizard icon settings shouldn't be persistent and the default value + is added programmatically. --> + <CheckBoxPreference + android:key="pref_show_setup_wizard_icon" + android:title="@string/show_setup_wizard_icon" /> </PreferenceScreen> <PreferenceScreen android:key="debug_settings" |