diff options
author | 2013-01-18 16:40:55 +0900 | |
---|---|---|
committer | 2013-01-18 20:18:06 +0900 | |
commit | 9058bc0df40c1124d7140bacf39bf6cf547ecb79 (patch) | |
tree | c54d6da4ad610a526de619fd4e3eac9a04dce363 /java/res | |
parent | d5e869ced838454ede1d813d6a289fafc31b0665 (diff) | |
download | latinime-9058bc0df40c1124d7140bacf39bf6cf547ecb79.tar.gz latinime-9058bc0df40c1124d7140bacf39bf6cf547ecb79.tar.xz latinime-9058bc0df40c1124d7140bacf39bf6cf547ecb79.zip |
[AD1] Add an option to read an arbitrary dictionary.
Bug: 7702011
Change-Id: I76f52dd3fdb22824fc243ab3845ceec610469c81
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/strings.xml | 2 | ||||
-rw-r--r-- | java/res/xml/prefs_for_debug.xml | 16 |
2 files changed, 10 insertions, 8 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index bf0ba4001..f726c1ce8 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -375,6 +375,8 @@ <string name="prefs_keypress_vibration_duration_settings">Keypress vibration duration settings</string> <!-- Title of the settings for keypress sound volume --> <string name="prefs_keypress_sound_volume_settings">Keypress sound volume settings</string> + <!-- Title of the settings for reading an external dictionary file --> + <string name="prefs_read_external_dictionary">Read external dictionary file</string> <!-- Title of the button to revert to the default value of the device in the settings dialog [CHAR LIMIT=15] --> <string name="button_default">Default</string> diff --git a/java/res/xml/prefs_for_debug.xml b/java/res/xml/prefs_for_debug.xml index 605a02f07..8efd1c9e8 100644 --- a/java/res/xml/prefs_for_debug.xml +++ b/java/res/xml/prefs_for_debug.xml @@ -23,8 +23,7 @@ android:title="@string/prefs_enable_log" android:summary="@string/prefs_description_log" android:persistent="true" - android:defaultValue="false" - /> + android:defaultValue="false" /> <ListPreference android:key="pref_keyboard_layout_20110916" @@ -32,26 +31,27 @@ android:persistent="true" android:entryValues="@array/keyboard_layout_modes_values" android:entries="@array/keyboard_layout_modes" - android:defaultValue="@string/config_default_keyboard_theme_index" - /> + android:defaultValue="@string/config_default_keyboard_theme_index" /> <CheckBoxPreference android:key="debug_mode" android:title="@string/prefs_debug_mode" android:persistent="true" - android:defaultValue="false" - /> + android:defaultValue="false" /> <CheckBoxPreference android:key="force_non_distinct_multitouch" android:title="@string/prefs_force_non_distinct_multitouch" android:persistent="true" - android:defaultValue="false" - /> + android:defaultValue="false" /> <CheckBoxPreference android:key="usability_study_mode" android:title="@string/prefs_usability_study_mode" android:persistent="true" android:defaultValue="false" /> + + <PreferenceScreen + android:key="read_external_dictionary" + android:title="@string/prefs_read_external_dictionary" /> </PreferenceScreen> |