aboutsummaryrefslogtreecommitdiffstats
path: root/java/res
diff options
context:
space:
mode:
Diffstat (limited to 'java/res')
-rw-r--r--java/res/values/config.xml10
-rw-r--r--java/res/values/strings.xml14
-rw-r--r--java/res/xml/prefs.xml8
3 files changed, 16 insertions, 16 deletions
diff --git a/java/res/values/config.xml b/java/res/values/config.xml
index f0b12e92b..133bb0a06 100644
--- a/java/res/values/config.xml
+++ b/java/res/values/config.xml
@@ -22,17 +22,17 @@
<bool name="config_use_fullscreen_mode">false</bool>
<bool name="config_enable_show_voice_key_option">true</bool>
<bool name="config_enable_show_popup_on_keypress_option">true</bool>
- <bool name="config_enable_bigram_suggestions_option">true</bool>
+ <bool name="config_enable_next_word_suggestions_option">true</bool>
<!-- TODO: Disable the following configuration for production. -->
<bool name="config_enable_usability_study_mode_option">true</bool>
<!-- Whether or not Popup on key press is enabled by default -->
<bool name="config_default_popup_preview">true</bool>
- <!-- Default value for bigram suggestion: while showing suggestions for a word should we weigh
+ <!-- Default value for next word suggestion: while showing suggestions for a word should we weigh
in the previous word? -->
- <bool name="config_default_bigram_suggestions">true</bool>
- <!-- Default value for bigram prediction: after entering a word and a space only, should we look
+ <bool name="config_default_next_word_suggestions">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_bigram_prediction">false</bool>
+ <bool name="config_default_next_word_prediction">true</bool>
<bool name="config_default_sound_enabled">false</bool>
<bool name="config_default_vibration_enabled">true</bool>
<integer name="config_delay_update_suggestions">100</integer>
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml
index a22c68cb8..28acd0fcc 100644
--- a/java/res/values/strings.xml
+++ b/java/res/values/strings.xml
@@ -118,13 +118,13 @@
<!-- 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_aggeressive">Very aggressive</string>
- <!-- Option to enable bigram correction -->
- <string name="bigram_suggestion">Bigram suggestions</string>
- <!-- Description for auto correction -->
- <string name="bigram_suggestion_summary">Use previous word to improve suggestion</string>
- <!-- Option to enable using user-history bigram when no input -->
- <string name="bigram_prediction">Bigram prediction</string>
- <!-- Description for auto correction -->
+ <!-- Option to enable next word correction -->
+ <string name="bigram_suggestion">Next word suggestions</string>
+ <!-- Option to enable next word suggestion. This uses the previous word in an attempt to improve the suggestions quality -->
+ <string name="bigram_suggestion_summary">Use previous word to improve suggestions</string>
+ <!-- Option to enable using next word prediction -->
+ <string name="bigram_prediction">Next word prediction</string>
+ <!-- Description for "next word prediction" option. This displays suggestions even when there is no input, based on the previous word. -->
<string name="bigram_prediction_summary">Use previous word also for prediction</string>
<!-- Indicates that a word has been added to the dictionary -->
diff --git a/java/res/xml/prefs.xml b/java/res/xml/prefs.xml
index c5c647aac..ab5d44b24 100644
--- a/java/res/xml/prefs.xml
+++ b/java/res/xml/prefs.xml
@@ -111,18 +111,18 @@
android:persistent="true"
android:defaultValue="true" />
<CheckBoxPreference
- android:key="bigram_suggestion"
+ android:key="next_word_suggestion"
android:title="@string/bigram_suggestion"
android:summary="@string/bigram_suggestion_summary"
android:persistent="true"
android:defaultValue="true" />
<CheckBoxPreference
- android:key="bigram_prediction"
- android:dependency="bigram_suggestion"
+ android:key="next_word_prediction"
+ android:dependency="next_word_suggestion"
android:title="@string/bigram_prediction"
android:summary="@string/bigram_prediction_summary"
android:persistent="true"
- android:defaultValue="false" />
+ android:defaultValue="true" />
<CheckBoxPreference
android:key="enable_span_insert"
android:title="@string/enable_span_insert"