Skip to content

Commit

Permalink
Remove "sliders let you control" text.
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostwords committed Oct 11, 2019
1 parent 712761f commit 65dc4f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/_locales/en_US/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@
"description": ""
},
"popup_instructions": {
"message": "Privacy Badger detected $COUNT$ potential $TRACKER_LINK_START$trackers$TRACKER_LINK_END$ on this page. These sliders let you control how Privacy Badger handles each one. You shouldn't need to adjust the sliders unless something is broken.",
"message": "Privacy Badger detected $COUNT$ potential $TRACKER_LINK_START$trackers$TRACKER_LINK_END$ on this page. You shouldn't need to adjust the sliders unless something is broken.",
"description": "Popup message that shows the number of trackers. This particular message is used when that number is greater than one.",
"placeholders": {
"count": {
Expand All @@ -395,7 +395,7 @@
"description": ""
},
"options_domain_list_one_tracker": {
"message": "Privacy Badger has detected one potential <a target='_blank' tabindex=-1 title='i18n_what_is_a_tracker' class='tooltip' href='https://www.eff.org/privacybadger#faq-What-is-a-third-party-tracker?'>tracking domain</a> so far. The slider lets you control how Privacy Badger handles it.",
"message": "Privacy Badger has detected one potential <a target='_blank' tabindex=-1 title='i18n_what_is_a_tracker' class='tooltip' href='https://www.eff.org/privacybadger#faq-What-is-a-third-party-tracker?'>tracking domain</a> so far.",
"description": "Shown on the Tracking Domains options page tab when Privacy Badger learned of exactly one tracker so far."
},
"tooltip_allow": {
Expand All @@ -407,7 +407,7 @@
"description": "Button in the popup."
},
"popup_instructions_one_tracker": {
"message": "Privacy Badger detected a potential <a target='_blank' title='i18n_what_is_a_tracker' class='tooltip' href='https://www.eff.org/privacybadger#faq-What-is-a-third-party-tracker?'>tracker</a> on this page. The slider lets you control how Privacy Badger handles it. You shouldn't need to adjust the slider unless something is broken.",
"message": "Privacy Badger detected a potential <a target='_blank' title='i18n_what_is_a_tracker' class='tooltip' href='https://www.eff.org/privacybadger#faq-What-is-a-third-party-tracker?'>tracker</a> on this page. You shouldn't need to adjust the slider unless something is broken.",
"description": "Text shown in the popup when there is exactly one tracker on the page."
},
"domain_slider_allow_tooltip": {
Expand All @@ -419,7 +419,7 @@
"description": "Intro page paragraph."
},
"options_domain_list_trackers": {
"message": "Privacy Badger has detected $COUNT$ potential $TRACKER_LINK_START$tracking domains$TRACKER_LINK_END$ so far. These sliders let you control how Privacy Badger handles each tracker.",
"message": "Privacy Badger has detected $COUNT$ potential $TRACKER_LINK_START$tracking domains$TRACKER_LINK_END$ so far.",
"description": "Message under the Tracking Domains tab on the options page. Shown after Privacy Badger learned about more than one tracker.",
"placeholders": {
"count": {
Expand Down
4 changes: 2 additions & 2 deletions tests/selenium/options_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def test_added_multiple_origins_display(self):
# check tracker count
self.assertEqual(
self.driver.find_element_by_id("options_domain_list_trackers").text,
"Privacy Badger has detected 2 potential tracking domains so far. These sliders let you control how Privacy Badger handles each tracker.",
"Privacy Badger has detected 2 potential tracking domains so far.",
"Origin tracker count should be 2 after adding origin"
)

Expand Down Expand Up @@ -243,7 +243,7 @@ def test_reset_data(self):
# make sure only two trackers are displayed now
self.assertEqual(
self.driver.find_element_by_id("options_domain_list_trackers").text,
"Privacy Badger has detected 2 potential tracking domains so far. These sliders let you control how Privacy Badger handles each tracker.",
"Privacy Badger has detected 2 potential tracking domains so far.",
"Origin tracker count should be 2 after clearing and adding origins"
)

Expand Down

0 comments on commit 65dc4f1

Please sign in to comment.