diff options
author | 2013-12-16 10:33:39 +0000 | |
---|---|---|
committer | 2013-12-16 10:33:40 +0000 | |
commit | 769eb083efd39f43d1669ab5b6285461a17b3e22 (patch) | |
tree | 4d108e67c1164714f9b419711176b847bea132f9 /java/res | |
parent | f3b92fb952cac605118bac22e21a1fccb843183f (diff) | |
parent | d4bb7df412e13197570436e9b8ec7db4f1199a06 (diff) | |
download | latinime-769eb083efd39f43d1669ab5b6285461a17b3e22.tar.gz latinime-769eb083efd39f43d1669ab5b6285461a17b3e22.tar.xz latinime-769eb083efd39f43d1669ab5b6285461a17b3e22.zip |
Merge "Add option to enable personalization dictionaries."
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/strings.xml | 5 | ||||
-rw-r--r-- | java/res/xml/prefs.xml | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index a269d4979..f4d072dd5 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -87,6 +87,11 @@ <!-- Description for option enabling or disabling the use of names of people in Contacts for suggestion and correction [CHAR LIMIT=65] --> <string name="use_contacts_dict_summary">Use names from Contacts for suggestions and corrections</string> + <!-- Option name for enabling the use by the keyboards of sent/received messages, e-mail and typing history to improve suggestion accuracy [CHAR LIMIT=25] --> + <string name="use_personalized_dicts">Personalized suggestions</string> + <!-- Description for option enabling the use by the keyboards of sent/received messages, e-mail and typing history to improve suggestion accuracy [CHAR LIMIT=65] --> + <string name="use_personalized_dicts_summary">Learn from your communications and typed data to improve suggestions</string> + <!-- Option name for enabling or disabling the double-space period feature that lets double tap on spacebar insert a period followed by a space [CHAR LIMIT=30] --> <string name="use_double_space_period">Double-space period</string> <!-- Description for option enabling or disabling the double-space period feature that lets double tap on spacebar insert a period followed by a space [CHAR LIMIT=65] --> diff --git a/java/res/xml/prefs.xml b/java/res/xml/prefs.xml index bf3b62353..4f7c9f058 100644 --- a/java/res/xml/prefs.xml +++ b/java/res/xml/prefs.xml @@ -134,6 +134,12 @@ android:persistent="true" android:defaultValue="true" /> <CheckBoxPreference + android:key="pref_key_use_personalized_dicts" + android:title="@string/use_personalized_dicts" + android:summary="@string/use_personalized_dicts_summary" + android:persistent="true" + android:defaultValue="true" /> + <CheckBoxPreference android:key="pref_key_use_double_space_period" android:title="@string/use_double_space_period" android:summary="@string/use_double_space_period_summary" |