aboutsummaryrefslogtreecommitdiffstats
path: root/java/res
diff options
context:
space:
mode:
authorDan Zivkovic <zivkovic@google.com>2015-03-04 23:08:09 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-03-04 23:08:09 +0000
commit5512a84d3ef8167666a289e63efee372934d0bbc (patch)
tree35c1edb6db91a097b3ff86e6619a88ff65333cac /java/res
parent34adcf999607d758ebcaf095afa2de8b48a7e581 (diff)
parent1ae16dc3db170802d1b38273f477125a2a969d32 (diff)
downloadlatinime-5512a84d3ef8167666a289e63efee372934d0bbc.tar.gz
latinime-5512a84d3ef8167666a289e63efee372934d0bbc.tar.xz
latinime-5512a84d3ef8167666a289e63efee372934d0bbc.zip
am 1ae16dc3: Next-word suggestion bit in keyboard settings.
* commit '1ae16dc3db170802d1b38273f477125a2a969d32': Next-word suggestion bit in keyboard settings.
Diffstat (limited to 'java/res')
-rw-r--r--java/res/values/config-common.xml3
-rw-r--r--java/res/values/strings.xml5
-rw-r--r--java/res/xml/prefs_screen_correction.xml6
3 files changed, 0 insertions, 14 deletions
diff --git a/java/res/values/config-common.xml b/java/res/values/config-common.xml
index 36fd30aef..be22cceea 100644
--- a/java/res/values/config-common.xml
+++ b/java/res/values/config-common.xml
@@ -20,9 +20,6 @@
<resources>
<bool name="config_block_potentially_offensive">true</bool>
- <!-- Default value for next word prediction: after entering a word and a space only, should we look
- at input history to suggest a hopefully helpful suggestions for the next word? -->
- <bool name="config_default_next_word_prediction">true</bool>
<integer name="config_delay_in_milliseconds_to_update_shift_state">100</integer>
<integer name="config_double_space_period_timeout">1100</integer>
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml
index 50aa4a782..c8060dac3 100644
--- a/java/res/values/strings.xml
+++ b/java/res/values/strings.xml
@@ -153,11 +153,6 @@
<!-- Option to suggest auto correction suggestions very aggressively. Auto-corrects to a word which has even large edit distance from typed word. [CHAR LIMIT=20] -->
<string name="auto_correction_threshold_mode_very_aggressive">Very aggressive</string>
- <!-- Option to enable using next word suggestions. After the user types a space, with this option on, the keyboard will try to predict the next word. -->
- <string name="bigram_prediction">Next-word suggestions</string>
- <!-- Description for "next word suggestion" option. This displays suggestions even when there is no input, based on the previous word. -->
- <string name="bigram_prediction_summary">Use the previous word in making suggestions</string>
-
<!-- Option to enable gesture input. The user can input a word by tracing the letters of a word without releasing the finger from the screen. [CHAR LIMIT=30]-->
<string name="gesture_input">Enable gesture typing</string>
<!-- Description for "gesture_input" option. The user can input a word by tracing the letters of a word without releasing the finger from the screen. [CHAR LIMIT=65]-->
diff --git a/java/res/xml/prefs_screen_correction.xml b/java/res/xml/prefs_screen_correction.xml
index dd5ba540c..020d3afa6 100644
--- a/java/res/xml/prefs_screen_correction.xml
+++ b/java/res/xml/prefs_screen_correction.xml
@@ -67,10 +67,4 @@
android:summary="@string/use_contacts_dict_summary"
android:defaultValue="true"
android:persistent="true" />
- <CheckBoxPreference
- android:key="next_word_prediction"
- android:title="@string/bigram_prediction"
- android:summary="@string/bigram_prediction_summary"
- android:defaultValue="true"
- android:persistent="true" />
</PreferenceScreen>