[fenix] Use consistent verbiage with regard to opened tabs (https://github.com/mozilla-mobile/fenix/pull/6550)

pull/600/head
David Walsh 5 years ago committed by Jeff Boek
parent 65fb429f90
commit adfd7798e5

@ -203,7 +203,7 @@ private fun assertAddTabButton() =
.check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
private fun assertNoTabsOpenedHeader() =
onView(CoreMatchers.allOf(ViewMatchers.withText("No tabs opened")))
onView(CoreMatchers.allOf(ViewMatchers.withText("No open tabs")))
.check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
private fun assertNoTabsOpenedText() {

@ -20,7 +20,7 @@ import org.mozilla.fenix.mvi.UIView
val noTabMessage = AdapterItem.NoContentMessage(
R.drawable.ic_tabs,
R.string.no_open_tabs_header,
R.string.no_open_tabs_header_2,
R.string.no_open_tabs_description
)

@ -15,7 +15,7 @@
<!-- Placeholder text shown in the search bar before a user enters text -->
<string name="search_hint">Search or enter address</string>
<!-- No Open Tabs Message Header -->
<string name="no_open_tabs_header">No tabs opened</string>
<string name="no_open_tabs_header_2">No open tabs</string>
<!-- No Open Tabs Message Description -->
<string name="no_open_tabs_description">Your open tabs will be shown here.</string>

Loading…
Cancel
Save