-
-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
text to be committed is the middle suggestion #672
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,10 @@ | |
<string name="auto_correction_threshold_mode_aggressive">Aggressive</string> | ||
<!-- 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 show the text to be committed as the middle middle suggestion --> | ||
<string name="center_suggestion_text_to_commit">Center text to commit</string> | ||
<!-- Description for the center text to commit setting --> | ||
<string name="center_suggestion_text_to_commit_summary">If enabled, the middle suggestion will show the text to be committed</string> | ||
Comment on lines
+127
to
+130
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be good to avoid to avoid "commit" in the name and description (no one used it in the related issue). I'm not good at finding short and clear titles and descriptions, not sure how much I can help here... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I asked in the issue, maybe someone has a good idea. If not we can still change it later (though it would mean unnecessary work for translators) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe "middle suggestion always used"? Then for the description something like "If enabled, the middle suggestion will display the word selected for completion, whether the typed text was correct or not"? Add a bit more detail for what its doing. Obviously just some ideas There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Always use middle suggestion" sounds good to me, at least I think this is hardest do mis-interpret. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Used or entered seem better, given no typing is taking place. Entered leaves less ambiguity, but used might be more clear. Your summary is much clearer than mine in fewer words lol |
||
<!-- 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. --> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typedIndex
is a confusing name, please be more explicit (e.g.indexOfTypedWord
)