-
Notifications
You must be signed in to change notification settings - Fork 550
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Explanation Renamed FAQ question and answer strings from index-based to more descriptive qualifiers. The corresponding translations to the previous strings have been deleted. The goal is to to overwrite existing faq strings and re-translate them, since a number of updates were made in #5246 and #5332. [device-2024-02-22-030542.webm](https://github.com/oppia/oppia-android/assets/59600948/be9a7cc8-89eb-4a1f-a02f-1466ffb0092f) ## Essential Checklist <!-- Please tick the relevant boxes by putting an "x" in them. --> - [ ] The PR title and explanation each start with "Fix #bugnum: " (If this PR fixes part of an issue, prefix the title with "Fix part of #bugnum: ...".) - [ ] Any changes to [scripts/assets](https://github.com/oppia/oppia-android/tree/develop/scripts/assets) files have their rationale included in the PR explanation. - [x] The PR follows the [style guide](https://github.com/oppia/oppia-android/wiki/Coding-style-guide). - [x] The PR does not contain any unnecessary code changes from Android Studio ([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#undo-unnecessary-changes)). - [x] The PR is made from a branch that's **not** called "develop" and is up-to-date with "develop". - [x] The PR is **assigned** to the appropriate reviewers ([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#clarification-regarding-assignees-and-reviewers-section)). ## For UI-specific PRs only <!-- Delete these section if this PR does not include UI-related changes. --> If your PR includes UI-related changes, then: - Add screenshots for portrait/landscape for both a tablet & phone of the before & after UI changes - For the screenshots above, include both English and pseudo-localized (RTL) screenshots (see [RTL guide](https://github.com/oppia/oppia-android/wiki/RTL-Guidelines)) - Add a video showing the full UX flow with a screen reader enabled (see [accessibility guide](https://github.com/oppia/oppia-android/wiki/Accessibility-A11y-Guide)) - For PRs introducing new UI elements or color changes, both light and dark mode screenshots must be included - Add a screenshot demonstrating that you ran affected Espresso tests locally & that they're passing --------- Co-authored-by: Ben Henning <ben@oppia.org>
- Loading branch information
1 parent
0bc5e43
commit 0911e71
Showing
8 changed files
with
141 additions
and
164 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string-array name="faq_questions"> | ||
<item>@string/faq_question_1</item> | ||
<item>@string/faq_question_2</item> | ||
<item>@string/faq_question_3</item> | ||
<item>@string/faq_question_4</item> | ||
<item>@string/faq_question_5</item> | ||
<item>@string/faq_question_6</item> | ||
<item>@string/faq_question_7</item> | ||
<item>@string/faq_question_9</item> | ||
<item>@string/faq_question_10</item> | ||
<item>@string/faq_question_11</item> | ||
<item>@string/faq_question_12</item> | ||
<item>@string/faq_question_13</item> | ||
<item>@string/faq_question_whats_oppia</item> | ||
<item>@string/faq_question_whos_an_admin</item> | ||
<item>@string/faq_question_create_profile</item> | ||
<item>@string/faq_question_app_language</item> | ||
<item>@string/faq_question_bug_reporting</item> | ||
<item>@string/faq_question_math_lessons</item> | ||
<item>@string/faq_question_more_lessons</item> | ||
<item>@string/faq_question_exploration_player</item> | ||
<item>@string/faq_question_audio_not_playing</item> | ||
<item>@string/faq_question_delete_profile</item> | ||
<item>@string/faq_question_update_app</item> | ||
<item>@string/faq_question_update_os</item> | ||
<item>@string/faq_question_cant_find_question</item> | ||
</string-array> | ||
|
||
<string-array name="faq_answers"> | ||
<item>@string/faq_answer_1</item> | ||
<item>@string/faq_answer_2</item> | ||
<item>@string/faq_answer_3</item> | ||
<item>@string/faq_answer_4</item> | ||
<item>@string/faq_answer_5</item> | ||
<item>@string/faq_answer_6</item> | ||
<item>@string/faq_answer_7</item> | ||
<item>@string/faq_answer_9</item> | ||
<item>@string/faq_answer_10</item> | ||
<item>@string/faq_answer_11</item> | ||
<item>@string/faq_answer_12</item> | ||
<item>@string/faq_answer_13</item> | ||
<item>@string/faq_answer_whats_oppia</item> | ||
<item>@string/faq_answer_whos_an_admin</item> | ||
<item>@string/faq_answer_create_profile</item> | ||
<item>@string/faq_answer_app_language</item> | ||
<item>@string/faq_answer_bug_reporting</item> | ||
<item>@string/faq_answer_math_lessons</item> | ||
<item>@string/faq_answer_more_lessons</item> | ||
<item>@string/faq_answer_exploration_player</item> | ||
<item>@string/faq_answer_audio_not_playing</item> | ||
<item>@string/faq_answer_delete_profile</item> | ||
<item>@string/faq_answer_update_app</item> | ||
<item>@string/faq_answer_update_os</item> | ||
<item>@string/faq_answer_cant_find_question</item> | ||
</string-array> | ||
</resources> |
This file contains 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
This file contains 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
Oops, something went wrong.