Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Traditional T9’s help documentation and settings UI to reflect new/relocated features (word editing, emoji panel, hide keyboard, predictive-mode toggle, and “Mind Reading” / next-word prediction settings), and relaxes Add/Edit Word command availability to include ABC mode.
Changes:
- Extended multi-language help docs with “Edit Word”, “Hide Keyboard”, “Show Emojis”, and “Toggle Predictive Mode” key descriptions, and updated Command Palette default combos.
- Moved formerly “Beta Features” settings into relevant settings screens (Languages/Keypad) and added “Mind Reading” summaries across locales.
- Expanded
CmdAddWord/CmdEditWordavailability checks to allow ABC mode.
Reviewed changes
Copilot reviewed 28 out of 28 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/help/help.uk.md | Adds/updates UA help for word editing and new function keys; updates command palette combos. |
| docs/help/help.tr.md | Adds/updates TR help for word editing and new function keys; updates command palette combos. |
| docs/help/help.ru.md | Adds/updates RU help for word editing and new function keys; updates command palette combos. |
| docs/help/help.pt.md | Adds/updates PT-BR help for word editing and new function keys; updates command palette combos. |
| docs/help/help.it.md | Adds/updates IT help for word editing and new function keys; updates command palette combos. |
| docs/help/help.fr.md | Adds/updates FR help for word editing and new function keys; updates command palette combos. |
| docs/help/help.es.md | Adds/updates ES help for word editing and new function keys; updates command palette combos. |
| docs/help/help.en.md | Adds/updates EN help for word editing and new function keys; updates command palette combos. |
| docs/help/help.de.md | Adds/updates DE help for word editing and new function keys; updates command palette combos. |
| app/src/main/res/xml/prefs_screen_languages.xml | Moves “Raise import limits” switch into Languages screen. |
| app/src/main/res/xml/prefs_screen_keypad.xml | Adds navigation entry to the Mind Reading (next-word predictions) settings. |
| app/src/main/res/xml/prefs_screen_debug.xml | Removes the “Beta Features” category (features moved elsewhere). |
| app/src/main/res/values/strings.xml | Adds Mind Reading summary; tweaks predictive-related summaries. |
| app/src/main/res/values-uk/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (UA). |
| app/src/main/res/values-tr/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (TR). |
| app/src/main/res/values-ru/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (RU). |
| app/src/main/res/values-pt-rBR/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (PT-BR). |
| app/src/main/res/values-nl/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (NL). |
| app/src/main/res/values-lt/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (LT). |
| app/src/main/res/values-iw/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (IW). |
| app/src/main/res/values-it/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (IT). |
| app/src/main/res/values-fr/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (FR). |
| app/src/main/res/values-es/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (ES). |
| app/src/main/res/values-de/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (DE). |
| app/src/main/res/values-bg/strings.xml | Adds Mind Reading summary and adjusts predictive-related summaries (BG). |
| app/src/main/java/io/github/sspanak/tt9/preferences/settings/SettingsTyping.java | Removes the deprecated word_editing setting getter. |
| app/src/main/java/io/github/sspanak/tt9/commands/CmdEditWord.java | Allows Edit Word command in ABC mode (availability change). |
| app/src/main/java/io/github/sspanak/tt9/commands/CmdAddWord.java | Allows Add Word command in ABC mode (availability change). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @Override | ||
| public boolean run(@Nullable TraditionalT9 tt9) { | ||
| if (tt9 == null || tt9.getMainView() == null || !validate(tt9, tt9.getSettings(), tt9.getLanguage()) || tt9.getLanguage() == null) { | ||
| if (tt9 == null || tt9.getMainView() == null || !validate(tt9, tt9.getLanguage()) || tt9.getLanguage() == null) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.