-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathstrings.xml
More file actions
3802 lines (3580 loc) · 320 KB
/
strings.xml
File metadata and controls
3802 lines (3580 loc) · 320 KB
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" standalone="yes"?><!-- 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:tools="http://schemas.android.com/tools" xmlns:moz="http://mozac.org/tools">
<!-- App name for private browsing mode. %s is the name of the app (for example "Firefox"). -->
<string name="app_name_private_5">Private %s</string>
<!-- App name for private browsing mode. %s is the name of the app (for example "Firefox"). -->
<string name="app_name_private_4">%s (Private)</string>
<!-- Home Fragment -->
<!-- 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.): "Private Browsing" menu button. -->
<string name="content_description_private_browsing">Private browsing</string>
<!-- Placeholder text shown in the search bar before a user enters text for the default engine -->
<string name="search_hint">Search or enter address</string>
<!-- Placeholder text shown in the search bar before a user enters text for a general engine -->
<string name="search_hint_general_engine">Search the web</string>
<!-- Placeholder text shown in search bar when using history search -->
<string name="history_search_hint">Search history</string>
<!-- Placeholder text shown in search bar when using bookmarks search -->
<string name="bookmark_search_hint">Search bookmarks</string>
<!-- Placeholder text shown in search bar when using tabs search -->
<string name="tab_search_hint">Search tabs</string>
<!-- Placeholder text shown in the search bar when using application search engines -->
<string name="application_search_hint">Enter search terms</string>
<!-- No Open Tabs Message Description -->
<string name="no_open_tabs_description" tools:ignore="UnusedResources" moz:removedIn="149">Your open tabs will be shown here.</string>
<!-- No Private Tabs Message Description -->
<string name="no_private_tabs_description" tools:ignore="UnusedResources" moz:removedIn="149">Your private tabs will be shown here.</string>
<!-- The header text displayed on the private tabs page when no private tabs are open -->
<string name="tab_manager_empty_private_tabs_page_header">Private browsing</string>
<!-- The supplementary text displayed on the private tabs page when no private tabs are open. %1$s is the name of the app (for example "Firefox") -->
<string name="tab_manager_empty_private_tabs_page_description">%1$s won’t remember any of your history or cookies, but new bookmarks will be saved.</string>
<!-- The header text displayed on the normal tabs page when no normal tabs are open -->
<string name="tab_manager_empty_normal_tabs_page_header">Create a new tab to start searching</string>
<!-- Tab tray multi select title in app bar. %1$d is the number of tabs selected -->
<string name="tab_tray_multi_select_title">%1$d selected</string>
<!-- Tab tray multi select title in app bar when no tabs are selected -->
<string name="tab_tray_multi_select_title_empty">Select tabs</string>
<!-- Label of button in create collection dialog for creating a new collection -->
<string name="tab_tray_add_new_collection">Add new collection</string>
<!-- Label of editable text in create collection dialog for naming a new collection -->
<string name="tab_tray_add_new_collection_name">Name</string>
<!-- Label of button in save to collection dialog for selecting a current collection -->
<string name="tab_tray_select_collection">Select collection</string>
<!-- Content description for close button while in multiselect mode in tab tray -->
<string name="tab_tray_close_multiselect_content_description">Exit multiselect mode</string>
<!-- Content description for save to collection button while in multiselect mode in tab tray -->
<string name="tab_tray_collection_button_multiselect_content_description" tools:ignore="UnusedResources" moz:removedIn="149">Save selected tabs to collection</string>
<!-- The header text displayed on the synced tabs page when the user is not logged into an account. -->
<string name="tab_manager_empty_synced_tabs_page_header">Grab tabs from any device</string>
<!-- The supplementary text displayed on the synced tabs page when the user is not logged into an account.-->
<string name="tab_manager_empty_synced_tabs_page_description">Sign in to manage synced tabs from all your devices.</string>
<!-- The action text displayed on the synced tabs page when the user is not logged into an account, prompting the user to sign into their account. When clicked, it takes the user to the account sign-in flow. -->
<string name="tab_manager_empty_synced_tabs_page_sign_in_cta">Sign in</string>
<!-- Text for the button used to show all stories -->
<string name="homepage_all_stories">All stories</string>
<!-- Home - Bookmarks -->
<!-- Title for the home screen section with bookmarks. -->
<string name="home_bookmarks_title">Bookmarks</string>
<!-- Content description for the button which navigates the user to show all of their bookmarks. -->
<string name="home_bookmarks_show_all_content_description">Show all bookmarks</string>
<!-- Text for the menu button to remove a recently saved bookmark from the user's home screen -->
<string name="home_bookmarks_menu_item_remove">Remove</string>
<!-- About content. %1$s is the name of the app (for example "Firefox"). -->
<string name="about_content">%1$s is produced by Mozilla.</string>
<!-- Private Browsing -->
<string name="private_browsing_common_myths">
Common myths about private browsing
</string>
<!-- Text to be announced by the accessibility service to inform the user that the private browsing mode is currently active. -->
<string name="private_browsing_a11y_session_announcement">Private browsing session</string>
<!-- True Private Browsing Mode -->
<!-- Title for info card on private homescreen in True Private Browsing Mode. -->
<string name="felt_privacy_desc_card_title">Leave no traces on this device</string>
<!-- Description of private browsing mode displayed to users on the homepage when they enable private mode.
%1$s is the name of the app (for example "Firefox"). -->
<string name="felt_privacy_info_card_subtitle_3">%1$s deletes your cookies, history, and site data when you close all your private tabs.</string>
<!-- Clickable portion of the explanation for private browsing that links the user to our
about privacy page.
This string is used in felt_privacy_info_card_subtitle as the text for the link. -->
<string name="felt_privacy_info_card_subtitle_link_text">Who might be able to see my activity?</string>
<!-- Open in App "contextual feature recommendation" (CFR) -->
<!-- Text for the info message. %1$s is the name of the app (for example "Firefox"). -->
<string name="open_in_app_cfr_info_message_2">You can set %1$s to automatically open links in apps.</string>
<!-- Text for the positive action button -->
<string name="open_in_app_cfr_positive_button_text">Go to settings</string>
<!-- Text for the negative action button -->
<string name="open_in_app_cfr_negative_button_text">Dismiss</string>
<!-- Private browsing erase action "contextual feature recommendation" (CFR) -->
<!-- Address bar swipe "contextual feature recommendation" (CFR) -->
<!-- Text for the message displayed in the contextual feature recommendation popup promoting swipe of address bar. -->
<string name="address_bar_swipe_cfr_message_2">Swipe the toolbar left or right to switch tabs.</string>
<!-- Text for the info dialog when camera permissions have been denied but user tries to access a camera feature. -->
<string name="camera_permissions_needed_message">Camera access needed. Go to Android settings, tap permissions, and tap allow.</string>
<!-- Text for the positive action button to go to Android Settings to grant permissions. -->
<string name="camera_permissions_needed_positive_button_text">Go to settings</string>
<!-- Text for the negative action button to dismiss the dialog. -->
<string name="camera_permissions_needed_negative_button_text">Dismiss</string>
<!-- Text for the banner message to tell users about our auto close feature. -->
<string name="tab_tray_close_tabs_banner_message">Set open tabs to close automatically that haven’t been viewed in the past day, week, or month.</string>
<!-- Text for the positive action button to go to Settings for auto close tabs. -->
<string name="tab_tray_close_tabs_banner_positive_button_text">View options</string>
<!-- Text for the negative action button to dismiss the Close Tabs Banner. -->
<string name="tab_tray_close_tabs_banner_negative_button_text">Dismiss</string>
<!-- Text for the banner message to tell users about our inactive tabs feature. -->
<string name="tab_tray_inactive_onboarding_message">Tabs you haven’t viewed for two weeks get moved here.</string>
<!-- Text for the action link to go to Settings for inactive tabs. -->
<string name="tab_tray_inactive_onboarding_button_text">Turn off in settings</string>
<!-- Text for title for the auto-close dialog of the inactive tabs. -->
<string name="tab_tray_inactive_auto_close_title">Auto-close after one month?</string>
<!-- Text for the body for the auto-close dialog of the inactive tabs.
%1$s is the name of the app (for example "Firefox"). -->
<string name="tab_tray_inactive_auto_close_body_2">%1$s can close tabs you haven’t viewed over the past month.</string>
<!-- Content description for close button in the auto-close dialog of the inactive tabs. -->
<string name="tab_tray_inactive_auto_close_button_content_description">Close</string>
<!-- Text for turn on auto close tabs button in the auto-close dialog of the inactive tabs. -->
<string name="tab_tray_inactive_turn_on_auto_close_button_2">Turn on auto-close</string>
<!-- Home screen icons - Long press shortcuts -->
<!-- Shortcut action to open new tab -->
<string name="home_screen_shortcut_open_new_tab_2">New tab</string>
<!-- Shortcut action to open new private tab -->
<string name="home_screen_shortcut_open_new_private_tab_2">New private tab</string>
<!-- Shortcut action to open Passwords screen -->
<string name="home_screen_shortcut_passwords">Passwords</string>
<!-- Recent Tabs -->
<!-- Header text for jumping back into the recent tab in the home screen -->
<string name="recent_tabs_header">Jump back in</string>
<!-- Button text for showing all the tabs in the tabs tray -->
<string name="recent_tabs_show_all">Show all</string>
<!-- Content description for the button which navigates the user to show all recent tabs in the tabs tray. -->
<string name="recent_tabs_show_all_content_description_2">Show all recent tabs button</string>
<!-- Text for button in synced tab card that opens synced tabs tray -->
<string name="recent_tabs_see_all_synced_tabs_button_text">See all synced tabs</string>
<!-- Accessibility description for device icon used for recent synced tab -->
<string name="recent_tabs_synced_device_icon_content_description">Synced device</string>
<!-- Text for the dropdown menu to remove a recent synced tab from the homescreen -->
<string name="recent_synced_tab_menu_item_remove">Remove</string>
<!-- Text for the menu button to remove a grouped highlight from the user's browsing history
in the Recently visited section -->
<string name="recent_tab_menu_item_remove">Remove</string>
<!-- History Metadata -->
<!-- Header text for a section on the home screen that displays grouped highlights from the
user's browsing history, such as topics they have researched or explored on the web -->
<string name="history_metadata_header_2">Recently visited</string>
<!-- Text for the menu button to remove a grouped highlight from the user's browsing history
in the Recently visited section -->
<string name="recently_visited_menu_item_remove">Remove</string>
<!-- Content description for the button which navigates the user to show all of their history. -->
<string name="past_explorations_show_all_content_description_2">Show all past explorations</string>
<!-- Browser Fragment -->
<!-- Content description (not visible, for screen readers etc.): Navigate backward (browsing history) -->
<string name="browser_menu_back">Back</string>
<!-- Content description (not visible, for screen readers etc.): Navigate forward (browsing history) -->
<string name="browser_menu_forward">Forward</string>
<!-- Content description (not visible, for screen readers etc.): Refresh current website -->
<string name="browser_menu_refresh">Refresh</string>
<!-- Content description (not visible, for screen readers etc.): Stop loading current website -->
<string name="browser_menu_stop">Stop</string>
<!-- Browser menu button that opens the extensions manager -->
<string name="browser_menu_extensions">Extensions</string>
<!-- Browser menu banner header text for extensions onboarding when all installed extensions have been disabled. -->
<string name="browser_menu_disabled_extensions_banner_onboarding_header" tools:ignore="UnusedResources" moz:removedIn="149">You have extensions installed, but not enabled</string>
<!-- Browser menu button that opens the extensions manager -->
<string name="browser_menu_manage_extensions">Manage extensions</string>
<!-- Browser menu group that contains additional settings in collapsed state-->
<string name="browser_menu_more_settings">More</string>
<!-- Content description (not visible, for screen readers etc.): Label for plus icon used to add extension.
%1$s is the name of the extension (for example: ClearURLs). -->
<string name="browser_menu_extension_plus_icon_content_description_2">Add %1$s</string>
<!-- Browser menu button that opens AMO in a tab -->
<string name="browser_menu_discover_more_extensions">Discover more extensions</string>
<!-- Browser menu description that is shown when one or more extensions are disabled due to extension errors -->
<string name="browser_menu_extensions_disabled_description">Temporarily disabled</string>
<!-- The description of the browser menu appears when the user hasn't installed any extensions. -->
<string name="browser_menu_no_extensions_installed_description">No extensions enabled</string>
<!-- The description of the browser menu appears when the user hasn't installed any extensions and there are recommended extensions. -->
<string name="browser_menu_try_a_recommended_extension_description">Try a recommended extension</string>
<!-- Browser menu button that opens account settings -->
<string name="browser_menu_account_settings">Account info</string>
<!-- Browser menu button that sends a user to help articles -->
<string name="browser_menu_help" tools:ignore="UnusedResources" moz:removedIn="149">Help</string>
<!-- Browser menu button that sends a to a the what's new article -->
<string name="browser_menu_whats_new" tools:ignore="UnusedResources" moz:removedIn="149">What’s new</string>
<!-- Browser menu button that opens the settings menu -->
<string name="browser_menu_settings">Settings</string>
<!-- Browser menu button that opens a user's library -->
<string name="browser_menu_library">Library</string>
<!-- Browser menu toggle that requests a desktop site -->
<string name="browser_menu_desktop_site">Desktop site</string>
<!-- Browser menu button that reopens a private tab as a regular tab -->
<string name="browser_menu_open_in_regular_tab" tools:ignore="UnusedResources" moz:removedIn="149">Open in regular tab</string>
<!-- Browser menu toggle that adds a shortcut to the site on the device home screen. -->
<string name="browser_menu_add_to_homescreen">Add to Home screen</string>
<!-- Browser menu toggle that adds a PWA of the site on the device home screen. -->
<string name="browser_menu_add_app_to_homescreen">Add app to Home screen</string>
<!-- Text for notifying users that Xiaomi devices require additional permissions to add to home screen -->
<string name="browser_menu_add_to_homescreen_xiaomi">Xiaomi devices may need extra permissions to add shortcuts to the home screen. Please check your settings.</string>
<!-- Content description (not visible, for screen readers etc.) for the Resync tabs button -->
<string name="resync_button_content_description">Resync</string>
<!-- Browser menu button that opens the find in page menu -->
<string name="browser_menu_find_in_page">Find in page</string>
<!-- Browser menu button that opens the translations dialog, which has options to translate the current browser page. -->
<string name="browser_menu_translations">Translate page</string>
<!-- Browser menu button that saves the current tab to a collection -->
<string name="browser_menu_save_to_collection_2">Save to collection</string>
<!-- Browser menu button that open a share menu to share the current site -->
<string name="browser_menu_share">Share</string>
<!-- Browser menu button that goes to the homepage screen -->
<string name="browser_menu_homepage">Homepage</string>
<!-- Browser menu button shown in custom tabs that opens the current tab in Fenix
%1$s is the name of the app (for example "Firefox"). -->
<string name="browser_menu_open_in_fenix">Open in %1$s</string>
<!-- Browser menu text shown in custom tabs to indicate this is a Fenix tab
%1$s is the name of the app (for example "Firefox"). -->
<string name="browser_menu_powered_by" tools:ignore="UnusedResources" moz:removedIn="149">POWERED BY %1$s</string>
<!-- Browser menu text shown in custom tabs to indicate this is a Fenix tab
%1$s is the name of the app (for example "Firefox"). -->
<string name="browser_menu_powered_by2">Powered by %1$s</string>
<!-- Browser menu button to put the current page in reader mode -->
<string name="browser_menu_read">Reader view</string>
<!-- Browser menu button content description to close reader mode and return the user to the regular browser -->
<string name="browser_menu_read_close">Close reader view</string>
<!-- Browser menu button to open the current page in an external app -->
<string name="browser_menu_open_app_link">Open in app</string>
<!-- Browser menu button to show reader view appearance controls e.g. the used font type and size -->
<string name="browser_menu_customize_reader_view" tools:ignore="UnusedResources" moz:removedIn="149">Customize reader view</string>
<!-- Browser menu button to show reader view appearance controls e.g. the used font type and size -->
<string name="browser_menu_customize_reader_view_2">Customize Reader View</string>
<!-- Browser menu label for adding a bookmark -->
<string name="browser_menu_add" tools:ignore="UnusedResources" moz:removedIn="149">Add</string>
<!-- Browser menu label for editing a bookmark -->
<string name="browser_menu_edit" tools:ignore="UnusedResources" moz:removedIn="149">Edit</string>
<!-- Button shown on the home page that opens the Customize home settings -->
<string name="browser_menu_customize_home_1" tools:ignore="UnusedResources" moz:removedIn="149">Customize homepage</string>
<!-- Browser menu label to sign in to sync on the device using Mozilla accounts -->
<string name="browser_menu_sign_in">Sign in</string>
<!-- Browser menu caption label for the "Sign in" browser menu item described in `browser_menu_sign_in` -->
<string name="browser_menu_sign_in_caption_3">Sync passwords, bookmarks, and more</string>
<!-- Browser menu label to sign back in to sync on the device when the user's account needs to be reauthenticated -->
<string name="browser_menu_sign_back_in_to_sync">Sign back in to sync</string>
<!-- Browser menu caption label for the "Sign back in to sync" browser menu item described in `browser_menu_sign_back_in_to_sync` when there is an error in syncing -->
<string name="browser_menu_syncing_paused_caption">Syncing paused</string>
<!-- Browser menu caption label for an authenticated user -->
<string name="browser_menu_signed_in_caption">Manage what you back up and sync</string>
<!-- Browser menu label that creates a private tab -->
<string name="browser_menu_new_private_tab">New private tab</string>
<!-- Browser menu label that navigates to the Password screen -->
<string name="browser_menu_passwords">Passwords</string>
<!-- Content description (not visible, for screen readers etc.) for the handle used to drag the main menu at the bottom of the screen. -->
<string name="browser_close_main_menu_handlebar_content_description">Close menu</string>
<!-- Content description (not visible, for screen readers etc.) for main menu navigation header. -->
<string name="browser_main_menu_content_description_navigation_header">Navigation</string>
<!-- Content description (not visible, for screen readers etc.) for bottom sheet handlebar extensions menu. -->
<string name="browser_extensions_menu_handlebar_content_description" tools:ignore="UnusedResources" moz:removedIn="149">Close extensions menu sheet</string>
<!-- Content description (not visible, for screen readers etc.) for bottom sheet handlebar save menu. -->
<string name="browser_save_menu_handlebar_content_description" tools:ignore="UnusedResources" moz:removedIn="149">Close save menu sheet</string>
<!-- Content description (not visible, for screen readers etc.) for bottom sheet handlebar tools menu. -->
<string name="browser_tools_menu_handlebar_content_description" tools:ignore="UnusedResources" moz:removedIn="149">Close tools menu sheet</string>
<!-- Content description (not visible, for screen readers etc.) for bottom sheet handlebar custom tab menu. -->
<string name="browser_custom_tab_menu_handlebar_content_description">Close custom tab menu sheet</string>
<!-- Browser menu label that bookmarks the currently visited page -->
<string name="browser_menu_bookmark_this_page_2">Bookmark page</string>
<!-- Browser menu label that navigates to the edit bookmark screen for the current bookmarked page -->
<string name="browser_menu_edit_bookmark">Edit bookmark</string>
<!-- Browser menu label that the saves the currently visited page as a PDF -->
<string name="browser_menu_save_as_pdf_2">Save as PDF</string>
<!-- Browser menu label for navigating to the translation feature, which provides language translation options the current visited page -->
<string name="browser_menu_translate_page_2">Translate page</string>
<!-- Browser menu label for navigating to the summarization feature, which provides site summarization for the current visited page -->
<string name="browser_menu_summarize_page">Summarize page</string>
<!-- Browser menu badge text for summarization feature -->
<string name="browser_menu_summarize_page_badge">New</string>
<!-- Browser menu label for navigating to the Web Compat Reporter feature, which provides users the ability to send bug reports for broken sites. -->
<string name="browser_menu_webcompat_reporter" tools:ignore="UnusedResources" moz:removedIn="149">Report broken site…</string>
<!-- Browser menu label for navigating to the Web Compat Reporter feature, which provides users the ability to send bug reports for broken sites. -->
<string name="browser_menu_webcompat_reporter_2">Report broken site</string>
<!-- Browser menu label that is displayed when the current page has been translated by the translation feature. -->
<string name="browser_menu_translated">Translated</string>
<!-- Browser menu label for the print feature -->
<string name="browser_menu_print_2">Print</string>
<!-- Browser menu label for the Delete browsing data on quit feature.
%1$s is the name of the app (for example "Firefox"). -->
<string name="browser_menu_delete_browsing_data_on_quit">Quit %1$s</string>
<!-- Content description for a banner within the menu which prompt the user to make this app their default browser.
%1$s is the name of the app (for example "Firefox"). -->
<string name="browser_menu_default_banner_title">Make %1$s your default</string>
<!-- Label text within the set as default banner -->
<string name="browser_menu_default_banner_subtitle_2">Fast, private, and made for you.</string>
<!-- Content description (not visible, for screen readers etc.) for the button that dismisses the set as default banner in the menu -->
<string name="browser_menu_default_banner_dismiss_promotion">Dismiss promotion</string>
<!-- Content description (not visible, for screen readers etc.) for recommended extensions in main menu -->
<string name="browser_menu_recommended_extensions_content_description">More info</string>
<!-- Menu "contextual feature recommendation" (CFR) -->
<!-- Text for the title in the contextual feature recommendation popup promoting the menu feature. -->
<string name="menu_cfr_title">New: streamlined menu</string>
<!-- Text for the message in the contextual feature recommendation popup promoting the menu feature. -->
<string name="menu_cfr_body">Find what you need faster, from private browsing to save actions.</string>
<!-- Extensions management fragment -->
<!-- Text displayed when there are no extensions to be shown -->
<string name="extensions_management_no_extensions">No extensions here</string>
<!-- Browser Toolbar -->
<!-- Content description for the Home screen button on the browser toolbar -->
<string name="browser_toolbar_home">Home screen</string>
<!-- Content description for the translate page toolbar button that opens the translations dialog when no translation has occurred. -->
<string name="browser_toolbar_translate">Translate page</string>
<!-- Content description (not visible, for screen readers etc.) for the translate page toolbar button that opens the translations dialog when the page is translated successfully.
%1$s is the name of the language that is displayed in the original page. (For example: English)
%2$s is the name of the language which the page was translated to. (For example: French) -->
<string name="browser_toolbar_translated_successfully">Page translated from %1$s to %2$s.</string>
<!-- Translation Toolbar -->
<!-- Translation toolbar label that is displayed when the current page has been translated by the translation feature.
%1$s is the name of the language that is displayed in the original page. (For example: English)
%2$s is the name of the language which the page was translated to. (For example: French) -->
<string name="translation_toolbar_translated_from_and_to" tools:ignore="UnusedResources">Translated from %1$s to %2$s</string>
<!-- Content description for the translate toolbar action that opens the translations dialog. -->
<string name="translation_toolbar_expand_action">Open translation sheet</string>
<!-- Content description for the translate toolbar action that closes the translations toolbar. -->
<string name="translation_toolbar_close_action">Dismiss message</string>
<!-- Locale Settings Fragment -->
<!-- Content description for tick mark on selected language -->
<string name="a11y_selected_locale_content_description">Selected language</string>
<!-- Text for default locale item -->
<string name="default_locale_text">Follow device language</string>
<!-- Placeholder text shown in the search bar before a user enters text -->
<string name="locale_search_hint">Search language</string>
<!-- Search Fragment -->
<!-- Button in the search view that lets a user search by scanning a QR code -->
<string name="search_scan_button_2">Scan QR code</string>
<!-- Button in the search view when shortcuts are displayed that takes a user to the search engine settings -->
<string name="search_shortcuts_engine_settings">Search engine settings</string>
<!-- Button in the search view that lets a user navigate to the site in their clipboard -->
<string name="awesomebar_clipboard_title">Fill link from clipboard</string>
<!-- Button in the search suggestions onboarding that allows search suggestions in private sessions -->
<string name="search_suggestions_onboarding_allow_button">Allow</string>
<!-- Button in the search suggestions onboarding that does not allow search suggestions in private sessions -->
<string name="search_suggestions_onboarding_do_not_allow_button">Don’t allow</string>
<!-- Search suggestion onboarding hint title text -->
<string name="search_suggestions_onboarding_title">Allow search suggestions in private sessions?</string>
<!-- Search suggestion onboarding hint description text, %s is the name of the app (for example "Firefox"). -->
<string name="search_suggestions_onboarding_text">%s will share everything you type in the address bar with your default search engine.</string>
<!-- Search engine suggestion title text. %s is the name of the suggested engine. -->
<string name="search_engine_suggestions_title">Search %s</string>
<!-- Search engine suggestion description text -->
<string name="search_engine_suggestions_description">Search directly from the address bar</string>
<!-- Menu option in the search selector menu to open the search settings -->
<string name="search_settings_menu_item">Search settings</string>
<!-- Header text for the search selector menu -->
<string name="search_header_menu_item_2">This time search in:</string>
<!-- Content description (not visible, for screen readers etc.): Search engine icon.
%s is the search engine name (for example: DuckDuckGo). -->
<string name="search_engine_icon_content_description_1">Search engine: %s</string>
<!-- Content description (not visible, for screen readers etc.) of the search engine selector from the search toolbar.
%s is the search engine name (for example: DuckDuckGo).
The colon character (in "%s:") is intended to have the screen reader make a small pause between the search engine name and the description of the button. -->
<string name="search_engine_selector_content_description">%s: search engine selector</string>
<!-- Text for the snackbar shown to confirm the deletion of a single browsing history item. %1$s is the shortened URL of the deleted history entry or the the actual deleted search term. Only one such item is deleted at a time. -->
<string name="search_suggestions_delete_history_item_snackbar">Deleted %1$s from history</string>
<!-- Content description (not visible, for screen readers etc.): Button shown near a history search result allowing to delete it from browsing history. -->
<string name="mozac_browser_awesomebar_remove_suggestion" tools:ignore="UnusedResources">Delete this history entry</string>
<!-- Home onboarding -->
<!-- Content description (not visible, for screen readers etc.): Close button for the home onboarding dialog -->
<string name="onboarding_home_content_description_close_button">Close</string>
<!-- Juno first user onboarding flow experiment, strings are marked unused as they are only referenced by Nimbus experiments. -->
<!-- Description for learning more about our privacy notice. -->
<string name="juno_onboarding_privacy_notice_text" tools:ignore="BrandUsage">Firefox Privacy Notice</string>
<!-- Title for set firefox as default browser screen used by Nimbus experiments. -->
<string name="juno_onboarding_default_browser_title_nimbus_2">We love keeping you safe</string>
<!-- Description for set firefox as default browser screen used by Nimbus experiments. -->
<string name="juno_onboarding_default_browser_description_nimbus_3">Our non-profit backed browser helps stop companies from secretly following you around the web.</string>
<!-- Text for the button to set firefox as default browser on the device -->
<string name="juno_onboarding_default_browser_positive_button" tools:ignore="UnusedResources">Set as default browser</string>
<!-- Text for the button dismiss the screen and move on with the flow -->
<string name="juno_onboarding_default_browser_negative_button" tools:ignore="UnusedResources">Not now</string>
<!-- Title for sign in to sync screen. -->
<string name="juno_onboarding_sign_in_title_2">Stay encrypted when you hop between devices</string>
<!-- Description for sign in to sync screen. Nimbus experiments do not support string placeholders.
Note: The word "Firefox" should NOT be translated -->
<string name="juno_onboarding_sign_in_description_3" tools:ignore="BrandUsage">Firefox encrypts your passwords, bookmarks, and more when you’re synced.</string>
<!-- Text for the button to sign in to sync on the device -->
<string name="juno_onboarding_sign_in_positive_button" tools:ignore="UnusedResources">Sign in</string>
<!-- Text for the button dismiss the screen and move on with the flow -->
<string name="juno_onboarding_sign_in_negative_button" tools:ignore="UnusedResources">Not now</string>
<!-- Title for enable notification permission screen used by Nimbus experiments. Nimbus experiments do not support string placeholders.
Note: The word "Firefox" should NOT be translated -->
<string name="juno_onboarding_enable_notifications_title_nimbus_2" tools:ignore="BrandUsage">Notifications help you stay safer with Firefox</string>
<!-- Description for enable notification permission screen used by Nimbus experiments. Nimbus experiments do not support string placeholders.
Note: The word "Firefox" should NOT be translated -->
<string name="juno_onboarding_enable_notifications_description_nimbus_2" tools:ignore="BrandUsage">Securely send tabs between your devices and discover other privacy features in Firefox.</string>
<!-- Text for the button to request notification permission on the device -->
<string name="juno_onboarding_enable_notifications_positive_button" tools:ignore="UnusedResources">Turn on notifications</string>
<!-- Text for the button dismiss the screen and move on with the flow -->
<string name="juno_onboarding_enable_notifications_negative_button" tools:ignore="UnusedResources">Not now</string>
<!-- Title for add search widget screen used by Nimbus experiments. Nimbus experiments do not support string placeholders.
Note: The word "Firefox" should NOT be translated -->
<string name="juno_onboarding_add_search_widget_title" tools:ignore="BrandUsage,UnusedResources">Try the Firefox search widget</string>
<!-- Description for add search widget screen used by Nimbus experiments. Nimbus experiments do not support string placeholders.
Note: The word "Firefox" should NOT be translated -->
<string name="juno_onboarding_add_search_widget_description" tools:ignore="BrandUsage,UnusedResources">With Firefox on your home screen, you’ll have easy access to the privacy-first browser that blocks cross-site trackers.</string>
<!-- Text for the button to add search widget on the device used by Nimbus experiments. Nimbus experiments do not support string placeholders.
Note: The word "Firefox" should NOT be translated -->
<string name="juno_onboarding_add_search_widget_positive_button" tools:ignore="BrandUsage,UnusedResources">Add Firefox widget</string>
<!-- Text for the button to dismiss the screen and move on with the flow -->
<string name="juno_onboarding_add_search_widget_negative_button" tools:ignore="UnusedResources">Not now</string>
<!-- Title for the privacy preferences dialog shown during onboarding. Note: The word "Firefox" should NOT be translated. -->
<string name="onboarding_preferences_dialog_title" tools:ignore="BrandUsage">Help us make Firefox better</string>
<!-- Title for the crash reporting option in the privacy preferences dialog shown during onboarding. -->
<string name="onboarding_preferences_dialog_crash_reporting_title">Automatically send crash reports</string>
<!-- Description for the crash reporting option in the privacy preferences dialog shown during onboarding. -->
<string name="onboarding_preferences_dialog_crash_reporting_description">Crash reports allow us to diagnose and fix issues with the browser. Reports may include personal or sensitive data.</string>
<!-- Learn more link for the crash reporting option in the privacy preferences dialog shown during onboarding. -->
<string name="onboarding_preferences_dialog_crash_reporting_learn_more_2">Learn more</string>
<!-- Title for the startup crash page. %s is the name of the app (for example "Firefox") -->
<string name="startup_crash_title">%s needs to restart</string>
<!-- Body text for the startup crash page. %s is the name of the app (for example "Firefox") -->
<string name="startup_crash_body">There was a problem opening %s.\n\nSending a crash report helps us diagnose and fix problems with the browser. Reports may include personal or sensitive data.</string>
<!-- Button text to submit a startup crash report -->
<string name="startup_crash_positive">Send crash report</string>
<!-- Button text to continue and not send a startup crash report -->
<string name="startup_crash_negative">No thanks</string>
<!-- Button text to reopen firefox after the crash is processed %s is the name of the app (for example "Firefox") -->
<string name="startup_crash_restart">Reopen %s</string>
<!-- Title for the usage data option in the privacy preferences dialog shown during onboarding. Note: The word "Mozilla" should NOT be translated. -->
<string name="onboarding_preferences_dialog_usage_data_title">Send technical and interaction data to Mozilla</string>
<string name="onboarding_preferences_dialog_usage_data_description_2" tools:ignore="BrandUsage">Data about your device, hardware configuration, and how you use Firefox helps improve features, performance, and stability for everyone.</string>
<string name="onboarding_preferences_dialog_usage_data_learn_more_2">Learn more</string>
<!-- Positive button label for the privacy preferences dialog shown during onboarding. -->
<string name="onboarding_preferences_dialog_positive_button">Done</string>
<!-- Terms of service onboarding title card label. 'Firefox' intentionally hardcoded here-->
<string name="onboarding_welcome_to_firefox" tools:ignore="BrandUsage">Welcome to Firefox</string>
<!-- Terms of service sub header label. -->
<string name="onboarding_terms_of_service_sub_header_2">Fast and secure web browsing</string>
<!-- Terms of service onboarding page continue button label. -->
<string name="onboarding_term_of_service_agree_and_continue_button_label_2">Continue</string>
<!-- Line one of the terms of service onboarding page. %1$s is replaced by an active link, using onboarding_term_of_service_line_one_link_text_2 as text (“Firefox Terms of Use”). -->
<string name="onboarding_term_of_service_line_one_2">By continuing, you agree to the %1$s.</string>
<!-- Used as text for the link in onboarding_term_of_service_line_one_2. -->
<string name="onboarding_term_of_service_line_one_link_text_2" tools:ignore="BrandUsage">Firefox Terms of Use</string>
<!-- Line two of the terms of service onboarding page. 'Firefox' is intentionally hardcoded. %1$s is replaced by an active link, using onboarding_term_of_service_line_two_link_text as text (“Privacy Notice”). -->
<string name="onboarding_term_of_service_line_two_2" tools:ignore="BrandUsage">Firefox cares about your privacy. Learn more in our %1$s.</string>
<!-- Used as text for the link in onboarding_term_of_service_line_two. -->
<string name="onboarding_term_of_service_line_two_link_text">Privacy Notice</string>
<!-- Line three of the terms of service onboarding page. 'Firefox' and 'Mozilla' are intentionally hardcoded. %1$s is replaced by an active link using onboarding_term_of_service_line_three_link_text as text (“Manage”). -->
<string name="onboarding_term_of_service_line_three" tools:ignore="BrandUsage">To help improve the browser, Firefox sends diagnostic and interaction data to Mozilla. %1$s</string>
<!-- Used as text for the link in onboarding_term_of_service_line_three. -->
<string name="onboarding_term_of_service_line_three_link_text">Manage</string>
<!-- Terms of use (ToU) onboarding redesign title. -->
<string name="onboarding_redesign_tou_title" tools:ignore="UnusedResources">Launch the ultimate Android browser</string>
<!-- Terms of use (ToU) first subheader. -->
<string name="onboarding_redesign_tou_subheader_one" tools:ignore="UnusedResources">Load sites lightning fast</string>
<!-- Terms of use (ToU) second subheader. -->
<string name="onboarding_redesign_tou_subheader_two" tools:ignore="UnusedResources">Automatic tracking protection</string>
<!-- Terms of use (ToU) third subheader. -->
<string name="onboarding_redesign_tou_subheader_three" tools:ignore="UnusedResources">Thousands of customizations</string>
<!-- Terms of use (ToU) first body text. %1$s is replaced by an active link,
using onboarding_redesign_tou_body_one_link_text as text (“Firefox Terms of Use”). -->
<string name="onboarding_redesign_tou_body_one" tools:ignore="UnusedResources">By continuing, you agree to the %1$s.</string>
<!-- Used as text for the link in onboarding_redesign_tou_body_one. -->
<string name="onboarding_redesign_tou_body_one_link_text" tools:ignore="BrandUsage,UnusedResources">Firefox Terms of Use</string>
<!-- Terms of use (ToU) second body text. 'Firefox' is intentionally hardcoded.
%1$s is replaced by an active link, using onboarding_redesign_tou_body_two_link_text as text (“Privacy Notice”). -->
<string name="onboarding_redesign_tou_body_two" tools:ignore="BrandUsage,UnusedResources">Firefox cares about your privacy. Learn more in our %1$s.</string>
<!-- Used as text for the link in onboarding_redesign_tou_body_two. -->
<string name="onboarding_redesign_tou_body_two_link_text" tools:ignore="UnusedResources">Privacy Notice</string>
<!-- Terms of use (ToU) third body text. 'Firefox' and 'Mozilla' are intentionally hardcoded.
%1$s is replaced by an active link using onboarding_redesign_tou_body_three_link_text as text (“Manage Settings”). -->
<string name="onboarding_redesign_tou_body_three" tools:ignore="BrandUsage,UnusedResources">To help improve the browser, Firefox sends diagnostic and interaction data to Mozilla. %1$s</string>
<!-- Used as text for the link in onboarding_redesign_tou_body_three. -->
<string name="onboarding_redesign_tou_body_three_link_text" tools:ignore="UnusedResources">Manage Settings</string>
<!-- Terms of use (ToU) onboarding page continue button label. -->
<string name="onboarding_redesign_tou_agree_and_continue_button_label" tools:ignore="UnusedResources">Continue</string>
<!-- Onboarding header for the toolbar selection card. -->
<string name="onboarding_redesign_customize_toolbar_title" tools:ignore="UnusedResources">Where do you want your address bar?</string>
<!-- Onboarding label for 'Continue' button. -->
<string name="onboarding_redesign_continue_button" tools:ignore="UnusedResources">Continue</string>
<!-- Marketing onboarding page title. 'Firefox' is intentionally hardcoded. -->
<string name="onboarding_marketing_redesign_title" tools:ignore="BrandUsage,UnusedResources">Help us grow Firefox</string>
<!-- Marketing onboarding page opt-out checkbox. Unchecking the box does not increase data collection. Our data practices remain the same. 'Mozilla' is intentionally hardcoded. -->
<string name="onboarding_marketing_redesign_opt_out_checkbox" tools:ignore="BrandUsage,UnusedResources">Share how you discovered Firefox, and that you use it, with Mozilla’s marketing partners. This data is never sold.</string>
<!-- Marketing onboarding page clickable link text to "learn more" on how data is used. -->
<string name="onboarding_marketing_redesign_learn_more" tools:ignore="UnusedResources">How we use the data</string>
<!-- Marketing onboarding page button label. Button to confirm choice and start browsing. -->
<string name="onboarding_marketing_redesign_positive_button" tools:ignore="UnusedResources">Confirm</string>
<!-- Set to default browser onboarding redesign title. -->
<string name="onboarding_redesign_set_default_browser_title" tools:ignore="UnusedResources">Get automatic tracking protection by default</string>
<!-- Set to default browser onboarding redesign body. -->
<string name="onboarding_redesign_set_default_browser_body" tools:ignore="UnusedResources">One tap helps stop companies spying on your clicks.</string>
<!-- Sync onboarding redesign title. 'Firefox' is intentionally hardcoded. -->
<string name="onboarding_redesign_sync_title" tools:ignore="BrandUsage,UnusedResources">Sync everywhere you use Firefox</string>
<!-- Sync onboarding redesign body. -->
<string name="onboarding_redesign_sync_body" tools:ignore="UnusedResources">Get bookmarks, tabs, and passwords on any device. All protected with encryption.</string>
<!-- Sync onboarding redesign positive button text. -->
<string name="onboarding_redesign_sync_positive_button" tools:ignore="UnusedResources">Start syncing</string>
<!-- Sync onboarding redesign negative button text. -->
<string name="onboarding_redesign_sync_negative_button" tools:ignore="UnusedResources">Not now</string>
<!-- Marketing onboarding page title. 'Firefox' is intentionally hardcoded. -->
<string name="onboarding_marketing_title" tools:ignore="BrandUsage,UnusedResources">Help us grow Firefox</string>
<!-- Marketing onboarding page body. 'Firefox' is intentionally hardcoded. -->
<string name="onboarding_marketing_body" tools:ignore="BrandUsage,UnusedResources">When you share how you discovered Firefox and that you use it, you help us introduce our browser to more people.</string>
<!-- Marketing onboarding page opt-out checkbox. Unchecking the box does not increase data collection. Our data practices remain the same. 'Mozilla' is intentionally hardcoded. -->
<string name="onboarding_marketing_opt_out_checkbox">Share data with Mozilla’s marketing technology partners. This data is never sold or used to show you ads.</string>
<!-- Marketing onboarding page clickable link text to "learn more" on how data is used. -->
<string name="onboarding_marketing_learn_more" tools:ignore="UnusedResources">How we use the data</string>
<!-- Marketing onboarding page button label. Button to confirm choice and start browsing. -->
<string name="onboarding_marketing_positive_button" tools:ignore="UnusedResources">Confirm and start browsing</string>
<!-- Marketing onboarding page title variant. “One last thing” refers to the final step or action in the onboarding process that we’re asking users to take before they can start using the browser. -->
<string name="onboarding_marketing_title_1" tools:ignore="UnusedResources">One last thing</string>
<!-- Marketing onboarding page body variant. 'Firefox' is intentionally hardcoded. -->
<string name="onboarding_marketing_body_1" tools:ignore="BrandUsage,UnusedResources">Share how you discovered Firefox, and that you use it, with Mozilla’s marketing partners. This data is never sold.</string>
<!-- Marketing onboarding page button label variant. Button to confirm choice and start browsing. -->
<string name="onboarding_marketing_positive_button_1" tools:ignore="UnusedResources">Agree and start browsing</string>
<!-- ==== Project "Nova" onboarding strings ==== -->
<!-- "Continue" onboarding button. -->
<string name="nova_onboarding_continue_button" >Continue</string>
<!-- "Not now" onboarding button. -->
<string name="nova_onboarding_negative_button">Not now</string>
<!-- Terms of use (ToU) onboarding title. -->
<string name="nova_onboarding_tou_title" tools:ignore="UnusedResources">Get ready to run free</string>
<!-- Terms of use (ToU) onboarding subtitle. -->
<string name="nova_onboarding_tou_subtitle">Speedy, safe, and won’t sell you out.\nBrowsing just got better.</string>
<!-- Terms of use (ToU) onboarding body line one.
%1$s is replaced by an active link, using nova_onboarding_tou_body_line_1_link_text as text (“Firefox Terms of Use”). -->
<string name="nova_onboarding_tou_body_line_1">By continuing, you agree to the %1$s.</string>
<!-- Terms of use (ToU) onboarding body line one link text for nova_onboarding_tou_body_line_1. 'Firefox' is intentionally hardcoded. -->
<string name="nova_onboarding_tou_body_line_1_link_text" tools:ignore="BrandUsage">Firefox Terms of Use</string>
<!-- Terms of use (ToU) onboarding body line two. 'Firefox' is intentionally hardcoded.
%1$s is replaced by an active link, using nova_onboarding_tou_body_line_2_link_text as text (“Privacy Notice”). -->
<string name="nova_onboarding_tou_body_line_2" tools:ignore="BrandUsage">Firefox cares about your privacy. Learn more in our %1$s.</string>
<!-- Terms of use (ToU) onboarding body line two link text for nova_onboarding_tou_body_line_2. -->
<string name="nova_onboarding_tou_body_line_2_link_text">Privacy Notice</string>
<!-- Terms of use (ToU) onboarding body line three. 'Firefox' and 'Mozilla' are intentionally hardcoded.
%1$s is replaced by an active link, using nova_onboarding_tou_body_line_3_link_text as text (“Manage Settings”). -->
<string name="nova_onboarding_tou_body_line_3" tools:ignore="BrandUsage">To help improve the browser, Firefox sends diagnostic and interaction data to Mozilla. %1$s</string>
<!-- Terms of use (ToU) onboarding body line three link text for nova_onboarding_tou_body_line_3. -->
<string name="nova_onboarding_tou_body_line_3_link_text">Manage settings</string>
<!-- "Set to default" onboarding title. -->
<string name="nova_onboarding_set_to_default_title" tools:ignore="UnusedResources">Say goodbye to creepy trackers</string>
<!-- "Set to default" onboarding title. -->
<string name="nova_onboarding_set_to_default_title_2">Open all your links with built-in privacy</string>
<!-- "Set to default" onboarding subtitle. -->
<string name="nova_onboarding_set_to_default_subtitle">We protect your data and automatically block companies from spying on your clicks.</string>
<!-- "Set to default" onboarding button. -->
<string name="nova_onboarding_set_to_default_button">Set as default browser</string>
<!-- Toolbar selection onboarding title. -->
<string name="nova_onboarding_toolbar_selection_title">Choose your address bar</string>
<!-- Toolbar selection onboarding "top" option label. -->
<string name="nova_onboarding_toolbar_selection_top_label">Top</string>
<!-- Toolbar selection onboarding "bottom" option label. -->
<string name="nova_onboarding_toolbar_selection_bottom_label">Bottom</string>
<!-- Theme selection onboarding title. -->
<string name="nova_onboarding_theme_selection_title" tools:ignore="UnusedResources">Pick your theme</string>
<!-- Theme selection onboarding "automatic" option label. -->
<string name="nova_onboarding_theme_selection_automatic_label" tools:ignore="UnusedResources">Automatic</string>
<!-- Theme selection onboarding "light" option label. -->
<string name="nova_onboarding_theme_selection_light_label" tools:ignore="UnusedResources">Light</string>
<!-- Theme selection onboarding "dark" option label. -->
<string name="nova_onboarding_theme_selection_dark_label" tools:ignore="UnusedResources">Dark</string>
<!-- Sync onboarding title. -->
<string name="nova_onboarding_sync_title">Instantly pick up where you left off</string>
<!-- Sync onboarding subtitle. -->
<string name="nova_onboarding_sync_subtitle">Grab bookmarks, passwords, and more on any device in a snap. Your personal data stays safe and secure with encryption.</string>
<!-- Sync onboarding button. -->
<string name="nova_onboarding_sync_button">Start syncing</string>
<!-- Marketing onboarding title. -->
<string name="nova_onboarding_marketing_title">Help us build a better internet</string>
<!-- Marketing onboarding body. 'Firefox' and 'Mozilla' are intentionally hardcoded.
%1$s is replaced by an active link, using nova_onboarding_marketing_body_link_text as text (“How we use the data”). -->
<string name="nova_onboarding_marketing_body" tools:ignore="BrandUsage">Share how you discovered Firefox, and that you use it, with Mozilla’s marketing partners. This data is never sold. %1$s</string>
<!-- Marketing onboarding body link text. -->
<string name="nova_onboarding_marketing_body_link_text">How we use the data</string>
<!-- Notifications onboarding title. 'Firefox' is intentionally hardcoded. -->
<string name="nova_onboarding_notifications_title" tools:ignore="BrandUsage,UnusedResources">Notifications help you stay safer with Firefox</string>
<!-- Notifications onboarding subtitle. 'Firefox' is intentionally hardcoded. -->
<string name="nova_onboarding_notifications_subtitle" tools:ignore="BrandUsage,UnusedResources">Discover the latest privacy features in Firefox so you’re always up to date on how to stay protected.</string>
<!-- Notifications onboarding button. -->
<string name="nova_onboarding_notifications_button">Turn on notifications</string>
<!-- "Add search widget" onboarding title. -->
<string name="nova_onboarding_add_search_widget_title">Make every search more private</string>
<!-- "Add search widget" onboarding subtitle. 'Firefox' is intentionally hardcoded. -->
<string name="nova_onboarding_add_search_widget_subtitle" tools:ignore="BrandUsage">Start every search from your phone’s home screen and know Firefox’s automatic protections have your back.</string>
<!-- "Add search widget" onboarding button. 'Firefox' is intentionally hardcoded. -->
<string name="nova_onboarding_add_search_widget_button" tools:ignore="BrandUsage">Add Firefox widget</string>
<!-- ==== End of Project "Nova" onboarding strings ==== -->
<!-- Onboarding header for the toolbar selection card, used by Nimbus experiments. -->
<string name="onboarding_customize_toolbar_title" tools:ignore="UnusedResources">Pick a toolbar placement</string>
<!-- Onboarding sub header for toolbar selection card, used by Nimbus experiments. -->
<string name="onboarding_customize_toolbar_description" tools:ignore="UnusedResources">Keep searches within reach.</string>
<!-- Onboarding label for 'Save and continue' button, used by Nimbus experiments. -->
<string name="onboarding_save_and_continue_button">Save and continue</string>
<!-- Onboarding toolbar selection card label for 'top' option, used by Nimbus experiments. -->
<string name="onboarding_customize_toolbar_top_option">Top</string>
<!-- Onboarding toolbar selection card label for 'bottom' option, used by Nimbus experiments. -->
<string name="onboarding_customize_toolbar_bottom_option">Bottom</string>
<!-- Onboarding toolbar selection card content description for the main image. -->
<string name="onboarding_customize_toolbar_main_image_content_description">Large header image of the toolbar selection view showing an illustrated toolbar.</string>
<!-- Onboarding toolbar selection card content description for the toolbar placement image. -->
<string name="onboarding_customize_toolbar_placement_bottom_content_description">Image of the bottom toolbar</string>
<string name="onboarding_customize_toolbar_placement_top_content_description">Image of the top toolbar</string>
<!-- Action label for toolbar options that can be selected. Talkback will append this to say "Double tap to select". -->
<string name="onboarding_customize_toolbar_a11y_action_label_select">select</string>
<!-- Onboarding header for the theme selection card, used by Nimbus experiments. -->
<string name="onboarding_customize_theme_title" tools:ignore="UnusedResources">Pick a theme</string>
<!-- Onboarding sub header for theme selection card, used by Nimbus experiments. -->
<string name="onboarding_customize_theme_description" tools:ignore="UnusedResources">See the web in the best light.</string>
<!-- Onboarding label for 'Save and start browsing' button, used by Nimbus experiments. -->
<string name="onboarding_save_and_start_button">Save and start browsing</string>
<!-- Onboarding theme selection card label for 'dark' option, used by Nimbus experiments. -->
<string name="onboarding_customize_theme_dark_option">Dark</string>
<!-- Onboarding theme selection card label for 'light' option, used by Nimbus experiments. -->
<string name="onboarding_customize_theme_light_option">Light</string>
<!-- Onboarding theme selection card label for 'System auto' option, used by Nimbus experiments. -->
<string name="onboarding_customize_theme_system_option">System auto</string>
<!-- Onboarding theme selection card content description for the main image. -->
<string name="onboarding_customize_theme_main_image_content_description">Large header image of the theme selection view showing illustrated artist and builder tools.</string>
<!-- Onboarding theme selection card content description for the theme selection image. %1$s is placeholder for either 'system', 'light' or 'dark'. -->
<string name="onboarding_customize_theme_content_description">Image of the %1$s theme</string>
<!-- Action label for options that can be selected. Talkback will append this to say "Double tap to select". -->
<string name="onboarding_customize_theme_a11y_action_label_select">select</string>
<!-- Widget Picker -->
<!-- Widget description for widget picker screen -->
<string name="widget_picket_description">Start a quick search</string>
<!-- Search Widget -->
<!-- Content description for searching with a widget. %1$s is the name of the app (for example "Firefox"). -->
<string name="search_widget_content_description_2">Open a new %1$s tab</string>
<!-- Text preview for smaller sized widgets -->
<string name="search_widget_text_short">Search</string>
<!-- Text preview for larger sized widgets -->
<string name="search_widget_text_long">Search the web</string>
<!-- Content description (not visible, for screen readers etc.): Voice search -->
<string name="search_widget_voice">Voice search</string>
<!-- Preferences -->
<!-- Title for the settings page-->
<string name="settings">Settings</string>
<!-- Preference category for general settings -->
<string name="preferences_category_general">General</string>
<!-- Preference category for all links about Fenix -->
<string name="preferences_category_about">About</string>
<!-- Preference category for settings related to changing the default search engine -->
<string name="preferences_category_select_default_search_engine">Select one</string>
<!-- Preference for settings related to managing search shortcuts for the quick search menu -->
<string name="preferences_manage_search_shortcuts_2">Manage alternative search engines</string>
<!-- Summary for preference for settings related to managing search shortcuts for the quick search menu -->
<string name="preferences_manage_search_shortcuts_summary">Edit engines visible in the search menu</string>
<!-- Preference category for settings related to managing search shortcuts for the quick search menu -->
<string name="preferences_category_engines_in_search_menu">Engines visible on the search menu</string>
<!-- Preference for settings related to changing the default search engine -->
<string name="preferences_default_search_engine">Default search engine</string>
<!-- Preference for settings related to Search -->
<string name="preferences_search">Search</string>
<!-- Preference for settings related to Search engines -->
<string name="preferences_search_engines">Search engines</string>
<!-- Settings item to add a search widget on the device's homescreen. -->
<string name="preferences_add_search_widget_from_settings">Home screen widget</string>
<!-- Preference for settings related to Search engines suggestions-->
<string name="preferences_search_engines_suggestions">Suggestions from search engines</string>
<!-- Preference Category for settings related to Search address bar -->
<string name="preferences_settings_address_bar">Address bar preferences</string>
<!-- Preference Category for settings to Firefox Suggest -->
<string name="preference_search_address_bar_fx_suggest" tools:ignore="BrandUsage">Address bar - Firefox Suggest</string>
<!-- Preference link to Learn more about Firefox Suggest -->
<string name="preference_search_learn_about_fx_suggest" tools:ignore="BrandUsage">Learn more about Firefox Suggest</string>
<!-- Preference link to rating Fenix on the Play Store -->
<string name="preferences_rate">Rate on Google Play</string>
<!-- Preference linking to about page for Fenix
%1$s is the name of the app (for example "Firefox"). -->
<string name="preferences_about">About %1$s</string>
<!-- Preference for settings related to changing the default browser -->
<string name="preferences_set_as_default_browser">Set as default browser</string>
<!-- Preference category for advanced settings -->
<string name="preferences_category_advanced">Advanced</string>
<!-- Preference category for privacy and security settings -->
<string name="preferences_category_privacy_security">Privacy and security</string>
<!-- Preference for advanced site settings -->
<string name="preferences_site_settings">Site settings</string>
<!-- Preference for private browsing options -->
<string name="preferences_private_browsing_options">Private browsing</string>
<!-- Preference for opening links in a private tab-->
<string name="preferences_open_links_in_a_private_tab">Open links in a private tab</string>
<!-- Preference for allowing screenshots to be taken while in a private tab-->
<string name="preferences_allow_screenshots_in_private_mode">Allow screenshots in private browsing</string>
<!-- Will inform the user of the risk of activating Allow screenshots in private browsing option -->
<string name="preferences_screenshots_in_private_mode_disclaimer">If allowed, private tabs will also be visible when multiple apps are open</string>
<!-- Preference for adding private browsing shortcut -->
<string name="preferences_add_private_browsing_shortcut">Add private browsing shortcut</string>
<!-- Preference for enabling "HTTPS-Only" mode -->
<string name="preferences_https_only_title">HTTPS-Only Mode</string>
<!-- Preference title for using the screen lock to hide tabs in private browsing -->
<string name="preferences_pbm_lock_screen_title">Use screen lock to hide tabs in private browsing</string>
<!-- Informs the user how to access the tabs when "Use screen lock to hide tabs in private browsing" is enabled -->
<string name="preferences_pbm_lock_screen_summary_3">View tabs with your fingerprint, PIN, or face unlock. Turning this on also prevents screen capture and sharing.</string>
<!-- Label for cookie banner section in quick settings panel. -->
<string name="cookie_banner_blocker">Cookie Banner Blocker</string>
<!-- Preference for removing cookie/consent banners from sites automatically in private mode. See reduce_cookie_banner_summary for additional context. -->
<string name="preferences_cookie_banner_reduction_private_mode">Cookie Banner Blocker in private browsing</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="reduce_cookie_banner_off_for_site">Off for this site</string>
<!-- Text for cancel button indicating that cookie banner reduction is not supported for the current site, this is shown as part of the cookie banner details view. -->
<string name="cookie_banner_handling_details_site_is_not_supported_cancel_button">Cancel</string>
<!-- Text for request support button indicating that cookie banner reduction is not supported for the current site, this is shown as part of the cookie banner details view. -->
<string name="cookie_banner_handling_details_site_is_not_supported_request_support_button_2">Send request</string>
<!-- Text for title indicating that cookie banner reduction is not supported for the current site, this is shown as part of the cookie banner details view. -->
<string name="cookie_banner_handling_details_site_is_not_supported_title_2">Request support for this site?</string>
<!-- Label for the snackBar, after the user reports with success a website where cookie banner reducer did not work -->
<string name="cookie_banner_handling_report_site_snack_bar_text_2">Request sent</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="reduce_cookie_banner_on_for_site">On for this site</string>
<!-- Text for indicating that a request for unsupported site was sent to Nimbus (it's a Mozilla library for experiments), this is shown as part of the protections panel with the tracking protection toggle -->
<string name="reduce_cookie_banner_unsupported_site_request_submitted_2">Support request sent</string>
<!-- Text for indicating cookie banner handling is currently not supported for this site, this is shown as part of the protections panel with the tracking protection toggle -->
<string name="reduce_cookie_banner_unsupported_site">Site currently not supported</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. %1$s is a shortened URL of the current site. -->
<string name="reduce_cookie_banner_details_panel_title_on_for_site_1">Turn on Cookie Banner Blocker 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. %1$s is a shortened URL of the current site. -->
<string name="reduce_cookie_banner_details_panel_title_off_for_site_1">Turn off Cookie Banner Blocker for %1$s?</string>
<!-- Title text for a detail explanation indicating cookie banner reducer didn't work for the current site, this is shown as part of the cookie banner panel in the toolbar. %1$s is the name of the app (for example "Firefox"). -->
<string name="reduce_cookie_banner_details_panel_title_unsupported_site_request_2">%1$s can’t automatically reject cookie requests on this site. You can send a request to support this site in the future.</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. %1$s is the name of the app (for example "Firefox"). -->
<string name="reduce_cookie_banner_details_panel_description_off_for_site_1">Turn off and %1$s will clear cookies and reload this site. This may sign you out or empty shopping carts.</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. %1$s is the name of the app (for example "Firefox"). -->
<string name="reduce_cookie_banner_details_panel_description_on_for_site_3">Turn on and %1$s will try to automatically refuse all cookie banners on this site.</string>
<!--Title for the cookie banner re-engagement CFR, the placeholder is replaced with app name. %1$s is the name of the app (for example "Firefox"). -->
<string name="cookie_banner_cfr_title">%1$s just refused cookies for you</string>
<!--Message for the cookie banner re-engagement CFR -->
<string name="cookie_banner_cfr_message">Less distractions, less cookies tracking you on this site.</string>
<!-- Description of the preference to enable "HTTPS-Only" mode. -->
<string name="preferences_https_only_summary">Automatically attempts to connect to sites using HTTPS encryption protocol for increased security.</string>
<!-- Summary of https only preference if https only is set to off -->
<string name="preferences_https_only_off">Off</string>
<!-- Summary of https only preference if https only is set to on in all tabs -->
<string name="preferences_https_only_on_all">On in all tabs</string>
<!-- Summary of https only preference if https only is set to on in private tabs only -->
<string name="preferences_https_only_on_private">On in private tabs</string>
<!-- Text displayed that links to website containing documentation about "HTTPS-Only" mode -->
<string name="preferences_http_only_learn_more">Learn more</string>
<!-- Option for the https only setting -->
<string name="preferences_https_only_in_all_tabs">Enable in all tabs</string>
<!-- Option for the https only setting -->
<string name="preferences_https_only_in_private_tabs">Enable only in private tabs</string>
<!-- Title shown in the error page for when trying to access a http website while https only mode is enabled. -->
<string name="errorpage_httpsonly_title">Secure site not available</string>
<!-- Message shown in the error page for when trying to access a http website while https only mode is enabled. The message has two paragraphs. This is the first. -->
<string name="errorpage_httpsonly_message_title">Most likely, the website simply does not support HTTPS.</string>
<!-- Message shown in the error page for when trying to access a http website while https only mode is enabled. The message has two paragraphs. This is the second. -->
<string name="errorpage_httpsonly_message_summary">However, it’s also possible that an attacker is involved. If you continue to the website, you should not enter any sensitive info. If you continue, HTTPS-Only mode will be turned off temporarily for the site.</string>
<!-- Preference for accessibility -->
<string name="preferences_accessibility">Accessibility</string>
<!-- Preference to override the Mozilla account server -->
<string name="preferences_override_account_server">Custom Mozilla account server</string>
<!-- Preference to override the Sync token server -->
<string name="preferences_override_sync_tokenserver">Custom Sync server</string>
<!-- Preference category for account information -->
<string name="preferences_category_account">Account</string>
<!-- Preference for changing where the AddressBar is positioned -->
<string name="preferences_toolbar_2">Address bar location</string>
<!-- Preference for changing toolbar layout -->
<string name="preferences_toolbar_layout">Toolbar layout</string>
<!-- Preference for changing default theme to dark or light mode -->
<string name="preferences_theme">Theme</string>
<!-- Preference for customizing the home screen -->
<string name="preferences_home_2">Homepage</string>
<!-- Preference for customizing the app icon-->
<string name="preferences_app_icon">App icon</string>
<!-- Preference for showing the tab strip -->
<string name="preferences_tab_strip">Tab bar display</string>
<!-- Preference for gestures based actions -->
<string name="preferences_toolbar_shortcut">Toolbar shortcut</string>
<!-- Preference for gestures based actions -->
<string name="preferences_toolbar_select_shortcut">Select a shortcut</string>
<!-- Preference for gestures based actions -->
<string name="preferences_gestures">Gestures</string>
<!-- Preference for settings related to visual options -->
<string name="preferences_customize">Customize</string>
<!-- Preference description shown in the banner prompting the user to sign in for sync features -->
<string name="preferences_sign_in_description">Sync tabs, bookmarks, passwords, and more.</string>
<!-- Preference shown instead of account display name while account profile information isn't available yet. -->
<string name="preferences_account_default_name_2">Mozilla account</string>
<!-- Preference text for account title when there was an error syncing FxA -->
<string name="preferences_account_sync_error">Reconnect to resume syncing</string>
<!-- Preference for language -->
<string name="preferences_language">Language</string>
<!-- Preference for translations -->
<string name="preferences_translations">Translations</string>
<!-- Preference for data collection -->
<string name="preferences_data_collection">Data collection</string>
<!-- Preference for developers -->
<string name="preferences_remote_debugging">Remote debugging via USB</string>
<!-- Preference title for switch preference to show search suggestions -->
<string name="preferences_show_search_suggestions">Show search suggestions</string>
<!-- Preference title for switch preference to show voice search button -->
<string name="preferences_show_voice_search">Show voice search</string>
<!-- Preference title for switch preference to show search suggestions also in private mode -->
<string name="preferences_show_search_suggestions_in_private">Show in private sessions</string>
<!-- Preference title for switch preference to show trending search suggestions -->
<string name="preferences_show_trending_search_suggestions">Show trending suggestions</string>
<!-- Preference title for switch preference to show recent search suggestions -->
<string name="preferences_show_recent_search_suggestions">Show recent searches</string>
<!-- Preference title for switch preference to show a clipboard suggestion when searching -->
<string name="preferences_show_clipboard_suggestions">Show clipboard suggestions</string>
<!-- Preference title for switch preference to suggest browsing history when searching -->
<string name="preferences_search_browsing_history">Search browsing history</string>
<!-- Preference title for switch preference to suggest bookmarks when searching -->
<string name="preferences_search_bookmarks">Search bookmarks</string>
<!-- Preference title for switch preference to suggest synced tabs when searching -->
<string name="preferences_search_synced_tabs">Search synced tabs</string>
<!-- Preference for account settings -->
<string name="preferences_account_settings">Account settings</string>
<!-- Preference for enabling url autocomplete-->
<string name="preferences_enable_autocomplete_urls">Autocomplete URLs</string>
<!-- Preference title for switch preference to show sponsored Firefox Suggest search suggestions -->
<string name="preferences_show_sponsored_suggestions">Suggestions from sponsors</string>
<!-- Summary for preference to show sponsored Firefox Suggest search suggestions.
%1$s is the name of the app (for example "Firefox"). -->
<string name="preferences_show_sponsored_suggestions_summary">Support %1$s with occasional sponsored suggestions</string>
<!-- Preference title for switch preference to show Firefox Suggest search suggestions for web content.
%1$s is the name of the app (for example "Firefox"). -->
<string name="preferences_show_nonsponsored_suggestions">Suggestions from %1$s</string>
<!-- Summary for preference to show Firefox Suggest search suggestions for web content -->
<string name="preferences_show_nonsponsored_suggestions_summary">Get suggestions from the web related to your search</string>
<!-- Preference for link sharing -->
<string name="preferences_link_sharing">Link sharing</string>
<!-- Title for the link sharing toggle. %1$s is replaced by the brand name (e.g. Firefox). -->
<string name="link_sharing_toggle_title">Include %1$s download link on WhatsApp shares</string>
<!-- Body for the link sharing toggle. %1$s is replaced by the brand name (e.g. Firefox). -->
<string name="link_sharing_toggle_body">Invite your friends to try faster, safer browsing with %1$s every time you share a link on WhatsApp.</string>
<!--Snackbar message shown when user shares a link -->
<string name="link_shared_snackbar_message">Link shared</string>
<!-- Snackbar action label shown when user shares a link -->
<string name="link_shared_snackbar_action">Manage settings</string>
<!-- Preference for open links in third party apps -->
<string name="preferences_open_links_in_apps">Open links in apps</string>
<!-- Preference for open links in third party apps always open in apps option -->
<string name="preferences_open_links_in_apps_always">Always</string>
<!-- Preference for open links in third party apps ask before opening option -->
<string name="preferences_open_links_in_apps_ask">Ask before opening</string>
<!-- Preference for open links in third party apps never open in apps option -->
<string name="preferences_open_links_in_apps_never">Never</string>
<!-- Preference category for file storage. -->
<string name="preferences_category_file_storage">File storage</string>
<!-- Preference title for downloads default location. -->
<string name="preferences_downloads_default_location_title">Default download location</string>
<!-- Message shown as the summary of the download location preference when the
app has lost the permission to access a previously selected custom folder. -->
<string name="preference_downloads_folder_permission_lost" tools:ignore="UnusedResources">You don’t have permission to use this folder. Try choosing a different one.</string>
<!-- Preference title for choosing an app to handle downloads -->
<string name="preferences_choose_app_for_downloads">Manage downloads with another app</string>
<!-- Title for the setting to automatically clean up downloaded files. %s is the name of the app (for example "Firefox"). -->
<string name="preferences_downloads_settings_clean_up_files_title">Delete from %s and device</string>
<!-- Summary for the setting to automatically clean up downloaded files -->
<string name="preferences_downloads_settings_clean_up_files_summary">Removing files from your download manager also removes them from your device</string>
<!-- Preference for downloads -->
<string name="preferences_downloads">Downloads</string>
<!-- Preference for enabling gecko engine logs -->
<string name="preferences_enable_gecko_logs">Enable Gecko logs</string>
<!-- Message to indicate users that we are quitting the application to apply the changes -->
<string name="quit_application">Quitting the application to apply changes…</string>
<!-- Preference for extensions -->
<string name="preferences_extensions">Extensions</string>
<!-- Preference for installing a local extension -->
<string name="preferences_install_local_extension">Install extension from file</string>
<!-- Preference for notifications -->
<string name="preferences_notifications">Notifications</string>
<!-- Summary for notification preference indicating notifications are allowed -->
<string name="notifications_allowed_summary">Allowed</string>
<!-- Summary for notification preference indicating notifications are not allowed -->
<string name="notifications_not_allowed_summary">Not allowed</string>
<!-- Add-on Permissions -->
<!-- The title of the origin permission option allowing a user to enable the extension to run on all sites -->
<string name="addons_permissions_allow_for_all_sites">Allow for all sites</string>
<!-- The subtitle for the allow for all sites preference toggle -->
<string name="addons_permissions_allow_for_all_sites_subtitle">If you trust this extension, you can give it permission on every website.</string>
<!-- The text shown when an extension does not require permissions -->
<string name="addons_does_not_require_permissions">This extension doesn’t require any permissions.</string>
<!-- The description of data collection permissions listed in the addon's permissions screen. %1$s is a formatted list of permissions. -->
<string name="addons_permissions_required_data_collection_description_2">The developer says this extension collects: %1$s</string>
<!-- The description of the "none" data collection permission, when the extension doesn't collect anything according to the developer. -->
<string name="addons_permissions_none_required_data_collection_description">The developer says this extension doesn’t require data collection.</string>
<!-- The title of the required permissions section from addon's permissions screen. -->
<string name="addons_permissions_heading_required_permissions">Required permissions:</string>
<!-- The title of the optional permissions section from addon's permissions screen. -->
<string name="addons_permissions_heading_optional_permissions">Optional permissions:</string>
<!-- The title of the required data collection permissions section from addon's permissions screen. -->
<string name="addons_permissions_heading_required_data_collection">Required data collection:</string>
<!-- The title of the optional data collection permissions section from addon's permissions screen. -->
<string name="addons_permissions_heading_optional_data_collection">Optional data collection:</string>
<!-- Add-on Preferences -->
<!-- Preference to customize the configured AMO (addons.mozilla.org) collection -->
<string name="preferences_customize_extension_collection">Custom extension collection</string>
<!-- Button caption to confirm the add-on collection configuration -->
<string name="customize_addon_collection_ok">OK</string>
<!-- Button caption to abort the add-on collection configuration -->
<string name="customize_addon_collection_cancel">Cancel</string>
<!-- Hint displayed on input field for custom collection name -->
<string name="customize_addon_collection_hint">Collection name</string>
<!-- Hint displayed on input field for custom collection user ID-->
<string name="customize_addon_collection_user_hint">Collection owner (User ID)</string>
<!-- Toast shown after confirming the custom extension collection configuration -->
<string name="toast_customize_extension_collection_done">Extension collection modified. Quitting the application to apply changes…</string>
<!-- Customize Home -->
<!-- Header text for jumping back into the recent tab in customize the home screen -->
<string name="customize_toggle_jump_back_in">Jump back in</string>
<!-- Title for the customize home screen section with bookmarks. -->
<string name="customize_toggle_bookmarks">Bookmarks</string>
<!-- Title for the customize home screen section with recently visited. Recently visited is
a section where users see a list of tabs that they have visited in the past few days -->
<string name="customize_toggle_recently_visited">Recently visited</string>
<!-- Title for the customize home screen section with Pocket. -->
<string name="customize_toggle_pocket_3">Stories</string>
<!-- Title for the customize home screen section with sponsored Pocket stories. -->
<string name="customize_toggle_pocket_sponsored">Sponsored stories</string>
<!-- Title for the opening wallpaper settings screen -->
<string name="customize_wallpapers">Wallpapers</string>
<!-- Title for the customize home screen section with sponsored shortcuts. -->
<string name="customize_toggle_contile">Sponsored shortcuts</string>
<!-- Wallpapers -->
<!-- Content description for various wallpapers. %1$s is the name of the wallpaper. -->
<string name="wallpapers_item_name_content_description">Wallpaper Item: %1$s</string>
<!-- Snackbar message for when wallpaper couldn't be downloaded -->
<string name="wallpaper_download_error_snackbar_message">Couldn’t download wallpaper</string>
<!-- Snackbar label for action to retry downloading the wallpaper -->
<string name="wallpaper_download_error_snackbar_action">Try again</string>
<!-- Snackbar message for when wallpaper couldn't be selected because of the disk error -->
<string name="wallpaper_select_error_snackbar_message">Couldn’t change wallpaper</string>
<!-- Text displayed that links to website containing documentation about the "Limited Edition" wallpapers. -->
<string name="wallpaper_learn_more">Learn more</string>
<!-- Text for classic wallpapers title. %s is the name of the app (for example "Firefox"). -->
<string name="wallpaper_classic_title">Classic %s</string>
<!-- Text for artist series wallpapers title. "Artist series" represents a collection of artist collaborated wallpapers. -->
<string name="wallpaper_artist_series_title">Artist series</string>