This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 710
/
Copy pathstrings.xml
1014 lines (761 loc) · 64.5 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<resources xmlns:moz="http://mozac.org/tools" xmlns:tools="http://schemas.android.com/tools">
<!-- ####################################################################################### -->
<!-- ## Put only strings into this file that should be translated. Move all other strings ## -->
<!-- ## into a separate file like strings_references.xml ## -->
<!-- ####################################################################################### -->
<!-- Label used for buttons, e.g. in dialogs -->
<string name="action_cancel">Cancel</string>
<!-- Label used for buttons, e.g. in dialogs -->
<string name="action_ok">OK</string>
<string name="action_save">Save</string>
<!-- This text is shown in the URL bar when it's empty -->
<string name="urlbar_hint">Search or enter address</string>
<string name="teaser">Automatic private browsing.\nBrowse. Erase. Repeat.</string>
<!-- "Snackbar" shown after the user has pressed the 'erase' button at the end of a browsing session -->
<string name="feedback_erase">Your browsing history has been erased.</string>
<string name="feedback_erase2">Browsing history cleared</string>
<!-- "Snackbar" shown after the user has pressed the 'erase' button at the end of a custom tab browsing session -->
<string name="feedback_erase_custom_tab">Tab’s browsing history has been erased.</string>
<!-- This label is shown below the URL bar as soon as the user enters text. Clicking the label will perform a search -->
<string name="search_hint">Search for %1$s</string>
<!-- Menu item: Share the currently visible page -->
<string name="menu_share">Share…</string>
<!-- Menu item: Report an issue on the current site -->
<string name="menu_report_site_issue">Report Site Issue</string>
<!-- Menu item: Switch to another browser to open the currently visible page. %1$s will be
replaced with the name of the browser like: "Open in Firefox" or "Open in Chrome". Some
links can be opened by native apps that aren't a browser, e.g. "Open in YouTube" -->
<string name="menu_open_with_default_browser2">Open in %1$s</string>
<!-- Menu item: Switch to another browser to open the currently visible page. This menu item
will be shown if there are multiple browsers and we do not know which one is the default
browser or in case Focus is actually the default browser. Clicking this menu item will show
a screen with multiple browsers (or other apps that can open the current URL) to choose from. -->
<string name="menu_open_with_a_browser2">Open in…</string>
<!-- Menu item: Add the current page as a shortcut to the device's home screen (launcher). -->
<string name="menu_add_to_home_screen">Add to Home screen</string>
<!-- Menu item: Add the current site as a shortcut on the Home screen -->
<string name="menu_add_to_shortcuts">Add to Shortcuts</string>
<!-- Menu item: Remove the current site as a shortcut from the Home screen -->
<string name="menu_remove_from_shortcuts">Remove from Shortcuts</string>
<!-- Menu item: Shows information about features and changes that are new to this version -->
<string name="menu_whats_new">What’s New</string>
<string name="menu_settings">Settings</string>
<string name="menu_about">About</string>
<string name="menu_help">Help</string>
<string name="menu_rights">Your Rights</string>
<!-- Menu item: This is the label for a menu entry that shows how many trackers have been blocked
for the currently loaded website. The number of blocked trackers is shown below this label.
Next to this label is a switch that allows the user to temporarily enable / disable the
blocking of trackers for the current browsing session - for example if the current website
doesn't work correctly with blocked content. -->
<string name="menu_trackers_blocked_title">Trackers blocked</string>
<!-- Menu item: This is the subtitle for the Trackers blocked menu entry that shows how many
trackers have been blocked for the currently loaded website. -->
<string name="menu_trackers_blocked_subtitle">Turning this off may fix some site problems</string>
<!-- Menu item: This is the label for turning off content blocking for the current website. -->
<string name="menu_content_blocking">Content Blocking</string>
<!-- This is the subtitle content blocking toggle -->
<string name="menu_content_blocking_subtitle">Turn off to fix some sites</string>
<!-- This is a small text at the bottom of the menu shown in a "custom tab" for branding purposes.
See https://github.com/mozilla-mobile/focus-android/issues/2106
%1$s will be replaced by the app name (e.g. Firefox Focus) -->
<string name="menu_custom_tab_branding">Powered by %1$s</string>
<!-- This is the title of a dialog that shows all the share targets (apps or contacts) when
sharing an URL. -->
<string name="share_dialog_title">Share via</string>
<!-- While a browsing session is active (in the foreground or background) we will show a notification
so that the user doesn't forget about the website still being open. This text is shown in
the notification. Clicking the notification will have the same effect as clicking the "erase"
button in the application. -->
<string name="notification_erase_text">Erase browsing history</string>
<!-- Notification action to open Focus and resume the current browsing session. -->
<string name="notification_action_open">Open</string>
<!-- Notification action to erase the current browsing session AND switch to Focus (bring it
to the foreground) -->
<string name="notification_action_erase_and_open">Erase and Open</string>
<!-- On Android 7+ users can add a shortcut for erasing the browsing history to the home screen.
This is the label for this shortcut. Android recommends a maximum length of 10 characters. -->
<string name="shortcut_erase_short_label">Erase</string>
<!-- The same as 'shortcut_erase_short_label' but more descriptive. The launcher shows this
instead of the short title when it has enough space. Android recommends a maximum length
of 25 characters. -->
<string name="shortcut_erase_long_label">Erase browsing history</string>
<!-- On Android 7+ users can add a shortcut for erasing the browsing history to the home screen.
This is the label for this shortcut. Android recommends a maximum length of 10 characters. -->
<string name="shortcut_erase_and_open_short_label">Erase & open</string>
<!-- The same as 'shortcut_erase_short_label' but more descriptive. The launcher shows this
instead of the short title when it has enough space. Android recommends a maximum length
of 25 characters.
%1$s will be replaced by the app name (e.g. Firefox Focus) -->
<string name="shortcut_erase_and_open_long_label">Erase and open %1$s</string>
<!-- This is the label of an action we offer when the user selects text in other third-party apps.
Focus is hard coded since we can't use variables in this context.
Do not translate or transliterate Focus.-->
<string name="text_selection_search_action_focus">Search in Focus</string>
<!-- This is the label of an action we offer when the user selects text in other third-party apps.
Klar is hard coded since we can't use variables in this context.
Do not translate or transliterate Klar.-->
<string name="text_selection_search_action_klar">Search in Klar</string>
<!-- This is the label of an action we offer when the user selects text in other third-party apps.
Focus Beta is hard coded since we can't use variables in this context.
Do not translate or transliterate Focus Beta.-->
<string name="text_selection_search_action_focus_beta">Search in Focus Beta</string>
<!-- This is the label of an action we offer when the user selects text in other third-party apps.
Focus Nightly is hard coded since we can't use variables in this context.
Do not translate or transliterate Focus Nightly.-->
<string name="text_selection_search_action_focus_nightly">Search in Focus Nightly</string>
<!-- Content of about focus. Argument 1 is the app name (Firefox Focus/Firefox Klar/etc).
Argument 2 is the url for the learn-more link. -->
<string name="about_content"><![CDATA[<p>%1$s puts you in control.</p>
<p>Use it as a private browser:
<ul>
<li>Search and browse right in the app</li>
<li>Block trackers (or update settings to allow trackers)</li>
<li>Erase to delete cookies as well as search and browsing history</li>
</ul>
</p>
<p>%1$s is produced by Mozilla. Our mission is to foster a healthy, open Internet.<br/>
<a href="%2$s">Learn more</a></p>]]></string>
<!-- Header for the Privacy and Security settings menu -->
<string name="preference_privacy_and_security_header">Privacy & Security</string>
<!-- Preference summary for settings related to privacy and security -->
<string name="preference_privacy_and_security_summary">Tracking, cookies, data choices</string>
<!-- Preference category description for settings related to search, set default
and autocomplete are settings a user can find and change inside the "search" settings screen -->
<string name="preference_search_summary">Set default, autocomplete</string>
<!-- Preference category description for settings screen for settings related to Mozilla -->
<!-- About the app and help are links that are inside this menu -->
<!-- %1$s will be replaced by the app name (e.g. Firefox Focus) -->
<string name="preference_mozilla_summary">About %1$s, help</string>
<!-- Preference category for ad blocking and enhanced tracking protection settings -->
<string name="preference_category_tracking_protection3">Enhanced Tracking Protection</string>
<!-- Preference category for settings related to controlling web content -->
<string name="preference_category_web_content">Web Content</string>
<!-- Preference category: stealth settings for while switching apps -->
<string name="preference_category_switching_apps">Switching Apps</string>
<!-- Preference category for General Settings -->
<string name="preference_category_general">General</string>
<!-- Preference summary for General Settings category; the two things users can find in this category -->
<string name="preference_general_summary2">Default browser, language</string>
<!-- Preference category for settings about sending usage data -->
<string name="preference_category_data_collection_use">Data Collection & Use</string>
<string name="preference_category_search">Search</string>
<!-- Title of "switch" preference that enables/disables search suggestions -->
<string name="preference_show_search_suggestions">Get search suggestions</string>
<!-- Description of the preference that enables/disables search suggestions
%1$s will be replaced by the app name (e.g. Firefox Focus) -->
<string name="preference_show_search_suggestions_summary">%1$s will send what you type in the address bar to your search engine</string>
<!-- This label is shown below the name of the default search engine in settings -->
<string name="preference_search_engine_default">Default</string>
<!-- This label is shown above the currently selected search engine in settings -->
<string name="preference_search_engine_label">Search engine</string>
<!-- Text that is shown below a "switch" preference that is enabled. -->
<string name="preference_state_on">On</string>
<!-- Text that is shown below a "switch" preference that is disabled. -->
<string name="preference_state_off">Off</string>
<!-- Item in settings that will open a new preference screen for configuring the URL autocomplete behavior. -->
<string name="preference_subitem_autocomplete">URL Autocomplete</string>
<!-- Title of "switch" preference that enables/disables autocomplete for the default list -->
<string name="preference_switch_autocomplete_topsites">For top sites</string>
<!-- Summary for the toggle to enable autocomplete for the topsites list
%s is a placeholder for the app name (e.g. Firefox Focus)-->
<string name="preference_autocomplete_topsite_summary2">Enable to have %s autocomplete over 450 popular URLs in the address bar.</string>
<!-- Title of "switch" preference that enables/disables autocomplete for the user-defined list -->
<string name="preference_switch_autocomplete_user_list">For sites you add</string>
<!-- Summary for the toggle to enable autocomplete for the user-defined list
%s is a placeholder for the app name (e.g. Firefox Focus)-->
<string name="preference_autocomplete_user_list_summary2">Enable to have %s autocomplete your favorite URLs.</string>
<!-- Preference category: Manage (user-defined) sites -->
<string name="preference_category_autocomplete_manage_sites">Manage sites</string>
<!-- Item in autocomplete settings that will open a new preference screen for adding and removing URLs to the user-defined list-->
<string name="preference_autocomplete_subitem_manage_sites">Manage sites</string>
<!-- Action at the bottom of the list of custom autocomplete URLs that will open a new screen to add a new URL to the list. -->
<string name="preference_autocomplete_action_add">+ Add custom URL</string>
<!-- Explanation text above the list of custom autocomplete URLs. -->
<string name="preference_autocomplete_explanation_text">Your autocomplete list:</string>
<!-- Action at the bottom of the list of custom autocomplete URLs that will open a new screen to add a new URL to the list. -->
<string name="preference_autocomplete_action_add2">Add URL</string>
<!-- Title of the screen for adding custom autocomplete URLs. -->
<string name="preference_autocomplete_title_add">Add custom URL</string>
<!-- Label for the button to quick add custom autocomplete URLs. -->
<string name="custom_autocomplete_quick_add">Add custom URL</string>
<!-- Label for the button to quick add the current URL to the custom autocomplete list -->
<string name="add_custom_autocomplete_label">Add link to autocomplete</string>
<!-- Preference category for settings about cookies and site data -->
<string name="preference_category_cookies">Cookies and Site Data</string>
<!-- Preference category for settings about data choices -->
<string name="preference_category_data_choices">Data Choices</string>
<!-- Title of the screen for removing custom autocomplete URLs. -->
<string name="preference_autocomplete_title_remove">Remove custom URLs</string>
<!-- A link to SUMO at autocomplete settings. -->
<string name="preference_autocomplete_learn_more">Learn more</string>
<!-- Preference summary: Custom (user-defined) autocomplete URLs. -->
<string name="preference_autocomplete_custom_summary">Add and manage custom autocomplete URLs.</string>
<!-- Label for the "custom autocomplete URL" input field -->
<string name="preference_autocomplete_add_title">URL to add</string>
<!-- "Hint" text for the "custom autocomplete URL" input field. Shown when the field is empty. -->
<string name="preference_autocomplete_add_hint">Paste or enter URL</string>
<!-- Example how a custom domain autocomplete URL be added (e.g. without http://) -->
<string name="preference_autocomplete_add_example2">Example: mozilla.org</string>
<!-- To be removed once the new hint has been translated -->
<string name="preference_autocomplete_add_example">Example: example.com</string>
<!-- Confirmation "snackbar" shown after a new custom autocomplete URL has been added. -->
<string name="preference_autocomplete_add_confirmation">New custom URL added.</string>
<!-- Menu item to remove existing autocomplete URLs. -->
<string name="preference_autocomplete_menu_remove">Remove</string>
<!-- Content description (not visible, for screen readers etc.): Button that will delete all selected custom autocomplete URLs. -->
<string name="preference_autocomplete_action_remove_content_description">Remove</string>
<!-- Error message shown if the entered custom autocomplete URL is not valid or empty. -->
<string name="preference_autocomplete_add_error">Double-check the URL you entered.</string>
<string name="preference_language">Language</string>
<!-- This is shown when the user hasn't set a focus specific language, i.e. when Focus
is using the system default language. -->
<string name="preference_language_systemdefault">System default</string>
<string name="preference_category_privacy">Privacy</string>
<string name="preference_privacy_block_ads">Block ad trackers</string>
<string name="preference_privacy_block_ads_summary">Some ads track site visits, even if you don’t click the ads</string>
<string name="preference_privacy_block_analytics">Block analytic trackers</string>
<string name="preference_privacy_block_analytics_summary">Used to collect, analyze and measure activities like tapping and scrolling</string>
<string name="preference_privacy_block_social">Block social trackers</string>
<string name="preference_privacy_block_social_summary">Embedded on sites to track your visits and to display functionality like share buttons</string>
<string name="preference_privacy_block_content">Block other content trackers</string>
<string name="preference_privacy_block_content_summary2">Enabling may cause some pages to behave unexpectedly</string>
<string name="preference_privacy_category_cookies">Block cookies</string>
<!-- Three options for Cookie blocking. Yes (All cookies Blocked), Block 3rd-party cookies
only (Only 3rd-party Cookies Blocked), No (No cookies blocked) -->
<string name="preference_privacy_should_block_cookies_no_option2">No thanks</string>
<string name="preference_privacy_should_block_cookies_third_party_tracker_cookies_option">Block 3rd-party tracker cookies only</string>
<string name="preference_privacy_should_block_cookies_third_party_only_option">Block 3rd-party cookies only</string>
<string name="preference_privacy_should_block_cookies_cross_site_option">Block cross-site cookies</string>
<string name="preference_privacy_should_block_cookies_yes_option2">Yes please</string>
<!-- Preference Title: Biometrics can be used to unlock Focus if the previous session's data was not erased by the user. -->
<string name="preference_security_biometric">Use fingerprint to unlock app</string>
<!-- Preference Summary: Biometrics (iris scan, fingerprint, or facial scan) can be used to unlock Focus if the app had a URL
open when the app was last run to ensure that only the phone's owner can view a previous session.
%s will be replaced by the app name (e.g. Firefox Focus)
Shortcuts is a feature that allows the user to pin his favorite websites to Focus home screen so he can quickly access them-->
<string name="preference_security_biometric_summary2">Unlock using fingerprint if you’ve added Shortcuts or when a website is already open in %s.</string>
<!-- Preference Title: Secure Mode is a setting that prevents the app's content to show up in the "recent apps" screen
and prevents the user from taking screenshots or casting the app to other displays. -->
<string name="preference_privacy_secure_mode">Stealth</string>
<!-- Preference Summary: Stealth mode (previously "Secure mode") is a setting that prevents the
app's content (in our case especially the content of webpages) to show up in the "recent apps"
screen. Additionally Android will prevent the user from taking screenshots or casting the app
to other displays. -->
<string name="preference_privacy_stealth_summary">Hide webpages when switching apps and block taking screenshots.</string>
<string name="preference_category_security">Security</string>
<string name="preference_category_performance">Performance</string>
<string name="preference_performance_block_webfonts">Block web fonts</string>
<!-- This text is shown below the setting for disabling web fonts. Some websites use icons/images from a font and those do not show up if fonts are blocked.-->
<string name="preference_performance_block_webfonts_summary">May result in missing icons or images</string>
<string name="preference_performance_block_javascript">Block JavaScript</string>
<!-- This text is shown below setting for disabling JavaScript. Some websites may not work correctly when JavaScript is disabled -->
<string name="preference_performance_block_javascript_summary">Pages may load faster, but may also behave unexpectedly</string>
<!-- This preference does not set Focus as the default browser but instead links to Android's
"default apps" settings screen or if not supported by this Android version to a SUMO page describing
how to set Focus as a default browser.
%1$s will be replaced by the app name (e.g. Firefox Focus) -->
<string name="preference_default_browser2">Make %1$s default browser</string>
<string name="preference_category_mozilla">Mozilla</string>
<string name="preference_mozilla_telemetry2">Send usage data</string>
<!-- A link to SUMO at the end of the summary (preference_mozilla_telemetry_summary2) of the "Send anonymous usage data" setting. -->
<string name="preference_mozilla_telemetry_summary">Learn more</string>
<!-- %1$s will be replaced with the name of the app (e.g. Firefox Focus) -->
<string name="preference_mozilla_telemetry_summary2">Mozilla strives to collect only what we need to provide and improve %1$s for everyone.</string>
<!-- In-app link (in settings) to Focus privacy notice. -->
<string name="preference_privacy_notice">Privacy Notice</string>
<!-- Item in Preferences that shows the about page. Parameter 1 is the app name, i.e. Firefox Focus/Firefox Klar. -->
<string name="preference_about">About %1$s</string>
<!-- Header for the list of installed search engines -->
<string name="preference_search_installed_search_engines">Installed search engines</string>
<!-- Header for the list of installed search engines -->
<string name="preference_choose_search_engine">Choose search engine</string>
<!-- Action for restoring the default list of search engines -->
<string name="preference_search_restore">Restore default search engines</string>
<!-- Action for adding an additional search engine to the list.
The "+" is used to emphasize that this is an "add" action -->
<string name="preference_search_add2">+ Add another search engine</string>
<string name="preference_search_remove_title">Remove search engines</string>
<string name="preference_search_remove">Remove</string>
<!-- Action for dding an additional search engine to the list -->
<string name="preference_search_add3">Add another search engine</string>
<!-- Explanation text above the list of search engines-->
<string name="preference_select_preferred_engine">Select your preferred engine:</string>
<!-- Clickable action text that shows when user long-presses on a search engine search field (this is similar to paste or copy when long-pressing a text field) -->
<string name="action_option_add_search_engine">Add search engine</string>
<string name="search_add_manually_name_hint">Search engine name</string>
<string name="search_add_manually_string">Search string to use</string>
<string name="search_add_manually_save">Save</string>
<!-- Example of search engine url -->
<string name="search_add_manually_example">Example: example.com/search/?q=%s</string>
<string name="search_add_confirmation">New search engine added.</string>
<string name="search_add_error_empty_name">Enter search engine name</string>
<string name="search_add_error_duplicate_name">An installed search engine is already using that name.</string>
<string name="search_add_error_empty_search">Enter search string</string>
<string name="search_add_error_format">Check that search string matches Example format</string>
<!-- Content description (not visible, for screen readers etc.): Clear text in URL bar -->
<string name="content_description_clear_input">Clear input</string>
<!-- Content description (not visible, for screen readers etc.): Clicking on the website overlay
while in typing mode will dismiss and go back to the browser. This text will be read when the
overlay if focused. See https://github.com/mozilla-mobile/focus-android/issues/50 -->
<string name="content_description_dismiss_input">Dismiss</string>
<!-- Content description (not visible, for screen readers etc.): Erase button: Erase the browsing
history and go back to the home screen. -->
<string name="content_description_erase">Erase browsing history</string>
<!-- If the user has multiple tabs open we will show an addition "floating action button" showing how many tabs are open.
This string is not displayed and read only by screenreaders. %1$s will be replaced with the number of open tabs. This
button will only be visible when there is more than one tab open (>= 2). -->
<string name="content_description_tab_counter">Tabs open: %1$s</string>
<!-- Content description (not visible, for screen readers etc.): Lock icon showed in the URL bar for
https pages.. -->
<string name="content_description_lock">Secure connection</string>
<!-- This text is not visible. Instead it will be read by the accessibility service once we start
loading a website -->
<string name="accessibility_announcement_loading">Loading</string>
<!-- This text is not visible. Instead it will be read by the accessibility service once we
finished loading a website -->
<string name="accessibility_announcement_loading_finished">Website loaded</string>
<!-- Content description (not visible, for screen readers etc.): "Three dot" menu button. -->
<string name="content_description_menu">More options</string>
<!-- Content description (not visible, for screen readers etc.): "Three dot" menu button used
on home screen-->
<string name="indicator_content_description_menu">More options button</string>
<!-- Content description (not visible, for screen readers etc.): Navigate forward (browsing history) -->
<string name="content_description_forward">Navigate forward</string>
<!-- Content description (not visible, for screen readers etc.): Reload current website -->
<string name="content_description_reload">Reload website</string>
<!-- Content description (not visible, for screen readers etc.): Navigate back (browsing history) -->
<string name="content_description_back">Navigate back</string>
<!-- Content description (not visible, for screen readers etc.): Stop loading the current website. This button will turn into the refresh button once loading has been completed (see content_description_reload) -->
<string name="content_description_stop">Stop loading website</string>
<!-- Content description (not visible, for screen readers etc.): Custom Tab exit button - closes the custom tab and returns to the previous app. -->
<string name="content_description_customtab_exit">Return to previous app</string>
<!-- Content description (not visible, for screen readers etc.): This is the description for the ImageView in the menu that displays
the number of trackers blocked for the current session -->
<string name="content_description_trackers_blocked">Number of trackers blocked</string>
<!-- Content description (not visible, for screen readers etc.): This is the description for the switch in the menu that temporarily disables/enables
content blocking for the current session -->
<string name="content_description_blocking_switch">Block trackers</string>
<string name="your_rights">Your Rights</string>
<string name="external_app_prompt_title">Open link in another app</string>
<!-- This string is shown when the user has clicked a link that needs to be opened in a different app.
Argument 2 is the external app name, argument 1 is our name (i.e. Firefox Focus, or Firefox Klar). -->
<string name="external_app_prompt">You can leave %1$s to open this link in %2$s.</string>
<!-- This text is the title of a dialog shown if no app could be found for a custom link protocol. -->
<string name="external_app_prompt_no_app_title">Find an app that can open link</string>
<!-- This text is shown in a dialog if no app could be found for a custom link protocol. %1$s is the name of the app (i.e. Firefox Focus) and %2$s is the name of
the app store installed on the device (usually that's Google Play). -->
<string name="external_app_prompt_no_app">None of the apps on your device are able to open this link. You can leave %1$s to search %2$s for an app that can.</string>
<!-- This label is shown above a list of apps that can be used to open a given link -->
<string name="external_multiple_apps_matched_exit">Exit Private Browsing?</string>
<!-- Snackbar that will be displayed after a download has completed. %1$s will be replaced with the file name. -->
<string name="download_snackbar_finished">%1$s finished</string>
<!-- Snackbar action to immediately open the successfully downloaded file. -->
<string name="download_snackbar_open">Open</string>
<string name="error_hostLookup_title">Server not found</string>
<!-- Content description (not visible, for screen readers etc.): This is the description for the close button from the new onboarding flow screen one and two -->
<string name="onboarding_close_button_content_description">Close</string>
<!-- New Onboarding flow first screen title -->
<!-- %1$s will be replaced by the app name and build variant(e.g. Firefox Focus, Firefox Klar Nightly) -->
<string name="onboarding_first_screen_title">Welcome to %1$s</string>
<!-- New Onboarding flow first screen subtitle the one that appears under title -->
<string name="onboarding_first_screen_subtitle">Fast. Private. No distractions.</string>
<!-- New Onboarding flow first screen button label-->
<string name="onboarding_first_screen_button_text">Get started</string>
<!-- Onboarding second screen: Title -->
<!-- %1$s will be replaced by the app short name(Focus) -->
<string name="onboarding_second_screen_title">%1$s isn’t like other browsers</string>
<!-- New Onboarding flow second screen subtitle the one that appears under title -->
<string name="onboarding_second_screen_subtitle_one">We clear your history when you close the app for extra privacy.</string>
<!-- New Onboarding flow second screen subtitle two the one that appears under subtitle one -->
<!-- %1$s will be replaced by the app short name(Focus) -->
<string name="onboarding_second_screen_subtitle_two">Make %1$s your default to protect your data with every link you open.</string>
<!-- New Onboarding flow second screen make Focus default browser button label-->
<string name="onboarding_second_screen_default_browser_button_text">Set as default browser</string>
<!-- New Onboarding flow second screen skip onboarding button label-->
<string name="onboarding_second_screen_skip_button_text">Skip</string>
<!-- First run tour (Default browser): Title -->
<string name="firstrun_defaultbrowser_title">Power up your privacy</string>
<!-- First run tour (Default browser): Text. -->
<string name="firstrun_defaultbrowser_text2">Take private browsing to the next level. Block ads and other content that can track you across sites and bog down page load times.</string>
<!-- First run tour (Search): Title -->
<string name="firstrun_search_title">Your search, your way</string>
<!-- First run tour (Search): Text -->
<string name="firstrun_search_text">Searching for something different? Choose another default search engine in Settings.</string>
<!-- First run tour (Shortcut): Title -->
<string name="firstrun_shortcut_title">Add shortcuts to your home screen</string>
<!-- First run tour (Shortcut): Text. %1$s will be replaced with the name of the app (e.g. Firefox Focus) -->
<string name="firstrun_shortcut_text">Return to your favorite sites in %1$s quickly. Just select \"Add to Home screen\" from the %1$s menu.</string>
<!-- First run tour (Privacy): Title -->
<string name="firstrun_privacy_title">Make privacy a habit</string>
<!-- First run tour (Privacy): Text. %1$s will be replaced with the name of the app (e.g. Firefox Focus) -->
<string name="firstrun_privacy_text">Set %1$s as your default browser and get the benefits of private browsing when you open webpages from other apps.</string>
<string name="firstrun_close_button">OK, got it!</string>
<string name="firstrun_skip_button">Skip</string>
<string name="firstrun_next_button">Next</string>
<!-- Indicator that no trackers are being blocked because content blocking is disabled; normally shows the number of blocked trackers -->
<string name="content_blocking_disabled">-</string>
<!-- Label of the action that will add the current website to the home screen (shown in the confirmation dialog). -->
<string name="dialog_addtohomescreen_action_add">Add</string>
<!-- Label of the action that will add the current website to the home screen (shown in the confirmation dialog). -->
<string name="dialog_addtohomescreen_action_yes">YES</string>
<!-- Label of the action that will close the dialog and not add anything to the home screen (shown in the confirmation dialog). -->
<string name="dialog_addtohomescreen_action_cancel">Cancel</string>
<!-- Label of the action that will close the dialog and not add anything to the home screen (shown in the confirmation dialog). -->
<string name="dialog_addtohomescreen_action_no">NO</string>
<!-- When enhanced tracking protection is disabled for the current session then we will show this warning in the "Add to home screen" dialog to
let the user know that the shortcut will always be opened with enhanced tracking protection disabled. -->
<string name="dialog_addtohomescreen_tracking_protection2">Shortcut will open with Enhanced Tracking Protection disabled</string>
<!-- The user visible name of the "notification channel" (Android 8+ feature) for the ongoing notification shown while a browsing session is active.
The recommended maximum length is 40 characters; the value may be truncated if it is too long.
* To understand what notification channels are, see: https://www.androidcentral.com/notification-channels
* To see how this string will look like in Android's UI, see: https://github.com/mozilla-mobile/focus-android/issues/863#issuecomment-324105723
-->
<string name="notification_browsing_session_channel_name">Private browsing session</string>
<!-- The user visible description of the "notification channel" (Android 8+ feature) for the ongoing notification shown while a browsing session is active.
The recommended maximum length is 300 characters; the value may be truncated if it is too long. %1$s will be replaced with the name of the app (e.g. Firefox Focus).
* To understand what notification channels are, see: https://www.androidcentral.com/notification-channels
* To see how this string will look like in Android's UI, see: https://github.com/mozilla-mobile/focus-android/issues/863#issuecomment-324105723
-->
<string name="notification_browsing_session_channel_description">Notifications let you erase your %1$s session with a tap. You don’t need to open the app or see what’s running in your browser.</string>
<!-- Label for a button in the "tabs tray" to erase the browsing history (closes all tabs and removes associated data). -->
<string name="tabs_tray_action_erase">Erase browsing history</string>
<!-- If the user decides to open the current page in another browser and if Firefox is not installed then we show this
item in the list of browsers. Clicking it will open the app store installed on the device (usually that's Google Play). -->
<string name="download_firefox">Download Firefox</string>
<!-- Text shown in the "Your rights" screen.
%1$s will be replaced with the name of the app (e.g. Firefox Focus)-->
<string name="your_rights_content1"><![CDATA[%1$s is free and open source software made by Mozilla and other contributors.]]></string>
<!-- Text shown in the "Your rights" screen.
%1$s will be replaced with the name of the app (e.g. Firefox Focus)
%2$s will be replaced with a URL linking to the MPL (e.g. https://www.mozilla.org/en-US/MPL/) -->
<string name="your_rights_content2"><![CDATA[%1$s is made available to you under the terms of the <a href="%2$s">Mozilla Public License</a> and other open source licenses.]]></string>
<!-- Text shown in the "Your rights" screen.
%1$s will be replaced with the name of the app (e.g. Firefox Focus)
%2$s will be replaced with a URL linking to the trademark policy (e.g. https://www.mozilla.org/foundation/trademarks/policy/) -->
<string name="your_rights_content3"><![CDATA[You are not granted any rights or licenses to the trademarks of the Mozilla Foundation or any party, including the Mozilla, Firefox or %1$s names or logos. Additional information may be found <a href="%2$s">here</a>.]]></string>
<!-- Text shown in the "Your rights" screen.
%1$s will be replaced with the name of the app (e.g. Firefox Focus)
%2$s will be replaced with a URL linking to the list of licenses used by the dependencies.-->
<string name="your_rights_content4"><![CDATA[Additional source code for %1$s is available under various other free and open source <a href="%2$s">licenses</a>.]]></string>
<!-- Text shown in the "Your rights" screen.
%1$s will be replaced with the name of the app (e.g. Firefox Focus)
%2$s will be replaced with a URL linking to the GPL
%3$s will be replaced with a URL linking to the tracking protection wiki page (e.g. https://wiki.mozilla.org/Security/Tracking_protection#Lists) -->
<string name="your_rights_content5"><![CDATA[%1$s also uses blocklists provided by Disconnect, Inc. as separate and independent works under the <a href="%2$s">GNU General Public License v3</a>, and available <a href="%3$s">here</a>.]]></string>
<!-- Text shown in prompts for GeckoView -->
<string name="gv_prompt_username_hint">Username</string>
<string name="gv_prompt_password_hint">Password</string>
<string name="gv_prompt_clear">Clear</string>
<!-- Text shown in Security Information Popup -->
<!-- Text to denote secure or insecure connection -->
<string name="security_popup_secure_connection">Secure Connection</string>
<string name="security_popup_insecure_connection">Insecure Connection</string>
<!-- %1$s will be replaced with organization that granted the SSL certificate -->
<string name="security_popup_security_verified">Verified by: %1$s</string>
<!-- Content Description of Security Icon in toolbar -->
<string name="site_security_icon_content_description">Site Security</string>
<string name="preference_autocomplete_duplicate_url_error">URL already exists</string>
<!-- Label for the Find in page button -->
<string name="find_in_page">Find in Page</string>
<!-- Watermark/Hint for the find in page input field -->
<string name="find_in_page_input">Find in page</string>
<!-- String to show the number of results found in the page and the
position the user is at. The first argument is the position, the second argument is the total -->
<string name="find_in_page_result">%1$d/%2$d</string>
<!-- String to be read by the accessibility service presenting the number of results found in the page
and the position the user is at. The first argument is the position, the second argument is the total -->
<string name="accessibility_find_in_page_result">%1$d out of %2$d</string>
<!-- String to be read by the accessibility service when focusing the next result button -->
<string name="accessibility_next_result">Find next result</string>
<!-- String to be read by the accessibility service when focusing the previous result button -->
<string name="accessibility_previous_result">Find previous result</string>
<!-- String to be read by the accessibility service when focusing the dismiss button in the "find in page" UI -->
<string name="accessibility_dismiss_find_in_page">Dismiss find in page</string>
<!-- Checkbox menu item text to request desktop site -->
<string name="preference_performance_request_desktop_site">Request desktop site</string>
<!-- Checkbox menu item text to request desktop site -->
<string name="preference_performance_request_desktop_site2">Desktop site</string>
<!-- Displayed after a user long presses on the URL in a custom tab to copy the URL -->
<string name="custom_tab_copy_url_action">URL copied</string>
<!-- Description of what a user may find in the Advanced Setting category, used for debugging -->
<string name="preference_advanced_summary">Developer tools</string>
<!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Open links in apps</string>
<!-- Title of Advanced Setting category -->
<string name="preference_category_advanced">Advanced</string>
<!-- Preference for site permissions -->
<string name="preference_site_permissions">Site permissions</string>
<!-- Preference for cookie banner. The name of the item from settings screen and the title of the cookie banner screen. -->
<string name="preferences_cookie_banner">Cookie Banner Reduction</string>
<!-- Preference summary for the cookie banner. If the cookie banner option is not disabled. -->
<string name="preferences_cookie_banner_summary_on">On</string>
<!-- Preference summary for the cookie banner. If the cookie banner option is disabled. -->
<string name="preferences_cookie_banner_summary_off">Off</string>
<!-- Title preference inside Cookie banner reduction screen. Here you can set the cookie banner option to disabled or reject_all. -->
<string name="cookie_banner_reject_all_option_title">Cookie Banner Reduction</string>
<!-- Preference summary inside Cookie banner reduction screen. Here you can set the cookie banner option to disabled or reject_all. -->
<string name="cookie_banner_reject_all_option_summary">See fewer banners by automatically rejecting cookie requests, when possible.</string>
<!-- Checkbox Preference title inside Cookie banner reduction screen. Here you can set the cookie banner option to reject_or_accept_all or reject_all. -->
<string name="cookie_banner_further_reduce_option_title">Further reduce cookie banners</string>
<!-- Checkbox Preference summary inside Cookie banner reduction screen. Here you can set the cookie banner option to reject_or_accept_all or reject_all. -->
<string name="cookie_banner_further_reduce_option_summary">Cookie banner requests will be accepted to dismiss more banners.</string>
<!-- Preference for removing cookie/consent banners from sites automatically, this is shown as part of the protections panel with the tracking protection toggle. -->-->
<string name="cookie_banner_exception_item_title">Cookie Banner Reduction</string>
<!-- Text for indicating cookie banner handling is on this site, this is shown as part of the protections panel with the tracking protection toggle. -->
<string name="cookie_banner_exception_item_description_state_on">ON for this site</string>
<!-- Text for indicating cookie banner handling is off this site, this is shown as part of the protections panel with the tracking protection toggle. -->
<string name="cookie_banner_exception_item_description_state_off">OFF for this site</string>
<!-- Preference for removing cookie/consent banners from sites automatically, this is shown when the user enters in details after he clicks on the item from protection panel. -->
<string name="cookie_banner_exception_panel_switch_title">Cookie Banner Reduction</string>
<!-- Text for indicating cookie banner handling is off this site, this is shown when the user enters in details after he clicks on the item from protection panel. -->
<string name="cookie_banner_exception_panel_switch_state_off">OFF for this site</string>
<!-- Text for indicating cookie banner handling is on this site, this is shown when the user enters in details after he clicks on the item from protection panel. -->
<string name="cookie_banner_exception_panel_switch_state_on">ON for this site</string>
<!-- Title text for a detail explanation indicating cookie banner handling is on this site, this is shown as part of the cookie banner panel in the toolbar. The first parameter is a shortened URL of the current site. -->
<string name="cookie_banner_exception_panel_title_state_on_for_site">Turn on Cookie Banner Reduction for %1$s?</string>
<!-- Title text for a detail explanation indicating cookie banner handling is off this site, this is shown as part of the cookie banner panel in the toolbar. The first parameter is a shortened URL of the current site. -->
<string name="cookie_banner_exception_panel_title_state_off_for_site">Turn off Cookie Banner Reduction for %1$s?</string>
<!-- Long text for a detail explanation indicating what will happen if cookie banner handling is on for a site, this is shown as part of the cookie banner panel in the toolbar. The placeholder will be updated with the app name. -->
<string name="cookie_banner_exception_panel_description_state_on_for_site">%1$s will clear this site’s cookies and refresh the page. Clearing all cookies may sign you out or empty shopping carts.</string>
<!-- Long text for a detail explanation indicating what will happen if cookie banner handling is off for a site, this is shown as part of the cookie banner panel in the toolbar. The placeholder will be updated with the app name. -->
<string name="cookie_banner_exception_panel_description_state_off_for_site">%1$s can try to automatically reject cookie requests. If a reject option isn’t available, %1$s may accept all cookies to dismiss the banner.</string>
<!-- Preference for autoplay -->
<string name="preference_autoplay">Autoplay</string>
<!-- Heading for the instructions to allow a permission -->
<string name="phone_feature_blocked_intro">To allow it:</string>
<!-- First step for the allowing a permission -->
<string name="phone_feature_blocked_step_settings">1. Go to Android Settings</string>
<!-- Second step for the allowing a permission -->
<string name="phone_feature_blocked_step_permissions"><![CDATA[2. Tap <b>Permissions</b>]]></string>
<!-- Button label that take the user to the Android App setting -->
<string name="phone_feature_go_to_settings">Go to Settings</string>
<!-- Third step for allowing a permission. The placeholder will be updated by, for example, "Camera" -->
<string name="phone_feature_blocked_step_feature"><![CDATA[3. Toggle <b>%1$s</b> to ON]]></string>
<!-- Preference for altering the camera access for all websites -->
<string name="preference_phone_feature_camera">Camera</string>
<!-- Preference for altering the microphone access for all websites -->
<string name="preference_phone_feature_microphone">Microphone</string>
<!-- Preference for altering the location access for all websites -->
<string name="preference_phone_feature_location">Location</string>
<!-- Preference for altering the notification access for all websites -->
<string name="preference_phone_feature_notification">Notification</string>
<!-- Preference for altering the EME access for all websites -->
<string name="preference_phone_feature_media_key_system_access">DRM-controlled content</string>
<!-- Label that indicates that a permission must be asked always -->
<string name="preference_option_phone_feature_ask_to_allow">Ask to allow</string>
<!-- Label that indicates that a permission must be blocked -->
<string name="preference_option_phone_feature_blocked">Blocked</string>
<!-- Label that indicates that a permission must be allowed -->
<string name="preference_option_phone_feature_allowed">Allowed</string>
<!--Label that indicates a permission is by the Android OS-->
<string name="phone_feature_blocked_by_android">Blocked by Android</string>
<!-- Preference for allow autoplay audio and video-->
<string name="preference_allow_audio_video_autoplay">Allow audio and video</string>
<!-- Preference for block autoplay audio only-->
<string name="preference_block_autoplay_audio_only">Block audio only</string>
<!-- Preference summary for block autoplay audio only-->
<string name="preference_block_autoplay_audio_only_summary">Recommended</string>
<!-- Preference for block autoplay audio and video-->
<string name="preference_block_autoplay_audio_video">Block audio and video</string>
<!-- Preference for studies -->
<string name="preference_studies">Studies</string>
<!-- Preference for studies summary-->
<string name="preference_studies_summary">Firefox may install and run studies from time to time.</string>
<!-- Learn more link for studies, links to an article for more information about studies. -->
<string name="studies_learn_more">Learn more</string>
<!-- Dialog message shown when some changes are made on studies -->
<string name="studies_restart_app">The application will quit to apply changes</string>
<!-- Title of the remove studies button -->
<string name="studies_remove">Remove</string>
<!-- Title of the active section on the studies list -->
<string name="studies_active">Active</string>
<!-- Title of the completed section on the studies list -->
<string name="studies_completed">Completed</string>
<!-- Preference to enable remote debugging of the app via USB or Wi-Fi -->
<string name="preference_remote_debugging">Remote debugging via USB/Wi-Fi</string>
<!-- Text Button for show biometric prompt -->
<string name="show_biometric_button_text">Unlock</string>
<!-- Title text for biometric prompt pop-up -->
<string name="biometric_prompt_title">Confirm Using Your Fingerprint</string>
<!-- Subtitle text for biometric prompt pop-up -->
<string name="biometric_prompt_subtitle">You can use your fingerprint to continue your current app session.</string>
<!-- Button for the fingerprint authentication dialog box that is shown to the user when sharing a link to the app
while the user has biometric authentication enabled. When pressed, the user's previous session is cleared, and the shared link is opened. -->
<string name="biometric_auth_open_link_new_session">Open Link in New Session</string>
<!-- Description for the fingerprint authentication image. Used for accessibility purposes. -->
<string name="biometric_auth_image_description">Fingerprint icon</string>
<!-- Error text displayed when the user's fingerprint cannot be recognized upon re-entering the app.
This is displayed during the authentication flow as the app launches. -->
<string name="biometric_auth_not_recognized_error">Fingerprint not recognized. Try again.</string>
<!-- Error text displayed when the user's fingerprint moved too quickly upon re-entering the app
This is displayed during the authentication flow as the app launches.-->
<string name="biometric_auth_moved_too_quickly">Finger moved too fast. Try again.</string>
<!-- Title for the prompt to enable search suggestions -->
<string name="enable_search_suggestion_title2">Show search suggestions?</string>
<!-- Description for the prompt to enable search suggestions
%1$s will be replaced by the app name (e.g. Firefox Focus) -->
<string name="enable_search_suggestion_description"> To get suggestions, %1$s needs to send what you type in the address bar to the search engine.</string>
<!-- Label used for the "NO button" for the prompt to enable search suggestions -->
<string name="enable_search_suggestions_no">No</string>
<!-- Label used for the "YES button" for the prompt to enable search suggestions -->
<string name="enable_search_suggestions_yes">Yes</string>
<!-- Message displayed when using a search engine that doesn't provide suggestions -->
<string name="no_suggestions_message">Some search engines cannot show suggestions.</string>
<!-- Button to dismiss the message displayed when using a search engine that doesn't provide suggestions-->
<string name="dismiss_no_suggestions_prompt_button">Dismiss</string>
<!-- Tips displayed on the home view -->
<!-- Tip displayed on home view explaining how to disable tracking protection
The new line here must be kept as the second half of the string is clickable for the user. -->
<string name="tip_disable_tracking_protection">Site behaving unexpectedly?\n
Try turning off Tracking Protection</string>
<!-- Tip displayed on home view explaining how to add sites to homescreen
Argument 1 will be replaced with a line break in the application.-->
<string name="tip_add_to_homescreen"><![CDATA[Get one-tap access to sites you use most%1$s Menu > Add to Home screen]]></string>
<!-- Tip displayed on home view explaining how to make Focus the default browser
Argument 1 is the app name (Firefox Focus/Firefox Klar/etc).
The new line here must be kept as the second half of the string is clickable for the user. -->
<string name="tip_set_default_browser">Open every link in %1$s\n
Set %1$s as default browser
</string>
<!-- Tip displayed on home view explaining how to add a custom autocomplete URL
The new line here must be kept as the second half of the string is clickable for the user. -->
<string name="tip_autocomplete_url">Autocomplete URLs for sites you use most\n
Long-press any URL in the address bar
</string>
<!-- Tip displayed on home view explaining how to add a custom autocomplete URL
The new line here must be kept as the second half of the string is clickable for the user. -->
<string name="tip_open_in_new_tab">Open a link in a new tab\n
Long-press any link on a page
</string>
<!-- Tip displayed on home view explaining how to add a custom autocomplete URL -->
<string name="tip_disable_tips2">Turn off tips on the start screen</string>
<!-- Label for the snackbar when a user opens a new tab -->
<string name="new_tab_opened_snackbar">New tab opened</string>
<!-- Label for the button in the snackbar that switches to the newly opened tab -->
<string name="open_new_tab_snackbar">Switch</string>
<!-- Preference for switching to a new tab immediately after opening -->
<string name="preference_open_new_tab">Switch to link in new tab immediately</string>
<!-- Preference title for safe browsing which when enabled, blocks dangerous or deceptive webpages that may include phishing or malware -->
<string name="preference_safe_browsing_title">Block potentially dangerous and deceptive sites</string>
<!-- Preference summary for safe browsing which when enabled, blocks dangerous or deceptive webpages that may include phishing or malware -->
<string name="preference_safe_browsing_summary">Block reported deceptive and attack sites, malware sites, and unwanted software sites.</string>
<!-- Title of the preference to enable "HTTPS-Only" mode -->
<string name="preference_https_only_title">HTTPS-Only Mode</string>
<!-- Description of the preference to enable "HTTPS-Only" mode. -->
<string name="preference_https_only_summary3">Automatically attempts to connect to sites using the HTTPS encryption protocol for increased security.</string>
<!-- Preference for exceptions tracking protection -->
<string name="preference_exceptions">Exceptions</string>
<!-- Description for the exceptions preference screen-->
<string name="preference_exceptions_description">You have disabled content blocking for these websites.</string>
<!-- Menu item to remove existing exceptions. -->
<string name="preference_exceptions_menu_remove">Remove</string>
<!-- Button to remove all websites from the exception list -->
<string name="preference_exceptions_remove_all_button_label">Remove all websites</string>
<!-- Title for Preference screen for cookie blocking for exceptions tracking protection -->
<string name="preference_block_cookies_title">Block Cookies</string>
<!-- Message for Preference screen for cookie blocking for exceptions tracking protection -->
<string name="preference_category_block_cookies">Would you like to block cookies?</string>
<!-- Title for the tab crash report screen-->
<string name="tab_crash_report_title">Tab Crashed</string>
<!-- Headline for the tab crash report screen -->
<string name="tab_crash_report_headline">Sorry. We’re having a problem with this tab.</string>
<!-- Subtitle for the tab crash report screen -->
<string name="tab_crash_report_description">As a private browser, we never save and cannot restore this tab.</string>
<!-- Label for button to close the tab-->
<string name="tab_crash_report_close_tab_button_label">Close Tab</string>
<!-- Label for the checkbox to send the tab crash report to Mozilla -->
<string name="crash_report_send_crash_label">Send crash report to Mozilla</string>
<!-- Tracking protection bottom sheet -->
<!-- Label for the total number of trackers blocked. %s represents the app install date -->
<string name="trackers_count_note">Trackers blocked since %s</string>
<!-- Category of trackers (content) that can be blocked by Enhanced Tracking Protection -->
<string name="content">Content</string>
<!-- Category of trackers (advertising) that can be blocked by Enhanced Tracking Protection -->
<string name="advertising">Advertising</string>
<!-- Category of trackers (social media) that can be blocked by Enhanced Tracking Protection -->
<string name="social">Social</string>
<!-- Category of trackers (analytics) that can be blocked by Enhanced Tracking Protection -->
<string name="analytics">Analytics</string>
<!-- Preference title for enhanced tracking protection settings -->
<string name="enhanced_tracking_protection">Enhanced Tracking Protection</string>
<!-- Enhanced tracking protection preference description when the tracking protection is disabled for this site-->
<string name="enhanced_tracking_protection_state_off">Protections are OFF for this site</string>
<!-- Enhanced tracking protection preference description when the tracking protection is enabled for this site-->
<string name="enhanced_tracking_protection_state_on">Protections are ON for this site</string>
<!-- Label that indicates a site is using a secure connection -->
<string name="secure_connection">Connection is secure</string>
<!-- Label that indicates a site is using a insecure connection -->
<string name="insecure_connection">Connection is not secure</string>
<!-- Title for the list of trackers enhanced tracking ptotection can block-->
<string name="trackers_and_scripts">Trackers and Scripts to Block</string>
<!-- Content description (not visible, for screen readers etc.): Navigate back button description -->
<string name="go_back">Go back</string>
<!-- Top Sites -->
<!-- Text for the menu button to remove a top site -->
<string name="remove_top_site">Remove</string>
<!-- Text for the menu item to remove a top site -->
<string name="rename_top_site_item">Rename</string>
<!-- Text for the dialog title for renaming a top site -->
<string name="rename_top_site">Rename</string>
<!-- Placeholder text for the input field of rename top site-->
<string name="placeholder_rename_top_site">Shortcut name</string>
<!-- Text for context menu additional note.
%1$s is a placeholder for the app name. -->
<string name="contextmenu_erased_images_note2">Saved and shared images <b>will not be</b> deleted when you erase %1$s history</string>
<!-- Theme Preferences -->
<!-- Preference category for changing default theme to dark or light mode -->
<string name="preferences_theme">Theme</string>
<!-- Preference for using light theme -->
<string name="preference_light_theme">Light</string>
<!-- Preference for using dark theme -->
<string name="preference_dark_theme">Dark</string>
<!-- Preference for using using dark or light theme automatically set by battery -->
<string name="preference_auto_battery_theme">Set by Battery Saver</string>
<!-- Preference for using following device theme -->
<string name="preference_follow_device_theme">Follow device theme</string>
<!-- The title of the error page for websites that do not support HTTPS when HTTPS-Only is turned on -->
<string name="errorpage_httpsonly_title">The site you requested does not support HTTPS</string>
<!-- The text of the error page for websites that do not support HTTPS when HTTPS-Only is turned on. %1$s will get replaced with the name of the app (e.g. "Firefox Focus") -->
<string name="errorpage_httpsonly_message">By default, %1$s attempts to connect using HTTPS for increased security. To change this setting or to learn more, go to Settings > Privacy & Security > Security.</string>
<!-- Sessions List -->
<!-- Content description (not visible, for screen readers etc.): Button that closes a tab n the sessions list -->
<string name="close_tab">Close tab</string>
<!-- Contextual Feature Recommendation Popups -->
<!-- CFR for Toolbar Shield Icon (Banner Info Message) -->
<string name="cfr_for_toolbar_shield_icon2">Got ‘em! We stopped this site from spying on you. Tap the shield any time to see what we’re blocking.</string>
<!-- Content description (not visible, for screen readers etc.): Button that closes the CFR popup -->
<string name="cfr_close_button_description">Close popup</string>
<!-- Tool Tip for: Privacy and Security Settings Screen task : https://github.com/mozilla-mobile/focus-android/issues/6211 -->
<!-- Tool Tip Title -->
<string name="tool_tip_title">You’re protected!</string>
<!-- Tool Tip Message -->
<string name="tool_tip_message">These default settings offer strong protection. But it’s easy to tweak the settings to meet your specific needs.</string>
<!-- Tool Tip "X" button Content description (not visible, for screen readers etc.) :Button that closes the tool tip -->
<string name="tool_tip_dismiss_button_content_description">Dismiss</string>
<!-- CFR for Toolbar Delete Icon (Banner Info Message) -->
<string name="cfr_for_toolbar_delete_icon2">Tap here to trash it all — history, cookies, everything — and start fresh on a new tab.</string>
<!-- Promote SearchWidget Dialog -->
!-- Content description (not visible, for screen readers etc.): This is the description for the
close button from promote search widget dialog. -->
<string name="promote_search_widget_dialog_content_description">Close</string>
!-- Content description (not visible, for screen readers etc.): This is the description for
picture of search widget from promote search widget dialog. -->
<string name="promote_search_widget_dialog_picture_content_description">Search widget</string>
!-- This is the title of promote search widget dialog. -->
<string name="promote_search_widget_dialog_title">Browsing history cleared! 🎉</string>
<!-- Banner Info Message than will appear when user first enters in the app. The location is at the toolbar. -->