This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathstrings.xml
2173 lines (1614 loc) · 139 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
<resources>
<!-- This string is used on the virtual keyboard to label the 'Enter' key (stylized in uppercase letters as 'ENTER'). -->
<string name="keyboard_enter_label">ENTER</string>
<!-- This string is used on the virtual keyboard to label the 'Enter' key with a "Go" IME action.
The action key performs a "go" operation to take the user to the target of the text they typed.
Typically used, for example, when entering a URL. (stylized in uppercase letters as 'GO')
-->
<string name="keyboard_go_label">GO</string>
<!-- This string is used on the virtual keyboard to label the 'Enter' key with a "Search" IME action.
The action key performs a "search" operation, taking the user to the results of searching for the text
they have typed. (stylized in uppercase letters as 'SEARCH')
-->
<string name="keyboard_search_label">SEARCH</string>
<!-- This string is used on the virtual keyboard to label the 'Enter' key with a "Send" IME action.
The action key performs a "send" operation, delivering the text to its target. This is typically used
when composing a message in IM or SMS where sending is immediate. (stylized in uppercase letters as 'SEND')
-->
<string name="keyboard_send_label">SEND</string>
<!-- This string is used on the virtual keyboard to label the 'Enter' key with a "Next" IME action.
The action key performs a "next" operation, taking the user to the next field that will accept text.
(stylized in uppercase letters as 'NEXT')
-->
<string name="keyboard_next_label">NEXT</string>
<!-- This string is used on the virtual keyboard to label the 'Enter' key with a "Done" IME action.
The action key performs a "done" operation, typically meaning there is nothing more to input and the
IME will be closed. (stylized in uppercase letters as 'DONE')
-->
<string name="keyboard_done_label">DONE</string>
<!-- This string is used on the virtual keyboard to label the 'space' key-->
<string name="keyboard_space_label">space</string>
<!-- This string is displayed in the button that means the user accepts the
permission requested for in the permission dialog box. -->
<string name="permission_allow">Allow</string>
<!-- This string is displayed in the button that means the user rejects the
permission requested for in the permission dialog box. -->
<string name="permission_reject">Don’t Allow</string>
<!-- This string is displayed in the button that means the user wants to enable/grant a permission. -->
<string name="permission_enable">Enable</string>
<!-- This string is displayed in a label that means the permission has already been granted -->
<string name="permission_enabled">Enabled</string>
<!-- This string will be displayed in a dialog box presented to the user
when the application needs to request permission to access the device's camera.
'%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_camera">Will you allow %1$s to use your camera?</string>
<!-- This string will be displayed in a dialog box presented to the user
when the application needs to request permission to access the device's microphone.
'%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_microphone">Will you allow %1$s to use your microphone?</string>
<!-- This string will be displayed in a dialog box presented to the user
when the application needs to request permission to access the device's camera and microphone.
'%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_camera_and_microphone">Will you allow %1$s to use your camera and microphone?</string>
<!-- This string will be displayed in a dialog box presented to the user
when the application needs to request permission to access the device's geographic location.
'%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_location">Will you allow %1$s to access your location?</string>
<!-- This string will be displayed in a dialog box presented to the user
when the application needs to request permission to send browser-level
push notifications from a particular website (i.e., same origin).
'%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_notification">Will you allow %1$s to send notifications?</string>
<!-- This string will be displayed in a dialog box presented to the user when the application
needs to request permission to access the device's external storage such as the
sdcard. '%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_read_external_storage">Will you allow %1$s to read your external storage?</string>
<!-- This string will be displayed in a dialog box presented to the user when the application
needs to request permission to access the device's external storage such as the
sdcard. '%1$s' will be replaced at runtime with the website's domain name. -->
<string name="permission_persistent_storage">Will you allow %1$s to store data in persistent storage?</string>
<!-- This string is displayed in the Settings dialog box and is used to label an
On/Off switch which toggles whether an application crash is reported without first
prompting the user. -->
<string name="settings_crash_reporting">Crash Reporting</string>
<!-- This string is displayed in the Settings dialog box and is used to label an
On/Off switch which toggles whether browser-level Telemetry is reported back to Mozilla. -->
<string name="settings_telemetry">Telemetry</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens a dialog box that contains privacy and security related settings. -->
<string name="settings_privacy_security">Privacy & Security</string>
<!-- This string is used to label a button in the 'Saved Logins' dialog window that, when pressed,
opens a dialog box that contains a list of saved logins. -->
<string name="settings_privacy_saved_logins">Saved Logins</string>
<!-- This string is used inm the title of the settings panel for the Logins and Passwords management. -->
<string name="settings_privacy_logins">Logins And Passwords</string>
<!-- This string is used to label a button that, when pressed, loads a website that
describes Mozilla's Privacy Policy. -->
<string name="settings_privacy_policy">Privacy Policy</string>
<!-- This string is used as the title of the pop-ups dialog used to remove sites from the currently
allowed pop-up sites. -->
<string name="settings_privacy_policy_popups_title_v1">Exceptions for Pop-Ups</string>
<!-- This string is displayed under the title the pop-ups dialog used to remove sites from the currently
allowed pop-up sites. -->
<string name="settings_privacy_policy_popups_description">You can specify which websites are allowed to open pop-up windows</string>
<!-- This string is used as the title of the WebXR dialog used to do not allow websites to access WebXR devices. -->
<string name="settings_privacy_policy_webxr_title">Virtual Reality permissions</string>
<!-- This string is displayed under the title the WebXR dialog used to do not allow websites to access WebXR devices. -->
<string name="settings_privacy_policy_webxr_description">The following sites are blocked from letting WebXR API access your VR device.</string>
<!-- This string is displayed in the first line of a text that's displayed in the middle of allowed pop-ups panel instead of the exceptions list
when there are no exceptions. -->
<string name="settings_privacy_policy_webxr_empty_description">When you open a website which uses WebXR, you can open a dialog that lets you to block WebXR on that site.</string>
<!-- This string labels the Reset button that removes all the sites not allowed to access WebXR -->
<string name="settings_privacy_policy_webxr_reset">Reset the sites not allowed to access Virtual Reality devices.</string>
<!-- This string is used as the title of the Tracking dialog used to do not allow websites to bypass tracking protection. -->
<string name="settings_privacy_policy_tracking_title">Exceptions for Enhanced Tracking Protection</string>
<!-- This string is displayed under the title the Tracking dialog used to do not allow websites to bypass tracking protection. -->
<string name="settings_privacy_policy_tracking_description">You’ve turned off protections on these websites.</string>
<!-- This string is displayed in the first line of a text that's displayed in the middle of the etp exceptions instead of the exceptions list
when there are no exceptions. -->
<string name="settings_privacy_policy_tracking_empty_description">When you allow a website to track your activity, they will appear here.</string>
<!-- This string labels the Reset button that removes all the sites not allowed to access WebXR -->
<string name="settings_privacy_policy_tracking_reset">Reset the Exceptions for Enhanced Tracking Protection.</string>
<!-- This string is used as the title of the Tracking dialog used to do not allow websites to bypass tracking protection. -->
<string name="settings_privacy_policy_login_exceptions_title">Login Exceptions</string>
<!-- This string is displayed under the title the Tracking dialog used to do not allow websites to bypass tracking protection. -->
<string name="settings_privacy_policy_login_exceptions_description">Logins that are not saved will be shown here</string>
<!-- This string is displayed in the first line of a text that's displayed in the middle of the etp exceptions instead of the exceptions list
when there are no exceptions. -->
<string name="settings_privacy_policy_login_exceptions_empty_description">Logins that are not saved will be shown here.</string>
<!-- This string labels the Reset button that removes all the sites not allowed to access WebXR -->
<string name="settings_privacy_policy_login_exceptions_reset">Reset the login exceptions.</string>
<!-- This string is displayed in the switch of each item of the the pop-up blocking list when the site is allowed. -->
<string name="pop_up_site_switch_allow">Allow</string>
<!-- This string is displayed in the switch of each item of the the pop-up blocking list when the site is denied. -->
<string name="pop_up_site_switch_block">Block</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens a dialog box that contains settings that an application or Web developer might want to change. -->
<string name="settings_developer_options">Developer Options</string>
<!-- This string is used in the 'Settings' window when user is not signed into a Firefox Account -->
<string name="settings_fxa_account_sign_in">Sign Into Account</string>
<!-- This string is used in the 'Settings' window when user is signed into a Firefox Account -->
<string name="settings_fxa_account_manage">Manage Account</string>
<!-- This string is used in the 'Account' window when user is signed into a Firefox Account -->
<string name="settings_fxa_account_sign_out">Sign Out</string>
<!-- This string is used in the 'Settings' window when user is signed into a Firefox Account, but needs to re-enter their password.
Most common reason for this state is that the account password was changed on another device. -->
<string name="settings_fxa_account_reconnect">Reconnect</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens a dialog box that contains language-related settings. -->
<string name="settings_language">Language</string>
<!-- This string is used to label the first string in the language list for voice and display languages.
If chosen the device will use the system language as the main language. -->
<string name="settings_language_follow_device">Follow device language</string>
<!-- This string is used to label a text label for selecting the language in the 'Language' dialog window
(accessible from the browser's Settings' dialog window). Below this string appears
the different options for language settings. -->
<string name="settings_language_settings">Language Settings</string>
<!-- This string is used to label a text label for selecting the language in the 'Language' dialog window
(accessible from the browser's Settings' dialog window). Below this string appears a list of locales for
the user to choose as their preferred reading languages for website content. Each locale,
as `language-tag` strings, is then included in the browser's `Accept-Language` HTTP request
header that is sent to websites, as well as the JavaScript property, `navigator.language`. -->
<string name="settings_language_choose_language_webpage_content">Choose your preferred language for displaying pages</string>
<!-- This string is used to label a text label for selecting the language in the 'Language' dialog window
(accessible from the browser's Settings' dialog window). Below this string appears a list of locales for
the user to choose as their preferred language for the browser's speech-to-text 'Voice Search' system.
Based on the user's selection, the printed language is mapped to its ISO 639-1 code
(e.g., `Español` is mapped to `es`) when configured in the 'Voice Search' system. -->
<string name="settings_language_choose_language_voice_search">Choose your preferred language for voice search</string>
<!-- This string is used to label a text label that appears in the header of 'Language Settings' ->
'Firefox Display Language' dialog window (accessible from the browser's Settings dialog window).
Below this string appears a list of locales for the user to choose as their preferred display
language for the application UI.
'%1$s' Will be replaced at runtime with the app name. -->
<string name="settings_language_choose_display_language_title">%1$s Display Language</string>
<!-- This string is used to label a text label that appears in the header description of 'Language Settings' ->
'Firefox Display Language' dialog window (accessible from the browser's Settings dialog window).
Below this string appears a list of locales for the user to choose as their preferred display
language for the application UI. -->
<string name="settings_language_choose_language_display_description">Choose the language used to display menus, messages, and notifications.</string>
<!-- This string is used to label a text label that appears in the header of 'Language Settings' ->
'Voice Search Language' dialog window (accessible from the browser's Settings dialog window).
Below this string appears a list of locales for the user to choose as their preferred voice search
language. -->
<string name="settings_language_choose_language_voice_search_title">Voice Search Language</string>
<!-- This string is used to label a text label that appears in the header description of 'Language Settings' ->
'Voice Search Language' dialog window (accessible from the browser's Settings dialog window).
Below this string appears a list of locales for the user to choose as their preferred voice search
language. -->
<string name="settings_language_choose_language_voice_search_description">Choose your preferred language for voice search.</string>
<!-- This string is used to label a text label that appears in the header of 'Language Settings' ->
'Preferred Language for Displaying Websites' dialog window (accessible from the browser's Settings dialog window).
Below this string appears a list of locales for the user to choose as their preferred languages for web content. -->
<string name="settings_language_choose_language_content_title">Preferred Website Languages</string>
<!-- This string is used to label a text label that appears in the header description of 'Language Settings' ->
'Preferred Language for Displaying Websites' dialog window (accessible from the browser's Settings dialog window).
Below this string appears a list of locales for the user to choose as their preferred languages for web content. -->
<string name="settings_language_choose_language_content_description">Web pages are sometimes offered in more than one language. Choose the languages you want to display in order of preference to the left side.</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'English (US)'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_english">English (US)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'English (US)'. -->
<string name="settings_language_english_us">English (US)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'English (UK)'. -->
<string name="settings_language_english_uk">English (UK)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Chinese (Traditional/Zhuyin)'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_traditional_chinese">Chinese (Traditional/Zhuyin)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Chinese (Simplified/Pinyin)'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_simplified_chinese">Chinese (Simplified/Pinyin)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Japanese'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_japanese">Japanese</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'French'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_french">French</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'German'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_german">German</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Spanish'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_spanish">Spanish</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Spanish (Spain)'. -->
<string name="settings_language_spanish_spain">Spanish (Spain)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Korean'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_korean">Korean</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Italian'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_italian">Italian</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Russian'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_russian">Russian</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Polish'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_polish">Polish</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Danish'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_danish">Danish</string>
<!-- The string is used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_norwegian">Norwegian</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Norwegian (Bokmaal)'. -->
<string name="settings_language_norwegian_bokmaal">Norwegian (Bokmaal)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Norwegian (Nynorsk)'. -->
<string name="settings_language_norwegian_nynorsk">Norwegian (Nynorsk)</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Swedish'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_swedish">Swedish</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Finnish'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_finnish">Finnish</string>
<!-- This string is used to label a radio button in the 'Settings' Voice Search and the Display Language dialogs that, when pressed,
changes the app and the language of the speech-recognition-based search to 'Dutch'.
The string is also used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_dutch">Dutch</string>
<!-- The string is used in the keyboard space bar to show the current keyboard language and in
the keyboard languages panel list. -->
<string name="settings_language_thai">Thai</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens a dialog box that contains display-related settings: window size, pixel density, etc. -->
<string name="settings_display">Display</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens a dialog box that contains controller-related options: pointer color and scroll direction. -->
<string name="settings_controller_options">Controller Options</string>
<!-- This string is displayed in the 'Settings' dialog window and, is used to label an,
On/Off switch that enables/disables the speech-data reporting. -->
<string name="settings_report_speech_data">Report Speech Data</string>
<!-- This string is used to label a button that, when pressed, loads a website
that allows the user file an issue or problem they may have encountered while using the
application or while visiting a site. -->
<string name="settings_report_issue">Report an Issue</string>
<!-- This string is used in place of the 'settings_version' string (e.g., `version 1.1`) when the user is running
a developer-build version of the app. -->
<string name="settings_version_developer">Developer Build</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens the Firfox Reality support web site in the browser window. -->
<string name="settings_help">Help</string>
<!-- This string is displayed in the settings header under the Firefox Reality logo. When clicked the settings panel is closed
a the survey web site in opened in the currently focused window -->
<string name="settings_send_your_feedback">Send us Your Feedback</string>
<!-- This string is used in the 'Settings' window when user is signed-out of Firefox Accounts -->
<string name="settings_accounts_sign_in">Sign in</string>
<!-- This string is used in the 'Settings' window when user is signed into a Firefox Account -->
<string name="settings_accounts_sign_out">Sign out</string>
<!-- This string is used in the 'Settings' window when user is signed into a Firefox Account, but needs to re-enter their password.
Most common reason for this state is that the account password was changed on another device. -->
<string name="settings_accounts_reconnect">Reconnect</string>
<!-- This string is used to label a button in the 'Settings' dialog window that, when pressed,
opens the Release Notes web site for the current app version. -->
<string name="settings_whats_new">What’s New</string>
<!-- This string is the title of a dialog box shown to the user when a settings
change requires the application to restart. -->
<string name="restart_dialog_restart">Restart Required</string>
<!-- This string is the text displayed in the restart dialog box explaining why the
restart is required. '%1$s' will be replaced at runtime with the app's name. -->
<string name="restart_dialog_text">You must restart %1$s in order to complete changes. Would you like to do that now?</string>
<!-- This string is used to label the button the user presses to restart the
application in the restart dialog. -->
<string name="restart_now_dialog_button">Restart Now</string>
<!-- This string is used to label the button the user presses in order to skip the application
from being restarted. -->
<string name="restart_later_dialog_button">Restart Later</string>
<!-- This string labels an On/Off switch in the 'Developer Options' dialog
and is used to enable or disable curved display. -->
<string name="developer_options_curved_display">Enable Curved Display</string>
<!-- This string labels an On/Off switch in the 'Developer Options' dialog
and is used to toggle remote debugging of website content in the application. -->
<string name="developer_options_remote_debugging">Enable Remote Debugging</string>
<!-- This string labels an On/Off switch in the developer options dialog
and is used to customize background environments of the app. -->
<string name="developer_options_env_override">Enable Environment Override</string>
<!-- This string labels an On/Off switch in the developer options dialog and is used to toggle
the performance monitor. The Performance monitor is used to detect pages that cause the
browser to run below a target framerate and pauses the page to restore performance.
-->
<string name="developer_options_performance_monitor">Enable Performance Monitor</string>
<!-- This string labels an On/Off switch in the developer options dialog and is used to toggle
debug logging. Debug logging provides runtime diagnostic information that may be collected
to help diagnose and fix problems with the application.
-->
<string name="developer_options_debug_logging">Enable Debug Logging</string>
<!-- This string labels an On/Off switch in the developer options dialog and is used to toggle
UI render mode. If enables it uses hardware acceleration which should be faster but it may be more unstable.
If disabled it uses software rendering which is stable but not as performant as hardware acceleration
-->
<string name="hardware_acceleration_switch">Enable UI Hardware Acceleration</string>
<!-- This string labels an On/Off switch in the developer options dialog and is used to toggle
the behavior of the navigation bar reload button. When enabled, the reloads will bypass
the browser cache. This feature is used by web developers when they want to always view
the most recent version of a web site.
-->
<string name="bypass_cache_on_reload_switch">Enable Cache Bypass On Reload</string>
<!-- This string labels an On/Off switch in the developer options dialog and is used to toggle
Multi-e10s. Multi-e10s allocates a process for each open window instead of having only one
process for all windows.
-->
<string name="multi_e10s_switch">Enable Multi-e10s</string>
<!-- The string labels an On/Off switch in the developer options dialog and is used to toggle enabling Servo. -->
<string name="developer_options_servo">Enable Servo</string>
<!-- The string labels the description text for the clear cookies and site data button in the
privacy options dialog. -->
<string name="developer_options_clear_cache_cookies_site_description">Cookies & Site Data</string>
<!-- The string labels the description text for the clear cached web content button in the
privacy options dialog. -->
<string name="developer_options_clear_cache_web_content_description">Cached Web Content</string>
<!-- The string labels the button text for the clear cache buttons in the privacy options dialog. -->
<string name="developer_options_clear_cache">Clear Data</string>
<!-- This string is used to label a numerical-entry field where the user may set a new value to
use for the display density. -->
<string name="developer_options_display_density">Display Density:</string>
<!-- This string is used to label buttons to enable editing of text fields in the
'Developer Options' dialog. Pressing this button switches the text to
editable-text fields so their values may be changed. -->
<string name="developer_options_edit">Edit</string>
<!-- This string is used to label the 'Edit' button once it has been pressed by the user. It
indicates that, when the button is pressed, the user's edits will be saved. -->
<string name="developer_options_save">Save</string>
<!-- This string is used to label the 'Show' button in Settings. It
indicates that, when the button is pressed opens a dialog box that contains more information.
For example it's used to open a URL with the privacy policy. -->
<string name="developer_options_show">Show</string>
<!-- This string is used to label a numerical entry field where the user may enter a new value
for the virtual displays Dots Per Inch (DPI). -->
<string name="developer_options_display_dpi">Display DPI:</string>
<!-- This string is used to label radio buttons for setting Multi-Sample Anti-Aliasing (MSAA) in
VR Immersive Mode. -->
<string name="developer_options_msaa">MSAA</string>
<!-- This string is used to label the MSAA radio button that disables MSAA in Immersive Mode. -->
<string name="developer_options_msaa_disabled">Disabled</string>
<!-- This string is used to label the MSAA radio button that enables two times MSAA in Immersive Mode. -->
<string name="developer_options_msaa_2">2x</string>
<!-- This string is used to label the MSAA radio button that enables two times MSAA in Immersive Mode. -->
<string name="developer_options_msaa_4">4x</string>
<!-- This string is used to label a set of radio buttons that allow the user to change the
User-Agent (UA) string of the browser. -->
<string name="developer_options_ua_mode">User-Agent Mode</string>
<!-- This string is used to label a set of radio buttons that allow the user to change the
default downloads storage. -->
<string name="security_options_downloads_storage">Downloads Default Storage</string>
<!-- This string is used to label the 'Desktop' radio button of the 'User-Agent Mode' settings option. -->
<string name="developer_options_ua_desktop">Desktop</string>
<!-- This string is used to label the 'Mobile' radio button of the 'User-Agent Mode' settings option. -->
<string name="developer_options_ua_mobile">Mobile</string>
<!-- This string is used to label the 'VR' radio button of the 'User-Agent Mode' settings option. -->
<string name="developer_options_ua_vr">VR</string>
<!-- This string is used to label the 'Internal Storage' radio button of the 'Downloads Storage' settings option. -->
<string name="privacy_options_downloads_storage_internal">Internal</string>
<!-- This string is used to label the 'External Storage' radio button of the 'Downloads Storage' settings option. -->
<string name="privacy_options_downloads_storage_external">External</string>
<!-- This string is used to label the 'Standard' radio button of the 'Enhanced Tracking protection' settings option. -->
<string name="privacy_options_tracking_etp">Standard</string>
<!-- This string is used as the description of the 'Standard' radio button of the 'Enhanced Tracking protection' settings option. -->
<string name="privacy_options_tracking_etp_description">Balanced for protection and performance. Pages will load normally.</string>
<!-- This string is used to label the 'Strict' radio button of the 'Tracking protection' settings option. -->
<string name="privacy_options_tracking_strict">Strict</string>
<!-- This string is used as the description of the 'Strict' radio button of the 'Enhanced Tracking protection' settings option. -->
<string name="privacy_options_tracking_strict_description">Stronger protection, but may cause some sites or content to break.</string>
<!-- This string is used to label the 'Off' radio button of the 'Tracking protection' settings option. -->
<string name="privacy_options_tracking_off">Off</string>
<!-- This string is used as the description of the 'Off' radio button of the 'Enhanced Tracking protection' settings option. -->
<string name="privacy_options_tracking_off_description">Allow every page to follow you around online to collect you browsing habits and interests.</string>
<!-- This string is used to label radio buttons for setting fixed-foveated-rendering (FFR) level.
The term "foveation" derives from "fovea", the area of higher-resolution vision in the human retina.
Higher values of this option result in larger parts of the peripheral vision being rendered
at lower resolutions than the content in the center of the view. These higher values reduce
quality to increase performance.
The Oculus implementation of fixed-foveated-rendering is described in more detail here:
https://developer.oculus.com/blog/optimizing-oculus-go-for-performance/-->
<string name="developer_options_foveated_app">Foveation Level (App)</string>
<!-- This string is used to label radio buttons for setting foveated level for WebVR immersive experiences -->
<string name="developer_options_foveated_webvr">Foveation Level (WebVR)</string>
<!-- This string is used to label the Foveated radio button that disables fixed-foveated-rendering in immersive mode. -->
<string name="developer_options_foveated_disabled">Disabled</string>
<!-- This string is used to label the Foveated radio button that enables low-level fixed-foveated-rendering. -->
<string name="developer_options_foveated_1">1</string>
<!-- This string is used to label the Foveated radio button that enables medium-level fixed-foveated-rendering. -->
<string name="developer_options_foveated_2">2</string>
<!-- This string is used to label the Foveated radio button that enables high-level fixed-foveated-rendering. -->
<string name="developer_options_foveated_3">3</string>
<!-- This string is used to label a set of radio buttons that allow the user to change the
scroll direction of the remote controller. -->
<string name="developer_options_scroll_direction">Scroll Direction</string>
<!-- This string is used to label the 'Natural' radio button of the 'Scroll Direction' settings option.
"Natural" refers to the motion of scrolled material being congruent with respect to direction of
motion of user input. -->
<string name="developer_options_scroll_direction_natural">Natural</string>
<!-- This string is used to label the 'Reversed' radio button of the 'Scroll Direction' settings option.
"Reversed" refers to the motion of scrolled material being reversed with respect to direction of
motion of user input. -->
<string name="developer_options_scroll_direction_reversed">Reversed</string>
<!-- This string describes what the 'Reset' button in the developer options does which is
restore all the developer settings to their default value. -->
<string name="developer_options_reset">Reset Developer Settings</string>
<!-- This string labels the 'Reset' button that restores the default developer settings values. -->
<string name="developer_options_reset_button">Reset</string>
<!-- This string is used to label buttons to enable editing of other options. -->
<string name="settings_button_edit">Edit</string>
<!-- This string describes the radio buttons used to select the user's background environment
(seen while not in Immersive Mode). -->
<string name="developer_options_environments">Environment</string>
<!-- This string labels the radio button that selects the 'Void' environment.
The 'Void' environment is an empty space that surrounds the user in empty, black space. -->
<string name="developer_options_env_void">Void</string>
<!-- This string labels the radio button that selects the 'Offworld' environment,
a sci-fi themed desert-like environment. The offworld references sci-fi fictional
representations of colonies on other non-Earth planets. -->
<string name="developer_options_env_offworld">Offworld</string>
<!-- This string labels the radio button that selects the 'Underwater' environment,
a brightly lit submarine themed environment. -->
<string name="developer_options_env_underwater">Underwater</string>
<!-- This string labels the radio button that selects the 'Winter' environment,
a snow-covered outdoor winter mountain scene. -->
<string name="developer_options_env_winter">Winter</string>
<!-- This string labels the radio button that selects the 'Meadow' environment,
a sunlit grassy meadow filled with tiny flowers and surrounded by mountains. -->
<string name="developer_options_env_meadow">Meadow</string>
<!-- This string labels the radio button that selects the 'Cave' environment,
a dimly-lit subterranean environment with fairytale structures set amongst mushrooms. -->
<string name="developer_options_env_cave">Cave</string>
<!-- This string describes the radio buttons used to select the pointer color. -->
<string name="developer_options_pointer_color">Pointer Color</string>
<!-- This string labels the radio button that sets the pointer color to purple. -->
<string name="developer_options_pointer_purple">Purple</string>
<!-- This string labels the radio button that sets the pointer color to white. -->
<string name="developer_options_pointer_white">White</string>
<!-- This string is used to label a text entry field where the user may enter a new value
for the home page. -->
<string name="developer_options_homepage">Homepage</string>
<!-- This string is used to in the FxA account manage panel as a description of the Sign In/Out button. -->
<string name="fxa_account_options_account">Account</string>
<!-- This string is used to in the FxA account manage panel as a header for the sync options. -->
<string name="fxa_account_options_sync_title">Sync Settings</string>
<!-- This string is used to in the FxA account manage panel as the description of the Sync button when is not syncing.
The sync button will start syncing when pressed-->
<string name="fxa_account_options_sync_now">Sync Now</string>
<!-- This string is used to in the FxA account manage panel as the description of the Sync button while syncon.
The sync button will start syncing when pressed-->
<string name="fxa_account_options_syncing">Syncing...</string>
<!-- This string is used in the FxA account manager panel as a header for the sync options for syncing
history, bookmarks, passwords, etc. -->
<string name="fxa_account_options_sync_description">Choose what to synchronize on your devices using Firefox</string>
<!-- This string is used to in the FxA account manage panel as a description for the Bookmarks sync switch. -->
<string name="fxa_account_options_bookmarks_sync">Bookmarks</string>
<!-- This string is used to in the FxA account manage panel as a description for the History sync switch. -->
<string name="fxa_account_options_history_sync">History</string>
<!-- This string is used to in the FxA account manage panel as a description for the Logins sync switch. -->
<string name="fxa_account_options_logins_sync">Logins</string>
<!-- This string is used to in the FxA account manage panel as a description for the Sign In/Out button. -->
<string name="fxa_account_options_reset">Reset</string>
<!-- This string is used to in the Library panels in the sync button when the user is not signed in. -->
<string name="fxa_account_sing_to_sync">Sign Into Account To Sync</string>
<!-- This string is used to in the Library panels in the sync button when syncing is off. -->
<string name="fxa_account_sync_settings">Sync Settings</string>
<!-- This string is used to in the Library panels to the left of the sync button to indicate
when that the content was just synced. -->
<string name="fxa_account_last_synced_now">Last synced now</string>
<!-- This string is used to in the Library panels to the left of the sync button to indicate
that the content has never been synced yet. -->
<string name="fxa_account_last_no_synced">Not synced yet</string>
<!-- This string is used to in the Library panels to the left of the sync button to indicate
that the syncing is off. -->
<string name="fxa_account_syncing_off">Syncing is turned off</string>
<!-- This string is used to in the Library panels to the left of the sync button to indicate
that there was an error while syncing. -->
<string name="fxa_account_last_sync_error">Sync error</string>
<!-- This string is used to in the Library panels to the left of the sync button to indicate
when that the content was just synced some time ago.
'%1$s' Will be replaced at runtime with the minutes since the last sync. -->
<string name="fxa_account_last_synced">Last synced %1$d minutes ago</string>
<!-- This string labels an Allow/Don't Allow switch in the Privacy and Security settings dialog
and is used to enable or disable playback of DRM controlled content.
'%1$s' Will be replaced at runtime with the DRM Learn More url. -->
<string name="security_options_drm_content_v1"><![CDATA[Automatically allow sites to identify your device to play DRM-controlled content. (<a href="%1$s">Learn More</a>)]]></string>
<!-- This string labels an Allow/Don't Allow switch in the Privacy and Security settings dialog
and is used to enable or disable the tabs restoration after a fresh app start. -->
<string name="security_options_restore_tabs">Restore tabs and windows after restart</string>
<!-- This string labels an Allow/Don't Allow switch in the Privacy and Security settings dialog
and is used to enable or disable the address bar autocomplete. -->
<string name="security_options_autocomplete">Address Bar Auto-complete</string>
<!-- This string labels an Allow/Don't Allow switch in the Logins And Passwords settings dialog
and is used to enable or disable logins and passwords saving. If disabled the user won't be prompted
when a new login/password pair is eligible to be saved by the browser -->
<string name="security_options_login_save">Save logins and passwords</string>
<!-- This string labels an Allow/Don't Allow switch in the Logins And Passwords settings dialog
and is used to enable or disable login auto-fill. If disabled the logins forms won't be auto-filled. -->
<string name="security_options_login_autofill">Autofill</string>
<!-- This string labels an Allow/Don't Allow switch in the Logins And Passwords settings dialog
and is used to enable or disable login sync with Firefox Account. If disabled the logins
won't be synced with the Firefox Account. -->
<string name="security_options_login_sync">Sync logins with Firefox Accounts</string>
<!-- This string labels a button in the Logins And Passwords settings dialog
that when clicked opens the Firefox Accounts settings panel. -->
<string name="security_options_login_fxa">Account…</string>
<!-- This string labels a button in the Logins And Passwords settings dialog
that when clicked opens the saved logins panel which lists all the stored logins/password entries. -->
<string name="security_options_login_saved">Saved Logins…</string>
<!-- This string labels a button in the Logins And Passwords settings dialog
that when clicked opens the login exceptions panel which lists all the save login exceptions
that are added when clicking on the "Never Save" button in the login save dialog. -->
<string name="security_options_login_exceptions">Exceptions…</string>
<!-- This string labels an On/Off switch in the Privacy and Security settings dialog
and is used to enable or disable tracking protection. -->
<string name="security_options_tracking_protection">Tracking Protection</string>
<!-- This string labels an On/Off switch in the Privacy and Security settings dialog
and is used to enable or disable media autoplay. -->
<string name="security_options_autoplay">Autoplay Media</string>
<!-- This string is a label above the group of buttons that indicates that the buttons below
relate to Android system permissions granted to the app.
'%1$s' will be replaced at runtime with the app's name. -->
<string name="security_options_permissions_title">Permissions (Allow %1$s to access)</string>
<!-- This string is displayed in an alert box if the user attempts to disable an enabled
permission and informs the user that the app cannot disable the given permission, that
function being reserved by the system permissions app. -->
<string name="security_options_permissions_reject_message">This permission can only be disabled in system permissions</string>
<!-- This string labels the button that displays or enables application access to the device's
camera, if a camera is present. -->
<string name="security_options_permission_camera">Camera</string>
<!-- This string labels the button that displays or enables application access to the device's
microphone, if a microphone is present. -->
<string name="security_options_permission_microphone">Microphone</string>
<!-- This string labels the button that displays or enables application access to the device's
geographic location, if the device supports determination of geographic location. -->
<string name="security_options_permission_location">Location</string>
<!-- This string labels the button that displays or enables the application to post system-wide
notifications. -->
<string name="security_options_permission_notifications">Notifications</string>
<!-- This string labels the button that displays or enables application access to the device's
"external" storage. Note that on modern systems, "external" is still used in the name
of this storage even though the storage may not reside on external removable media. -->
<string name="security_options_permission_storage">Read External Storage</string>
<!-- This string labels the button that displays or enables application access to the device's
camera and microphone, if present. -->
<string name="security_options_permission_camera_and_microphone">Camera And Microphone</string>
<!-- This string labels the button in the privacy option panel that enables/disables the pop-up
blocking. -->
<string name="security_options_block_pup_up_windows">Block Pop-Up Windows</string>
<!-- This string labels the button in the privacy option panel that open the dialog to add/remove
pop-up blocked sites. -->
<string name="security_options_block_pup_up_settings">Advanced</string>
<!-- This string labels the button in the privacy option panel that enables/disables Virtual Reality
Devices access to websites (WebXR). -->
<string name="security_options_permission_webxr">Virtual Reality Devices (WebXR)</string>
<!-- This string labels the button in the privacy option panel that open the dialog to add/remove
webxr blocked sites. -->
<string name="security_options_webxr_settings">Advanced</string>
<!-- This string is a label above the group of switches that indicates that the switches below
relate to Firefox data collection and use.
'%1$s' Will be replaced at runtime with the app name. -->
<string name="security_options_speech_data_collection_title">%1$s Data Collection and Use</string>
<!-- This string labels an Allow/Don't Allow switch in the Privacy and Security settings dialog
and is used to enable or disable permission to collect speech data.
'%1$s' Will be replaced at runtime with the app name. -->
<string name="security_options_speech_data_collect">Allow %1$s to collect speech data</string>
<!-- This string labels an Allow/Don't Allow switch in the Privacy and Security settings dialog
and is used to enable or disable permission to collect telemetry data.
'%1$s' Will be replaced at runtime with the app name. -->
<string name="security_options_telemetry_send_data">Allow %1$s to send technical and interaction data to Mozilla
</string>
<!-- This string labels an Allow/Don't Allow switch in the Privacy and Security settings dialog
and is used to enable or disable permission to send crash reports.
'%1$s' Will be replaced at runtime with the app name. -->
<string name="security_options_crash_reports_send_data">Allow %1$s to send backlogged crash reports on your behalf
</string>
<!-- This string is displayed below the On/Off switch to indicate a switch's current state as 'On'. -->
<string name="on">On</string>
<!-- This string is displayed below the On/Off switch to indicate a switch's current state as 'Off'. -->
<string name="off">Off</string>
<!-- This string is displayed on the left of switched that are used to enable/disable sync when the switch is enabled.
i.e. The history switch for Firefox account syncing-->
<string name="sync">Sync</string>
<!-- This string is displayed on the left of switched that are used to enable/disable sync when the switch is enabled.
i.e. The history switch for Firefox account syncing-->
<string name="do_not_sync">Don’t Sync</string>
<!-- This string is displayed in the voice-search dialog box that is shown to the user when they press the
button used to initiate Voice Search. -->
<string name="voice_search_start">What would you like to search on the Web?</string>
<!-- This string is displayed in the voice-search dialog box that is shown to the user when they press the
button used to initiate Voice Search. -->
<string name="voice_search_example">Example: Please say, “360 videos, weather, news…”</string>
<!-- This string is displayed in a dialog box show to the user while the Voice Search is being
performed. It indicates that the search query is running and they should wait for the result. -->
<string name="voice_search_decoding">Searching…</string>
<!-- This string is displayed in a dialog box show to the user while the Voice Search is being
performed. It indicates that the search query is running and they should wait for the result. -->
<string name="voice_search_error">Sorry! I could not understand.</string>
<!-- This string is displayed in a dialog box after a failed Voice Search and the system is prompting the
user to try the Voice Search again. -->
<string name="voice_search_try_again">Please try again.</string>
<!-- This string is displayed in a dialog after the user has declined permission to use the
device's microphone. It explains why Voice Search is not working. -->
<string name="voice_search_permission_after_decline">Please allow microphone access to use the Voice Search.</string>
<!-- This string is displayed in the button at the bottom of the Voice Search dialog. When clicked the Voice search dialog is closed. -->
<string name="voice_search_close">Close</string>
<!-- This string is displayed in the URL bar when it is empty. It informs the user that they
may use the URL bar to search the Web or enter a Web address. -->
<string name="search_placeholder">Search the Web or enter address</string>
<!-- This string labels a button that is used to cancel an action.
This appears in such contexts as dialog boxes, `<select>` menus, etc. -->
<string name="cancel_button">Cancel</string>
<!-- This string labels a button that is used to approve an action.
This appears in such contexts as dialog boxes, `<select>` menus, etc. -->
<string name="ok_button">OK</string>
<!-- This string labels a button that is used to approve an action. -->
<string name="back_button">Back</string>
<!-- This string is displayed in a dialog after an application crash. -->
<string name="crash_dialog_heading">We had an issue and crashed</string>
<!-- This string explains why Mozilla would like the user to allow the crash data to be uploaded.
'%1$s' will be replaced at runtime with the app's domain name. -->
<string name="crash_dialog_message"><![CDATA[Please help Mozilla improve %1$s by sending your crash data. <a href="more">Learn More</a>]]></string>
<!-- This string labels a checkbox in the crash dialog box. When checked, the user will no longer
be prompted for permission to upload crash data after an application crash. -->
<string name="crash_dialog_send_data">Always send data without asking</string>
<!-- This string labels a button that, when pressed, allows the user to learn more about the
currently open dialog. -->
<string name="learn_more_button">Learn More</string>
<!-- This string labels a button that, when pressed, prevents browser-level crash data from being sent to Mozilla. -->
<string name="do_not_sent_button">Do Not Send</string>
<!-- This string labels a button that, when pressed, allows the crash data to be sent to Mozilla. -->
<string name="send_data_button">Send Data</string>
<!-- This string appears in the tooltip for the button to change the 'Brightness'
(i.e., the brightness level of the background environment), in particular when playing a video. -->
<string name="brightness_mode_tooltip">Brightness</string>
<!-- This string labels the radio option that selects the 'Normal' background in the 'Brightness' mode. -->
<string name="brightness_mode_normal">Normal</string>
<!-- This string labels the radio option that selects the 'Dark' background in the 'Brightness' mode. -->
<string name="brightness_mode_dark">Dark</string>
<!-- This string labels the radio option that selects the 'Void' background in the 'Brightness' mode. -->
<string name="brightness_mode_void">Void</string>
<!-- This string labels a button to open the Video Projection selector. -->
<string name="video_mode_tooltip">Video Projection</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_3d_side">3D Side by Side</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_360">360</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_360_stereo">360 Stereo</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_180">180</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_180_left_right">Stereo 180 Left to Right</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_180_top_bottom">Stereo 180 Top to Bottom</string>
<!-- This string is displayed when selecting a video playback mode. -->
<string name="video_mode_2d">2D</string>
<!-- This string is displayed in a tooltip in the video controls UI. -->
<string name="video_controls_play">Play</string>
<!-- This string is displayed in a tooltip in the video controls UI. -->
<string name="video_controls_exit">Exit</string>
<!-- This string is displayed in a tooltip in the video controls UI. -->
<string name="video_controls_pause">Pause</string>
<!-- This string is displayed in a tooltip in the video controls UI. -->
<string name="video_controls_mute">Mute</string>
<!-- This string is displayed in a tooltip in the video controls UI. -->
<string name="video_controls_unmute">Unmute</string>
<!-- This string is displayed in a tooltip below the video controls UI. -->
<string name="video_controls_volume">Volume</string>
<!-- This string is displayed in a tooltip below the video controls UI. -->
<string name="video_controls_projection">Video Projection</string>
<!-- This string is displayed in a tooltip in the video controls UI (e.g., 'Seek +30 seconds').
'%1$s' will be replaced at runtime with a duration in seconds (e.g., '30'). -->
<string name="video_controls_seek_forward">Seek +%1$s seconds</string>
<!-- This string is displayed in a tooltip in the video controls UI (e.g., 'Seek -15 seconds').
'%1$s' will be replaced at runtime with a duration in seconds (e.g., '15'). -->
<string name="video_controls_seek_backward">Seek -%1$s seconds</string>
<!-- This string is displayed in the video control seekbar when the media is not seekable
(e.g., a live video stream). Prefer a short text because it affects the width of the seek bar. -->
<string name="video_controls_live">LIVE</string>
<!-- This string is displayed as the title of the Bookmarks List, which contains the user's bookmarked websites. -->
<string name="bookmarks_title">Bookmarks</string>
<!-- This string is displayed as the title of the Bookmarks List when the bookmarks list is empty. -->
<string name="bookmarks_empty">Your Bookmarks List is Empty</string>
<!-- This string is displayed under the bookmarks title in the bookmarks list. -->
<string name="bookmarks_description">Click the @ icon when you’re on a page to add it to your bookmarks.</string>
<!-- This string is displayed in the middle of the Bookmarks List while the bookmarks are being loaded. -->
<string name="bookmarks_loading">Loading Bookmarks</string>
<!-- This string is displayed as the title of the folder containing mobile bookmarks (after they're synced). -->
<string name="bookmarks_mobile_folder_title">Mobile Bookmarks</string>
<!-- This string is displayed as the title of the folder containing desktop bookmarks (after they're synced). -->
<string name="bookmarks_desktop_folder_title">Desktop Bookmarks</string>
<!-- This string is displayed as the title of the desktop "menu" bookmarks folder. -->
<string name="bookmarks_desktop_menu_title">Bookmarks Menu</string>
<!-- This string is displayed as the title of the desktop "toolbar" bookmarks folder. -->
<string name="bookmarks_desktop_toolbar_title">Bookmarks Toolbar</string>
<!-- This string is displayed as the title of the desktop "unfiled" bookmarks folder. -->
<string name="bookmarks_desktop_unfiled_title">Other Bookmarks</string>
<!-- This string is displayed in a tooltip that appears when a user hovers
over an icon representing 'Remove Bookmark' for an individual bookmark
item listed in the Bookmarks List. -->
<string name="bookmarks_remove">Remove Bookmark</string>
<!-- This string is displayed in a tooltip that appears in the tray bar on top of the
bookmarks tray button then a new item is bookmarked. -->
<string name="bookmarks_saved_notification">Saved to Bookmarks!</string>
<!-- This string is displayed in a notification that appears in the tray bar on top of the