Skip to content

Commit

Permalink
Merge pull request #4094 from kiwix/Fixes#4093
Browse files Browse the repository at this point in the history
Improved the Note label in the OverFlowMenu for more clarity
  • Loading branch information
kelson42 authored Nov 20, 2024
2 parents a68e68b + 56dafa4 commit d7a0628
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class NoteRobot : BaseRobot() {
// overFlowOptionMenu so that we can easily click on it.
pauseForBetterTestPerformance()
openActionBarOverflowOrOptionsMenu(context)
clickOn(Text("Note"))
clickOn(TextId(R.string.take_notes))
}

fun assertNoteDialogDisplayed() {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/res/menu/menu_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<item
android:id="@+id/menu_add_note"
android:icon="@drawable/ic_add_note"
android:title="@string/note"
android:title="@string/take_notes"
android:visible="false"
app:showAsAction="never" />

Expand Down
1 change: 1 addition & 0 deletions core/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@
<string name="custom_download_error_message_for_authentication_failed">The ZIM file could not be downloaded. Please try reinstalling the application from the Play store.</string>
<string name="save">Save</string>
<string name="note">Note</string>
<string name="take_notes">Take notes</string>
<string name="wiki_article_title">Wiki Article Title</string>
<string name="ext_storage_permission_rationale_export_bookmark">Storage access is required for exporting Bookmarks</string>
<string name="ext_storage_write_permission_denied_export_bookmark">Bookmarks can’t export without access of storage</string>
Expand Down

0 comments on commit d7a0628

Please sign in to comment.