Skip to content

Commit

Permalink
Closes mozilla-mobile#804: Adds disable private browsing content desc…
Browse files Browse the repository at this point in the history
…ription
  • Loading branch information
sblatz committed Mar 5, 2019
1 parent fca5ed3 commit 7ef76c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ class HomeFragment : Fragment() {

view.toolbar_wrapper.isPrivateModeEnabled = (activity as HomeActivity).browsingModeManager.isPrivate

if ((activity as HomeActivity).browsingModeManager.isPrivate) {
privateBrowsingButton.contentDescription =
getString(R.string.content_description_disable_private_browsing_button)
} else {
privateBrowsingButton.contentDescription = getString(R.string.content_description_private_browsing_button)
}

privateBrowsingButton.setOnClickListener {
val browsingModeManager = (activity as HomeActivity).browsingModeManager
browsingModeManager.mode = when (browsingModeManager.mode) {
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<string name="content_description_menu">More options</string>
<!-- Content description (not visible, for screen readers etc.): "Private Browsing" menu button. -->
<string name="content_description_private_browsing_button">Enable private browsing</string>
<!-- Content description (not visible, for screen readers etc.): "Private Browsing" menu button. -->
<string name="content_description_disable_private_browsing_button">Disable private browsing</string>
<!-- Explanation for how sessions work -->
<string name="sessions_intro_description">Sessions help you return to the sites you visit often and those you\'ve just discovered. Start browsing and they\'ll begin to appear here. </string>
<!-- Placeholder text shown in the search bar before a user enters text -->
Expand Down

0 comments on commit 7ef76c0

Please sign in to comment.