-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.xml
More file actions
6314 lines (6186 loc) · 494 KB
/
Copy pathstrings.xml
File metadata and controls
6314 lines (6186 loc) · 494 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"?>
<resources>
<string name="Accounts_settings_title">Accounts</string>
<string name="Switch_not_in_use_string">The switch is temporarily unavailable. Please try again later.</string>
<string name="abc_action_bar_home_description">Navigate home</string>
<string name="abc_action_bar_up_description">Navigate up</string>
<string name="abc_action_menu_overflow_description">More options</string>
<string name="abc_action_mode_done">Done</string>
<string name="abc_activity_chooser_view_see_all">See all</string>
<string name="abc_activitychooserview_choose_application">Choose an app</string>
<string name="abc_capital_off">OFF</string>
<string name="abc_capital_on">ON</string>
<string name="abc_menu_alt_shortcut_label">Alt+</string>
<string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
<string name="abc_menu_delete_shortcut_label">delete</string>
<string name="abc_menu_enter_shortcut_label">enter</string>
<string name="abc_menu_function_shortcut_label">Function+</string>
<string name="abc_menu_meta_shortcut_label">Meta+</string>
<string name="abc_menu_shift_shortcut_label">Shift+</string>
<string name="abc_menu_space_shortcut_label">space</string>
<string name="abc_menu_sym_shortcut_label">Sym+</string>
<string name="abc_prepend_shortcut_label">Menu+</string>
<string name="abc_search_hint">Search…</string>
<string name="abc_searchview_description_clear">Clear query</string>
<string name="abc_searchview_description_query">Search query</string>
<string name="abc_searchview_description_search">Search</string>
<string name="abc_searchview_description_submit">Submit query</string>
<string name="abc_searchview_description_voice">Voice search</string>
<string name="abc_shareactionprovider_share_with">Share with</string>
<string name="abc_shareactionprovider_share_with_application">Share with %s</string>
<string name="abc_slice_error">"Couldn't connect"</string>
<string name="abc_slice_more">More</string>
<string name="abc_slice_more_content">+ %1$d</string>
<string name="abc_slice_permission_allow">Allow</string>
<string name="abc_slice_permission_checkbox">Allow %1$s to show slices from any app</string>
<string name="abc_slice_permission_deny">Deny</string>
<string name="abc_slice_permission_text_1">- It can read information from %1$s</string>
<string name="abc_slice_permission_text_2">- It can take actions inside %1$s</string>
<string name="abc_slice_permission_title">Allow %1$s to show %2$s slices?</string>
<string name="abc_slice_show_more">Show more</string>
<string name="abc_slice_updated">Updated %1$s</string>
<string name="abc_slices_permission_request">%1$s wants to show %2$s slices</string>
<string name="abc_toolbar_collapse_description">Collapse</string>
<string name="about_phone_device_name_warning">Your device name is visible to apps on your phone. It may also be seen by other people when you connect to Bluetooth devices or set up a Wi-Fi hotspot.</string>
<string name="about_settings">About phone</string>
<string name="about_settings_summary">View legal info, status, software version</string>
<string name="accelerometer_summary_off">Switch orientation automatically when rotating phone</string>
<string name="accelerometer_summary_on">Switch orientation automatically when rotating phone</string>
<string name="accelerometer_title">Auto-rotate screen</string>
<string name="access_point_names">Access point names</string>
<string name="accessibility_autoclick_delay_preference_title">Delay before click</string>
<string name="accessibility_autoclick_description">If you are using a mouse, you can set the cursor to take action automatically when it stops moving for a certain amount of time.</string>
<string name="accessibility_autoclick_preference_title">Dwell timing</string>
<string name="accessibility_caption_master_switch_title">Use captions</string>
<string name="accessibility_caption_preference_summary">Not all apps support this setting.</string>
<string name="accessibility_captioning_title">Caption preferences</string>
<string name="accessibility_category_personal">Personal profile accounts</string>
<string name="accessibility_category_work">Work profile accounts - %s</string>
<string name="accessibility_control_timeout_preference_summary">"Choose how long to show messages that ask you to take action, but are visible only temporarily.
Not all apps support this setting."</string>
<string name="accessibility_control_timeout_preference_title">Time to take action</string>
<string name="accessibility_daltonizer_master_switch_title">Use color correction</string>
<string name="accessibility_description_state_stopped">This service is malfunctioning.</string>
<string name="accessibility_dialog_button_allow">Allow</string>
<string name="accessibility_dialog_button_cancel">Cancel</string>
<string name="accessibility_dialog_button_deny">Deny</string>
<string name="accessibility_dialog_button_stop">Stop</string>
<string name="accessibility_disable_animations">Remove animations</string>
<string name="accessibility_display_daltonizer_preference_subtitle">This feature is experimental and may affect performance.</string>
<string name="accessibility_display_daltonizer_preference_title">Color correction</string>
<string name="accessibility_display_inversion_preference_subtitle">May affect performance</string>
<string name="accessibility_display_inversion_preference_title">Color inversion</string>
<string name="accessibility_feature_state_off">Off</string>
<string name="accessibility_feature_state_on">On</string>
<string name="accessibility_global_gesture_preference_title">Volume key shortcut</string>
<string name="accessibility_hearingaid_active_device_summary">%1$s active</string>
<string name="accessibility_hearingaid_adding_summary">Add hearing aids</string>
<string name="accessibility_hearingaid_instruction_continue_button">Continue</string>
<string name="accessibility_hearingaid_not_connected_summary">No hearing aids connected</string>
<string name="accessibility_hearingaid_pair_instructions_first_message">To pair your hearing aids, find and tap your device on the next screen.</string>
<string name="accessibility_hearingaid_pair_instructions_second_message">Make sure your hearing aids are in pairing mode.</string>
<string name="accessibility_hearingaid_title">Hearing aids</string>
<string name="accessibility_lock_screen_progress">%1$d of %2$d characters used</string>
<string name="accessibility_long_press_timeout_preference_title">Touch & hold delay</string>
<string name="accessibility_manual_zen_less_time">Less time.</string>
<string name="accessibility_manual_zen_more_time">More time.</string>
<string name="accessibility_menu_item_settings">Settings</string>
<string name="accessibility_no_service_selected">No service selected</string>
<string name="accessibility_no_services_installed">No services installed</string>
<string name="accessibility_no_wifi">Wifi disconnected.</string>
<string name="accessibility_notification_vibration_title">Notification vibration</string>
<string name="accessibility_personal_account_title">Personal account - %s</string>
<string name="accessibility_power_button_ends_call_prerefence_title">Power button ends call</string>
<string name="accessibility_preference_magnification_summary">Zoom in on screen</string>
<string name="accessibility_ring_vibration_title">Ring vibration</string>
<string name="accessibility_screen_magnification_gesture_navigation_warning">The accessibility gesture is set to the %1$s. To use magnification, swipe up with two fingers from the bottom of the screen and hold. Then select magnification.</string>
<string name="accessibility_screen_magnification_gestures_title">Magnify with triple-tap</string>
<string name="accessibility_screen_magnification_navbar_configuration_warning">The Accessibility button is set to %1$s. To use magnification, touch & hold the Accessibility button, then select magnification.</string>
<string name="accessibility_screen_magnification_navbar_short_summary">Tap a button to zoom</string>
<string name="accessibility_screen_magnification_navbar_summary">"When magnification is turned on, you can zoom in on your screen.
"<b>To zoom</b>", start magnification, then tap anywhere on the screen.
"<ul><li>• Drag 2 or more fingers to scroll</li>"
"<li>• Pinch 2 or more fingers to adjust zoom</li></ul>"
"<b>To zoom temporarily</b>", start magnification, then touch & hold anywhere on the screen.
"<ul><li>• Drag to move around the screen</li>"
"<li>• Lift finger to zoom out</li></ul>"
You can’t zoom in on the keyboard or navigation bar."</string>
<string name="accessibility_screen_magnification_navbar_title">Magnify with shortcut</string>
<string name="accessibility_screen_magnification_short_summary">Tap 3 times to zoom</string>
<string name="accessibility_screen_magnification_state_navbar_gesture">Magnify with shortcut & triple-tap</string>
<string name="accessibility_screen_magnification_summary"><b>To zoom</b>", quickly tap the screen 3 times.
"<ul><li>Drag 2 or more fingers to scroll</li>"
"<li>Pinch 2 or more fingers to adjust zoom</li></ul>"
"<b>To zoom temporarily</b>", quickly tap the screen 3 times and hold down your finger on the third tap.
"<ul><li>Drag to move around the screen</li>"
"<li>Lift finger to zoom out</li></ul>"
You can't zoom in on the keyboard and navigation bar."</string>
<string name="accessibility_screen_magnification_title">Magnification</string>
<string name="accessibility_service_action_perform_description">It can track your interactions with an app or a hardware sensor, and interact with apps on your behalf.</string>
<string name="accessibility_service_action_perform_title">View and perform actions</string>
<string name="accessibility_service_default_description">No description provided.</string>
<string name="accessibility_service_master_switch_title">Use service</string>
<string name="accessibility_service_screen_control_description">It can read all content on the screen and display content over other apps.</string>
<string name="accessibility_service_screen_control_title">View and control screen</string>
<string name="accessibility_service_warning">%1$s is requesting full control of this device. The service can read the screen and act on behalf of users with accessibility needs. This level of control is not appropriate for most apps.</string>
<string name="accessibility_service_warning_description">Full control is appropriate for apps that help you with accessibility needs, but not for most apps.</string>
<string name="accessibility_setting_item_control_timeout_title">Time to take action (Accessibility timeout)</string>
<string name="accessibility_settings">Accessibility</string>
<string name="accessibility_settings_summary">Screen readers, display, interaction controls</string>
<string name="accessibility_settings_title">Accessibility settings</string>
<string name="accessibility_shortcut_description">When the shortcut is on, you can press both volume keys for 3 seconds to start an accessibility feature.</string>
<string name="accessibility_shortcut_service_on_lock_screen_title">Allow from lock screen</string>
<string name="accessibility_shortcut_service_title">Shortcut service</string>
<string name="accessibility_summary_state_disabled">Off</string>
<string name="accessibility_summary_state_enabled">On</string>
<string name="accessibility_summary_state_stopped">Not working. Tap for info.</string>
<string name="accessibility_sync_disabled">Sync disabled</string>
<string name="accessibility_sync_enabled">Sync enabled</string>
<string name="accessibility_sync_error">Sync error.</string>
<string name="accessibility_sync_in_progress">Syncing now</string>
<string name="accessibility_timeout_10secs">10 seconds</string>
<string name="accessibility_timeout_1min">1 minute</string>
<string name="accessibility_timeout_2mins">2 minutes</string>
<string name="accessibility_timeout_30secs">30 seconds</string>
<string name="accessibility_timeout_default">Default</string>
<string name="accessibility_toggle_high_text_contrast_preference_title">High contrast text</string>
<string name="accessibility_toggle_large_pointer_icon_title">Large mouse pointer</string>
<string name="accessibility_toggle_master_balance_left_label">Left</string>
<string name="accessibility_toggle_master_balance_right_label">Right</string>
<string name="accessibility_toggle_master_balance_title">Audio balance</string>
<string name="accessibility_toggle_master_mono_summary">Combine channels when playing audio</string>
<string name="accessibility_toggle_master_mono_title">Mono audio</string>
<string name="accessibility_toggle_screen_magnification_auto_update_preference_summary">Update screen magnification on app transitions</string>
<string name="accessibility_toggle_screen_magnification_auto_update_preference_title">Auto update screen magnification</string>
<string name="accessibility_touch_vibration_title">Touch feedback</string>
<string name="accessibility_tutorial_dialog_button">Got it</string>
<string name="accessibility_tutorial_dialog_message_button">"To turn this service on or off, tap the accessibility button%son the bottom of your screen.
To switch between services, touch & hold the accessibility button."</string>
<string name="accessibility_tutorial_dialog_message_gesture_settings_with_talkback">"To turn an accessibility service on or off, swipe up from the bottom of the screen with three fingers.
To switch between services, swipe up with three fingers and hold."</string>
<string name="accessibility_tutorial_dialog_message_gesture_settings_without_talkback">"To turn an accessibility service on or off, swipe up from the bottom of the screen with two fingers.
To switch between services, swipe up with two fingers and hold."</string>
<string name="accessibility_tutorial_dialog_message_gesture_with_talkback">"To turn this service on or off, swipe up from the bottom of the screen with three fingers.
To switch between services, swipe up with three fingers and hold."</string>
<string name="accessibility_tutorial_dialog_message_gesture_without_talkback">"To turn this service on or off, swipe up from the bottom of the screen with two fingers.
To switch between services, swipe up with two fingers and hold."</string>
<string name="accessibility_tutorial_dialog_title_button">Use accessibility button to open</string>
<string name="accessibility_tutorial_dialog_title_gesture">Use gesture to open</string>
<string name="accessibility_tutorial_dialog_title_gesture_settings">Use new accessibility gesture</string>
<string name="accessibility_usage_title">Accessibility usage</string>
<string name="accessibility_vibration_intensity_high">High</string>
<string name="accessibility_vibration_intensity_low">Low</string>
<string name="accessibility_vibration_intensity_medium">Medium</string>
<string name="accessibility_vibration_intensity_off">Off</string>
<string name="accessibility_vibration_settings_title">Vibration & haptic strength</string>
<string name="accessibility_vibration_summary">Ring %1$s, notification %2$s, touch %3$s</string>
<string name="accessibility_vibration_summary_high">Ring & notification set to high</string>
<string name="accessibility_vibration_summary_low">Ring & notification set to low</string>
<string name="accessibility_vibration_summary_medium">Ring & notification set to medium</string>
<string name="accessibility_vibration_summary_off">Ring & notification set to off</string>
<string name="accessibility_wifi_off">Wifi off.</string>
<string name="accessibility_wifi_one_bar">Wifi one bar.</string>
<string name="accessibility_wifi_security_type_none">Open network</string>
<string name="accessibility_wifi_security_type_secured">Secure network</string>
<string name="accessibility_wifi_signal_full">Wifi signal full.</string>
<string name="accessibility_wifi_three_bars">Wifi three bars.</string>
<string name="accessibility_wifi_two_bars">Wifi two bars.</string>
<string name="accessibility_work_account_title">Work account - %s</string>
<string name="account_confirmation_class" />
<string name="account_confirmation_package" />
<string name="account_dashboard_default_summary">No accounts added</string>
<string name="account_dashboard_title">Accounts</string>
<string name="account_for_section_header">Accounts for %1$s</string>
<string name="account_settings">Accounts</string>
<string name="account_settings_menu_auto_sync">Auto-sync data</string>
<string name="account_settings_menu_auto_sync_personal">Auto-sync personal data</string>
<string name="account_settings_menu_auto_sync_work">Auto-sync work data</string>
<string name="account_settings_title">Accounts</string>
<string name="account_sync_settings_title">Sync</string>
<string name="account_sync_summary_all_off">Sync off for all items</string>
<string name="account_sync_summary_all_on">Sync on for all items</string>
<string name="account_sync_summary_some_on">Sync on for %1$d of %2$d items</string>
<string name="account_sync_title">Account sync</string>
<string name="account_type" />
<string name="action_drag_label_move_bottom">Move to bottom</string>
<string name="action_drag_label_move_down">Move down</string>
<string name="action_drag_label_move_top">Move to top</string>
<string name="action_drag_label_move_up">Move up</string>
<string name="action_drag_label_remove">Remove language</string>
<string name="active_device_admin_msg">Device admin app</string>
<string name="active_input_method_subtypes">Active input methods</string>
<string name="activity_not_found">Application is not installed on your phone.</string>
<string name="activity_picker_label">Choose activity</string>
<string name="adaptive_sleep_contextual_slice_summary">Keep screen on when viewing it</string>
<string name="adaptive_sleep_description">Prevents your screen from turning off if you’re looking at it</string>
<string name="adaptive_sleep_privacy">Screen attention uses the front camera to see if someone is looking at the screen. It works on device, and images are never stored or sent to Google.</string>
<string name="adaptive_sleep_summary_no_permission">Tap to manage permissions for Device Personalization Services</string>
<string name="adaptive_sleep_summary_off">Off</string>
<string name="adaptive_sleep_summary_on">On / Screen won’t turn off if you’re looking at it</string>
<string name="adaptive_sleep_title">Screen attention</string>
<string name="adaptive_sleep_title_no_permission">Camera access needed</string>
<string name="adb_keys_warning_message">Revoke access to USB debugging from all computers you’ve previously authorized?</string>
<string name="adb_warning_message">USB debugging is intended for development purposes only. Use it to copy data between your computer and your device, install apps on your device without notification, and read log data.</string>
<string name="adb_warning_title">Allow USB debugging?</string>
<string name="add">Add</string>
<string name="add_a_language">Add a language</string>
<string name="add_account_label">Add account</string>
<string name="add_device_admin">Activate this device admin app</string>
<string name="add_device_admin_msg">Activate device admin app?</string>
<string name="add_virtual_keyboard">Manage keyboards</string>
<string name="adding_profile_owner_warning">"By proceeding, your user will be managed by your admin which may also be able to store associated data, in addition to your personal data.
Your admin has the ability to monitor and manage settings, access, apps, and data associated with this user, including network activity and your device's location information."</string>
<string name="additional_battery_info">Usage alerts</string>
<string name="additional_permissions">Additional permissions</string>
<string name="additional_permissions_more">%1$d more</string>
<string name="additional_system_update" />
<string name="additional_system_update_menu" />
<string name="additional_system_update_settings_list_item_title">Additional system updates</string>
<string name="admin_device_owner_message">"Your admin can monitor and manage apps and data associated with this device, including settings, permissions, corporate access, network activity, and the device's location information."</string>
<string name="admin_disabled_other_options">Other options are disabled by your admin</string>
<string name="admin_more_details">More details</string>
<string name="admin_profile_owner_message">"Your admin can monitor and manage apps and data associated with your work profile, including settings, permissions, corporate access, network activity, and the device's location information."</string>
<string name="admin_profile_owner_user_message">"Your admin can monitor and manage apps and data associated with this user, including settings, permissions, corporate access, network activity, and the device's location information."</string>
<string name="admin_support_more_info">More details</string>
<string name="advance_calling_disable_msg">Your phone will not be able to make or receive HD voice and video calls when you turn this setting off.</string>
<string name="advance_calling_enable_msg">"When using the Verizon Wireless 4G LTE network, the voice portion of a video call will appear on your bill as mobile‑to‑mobile voice usage, and the video portion will be billed as data.
When Video calling is turned on, others can see that your phone has video calling."</string>
<string name="advance_category_more_settings_title">More settings</string>
<string name="advance_category_other_title">Other</string>
<string name="advance_wifi_calling_disable_msg">"If you turn off Wi-Fi Calling, all your future calls will go over the mobile network. If mobile network isn't available, you may not be able to make calls.
In the future if you want to use Wi-Fi for Voice Calling, you can turn on Wi-Fi Calling by going to Advanced Calling Settings menu."</string>
<string name="advanced_apps">Advanced</string>
<string name="advanced_battery_graph_subtext">Battery left estimate is based on your device usage</string>
<string name="advanced_battery_title">Battery usage</string>
<string name="advanced_calling_title">Advanced Calling</string>
<string name="advanced_section_header">Advanced</string>
<string name="advanced_security_title">Advanced</string>
<string name="advanced_settings">Advanced settings</string>
<string name="advanced_settings_summary">Enable more settings options</string>
<string name="airplane_mode">Airplane mode</string>
<string name="alarm_ringtone_title">Default alarm sound</string>
<string name="alarm_template">at %1$s</string>
<string name="alarm_template_far">on %1$s</string>
<string name="alarm_volume_option_title">Alarm volume</string>
<string name="alarm_volume_title">Alarm</string>
<string name="all_volume_title">Volumes</string>
<string name="allow">Allow</string>
<string name="allow_app_notification_title">Allow notification</string>
<string name="allow_bind_app_widget_activity_allow_bind">After you create the widget, %1$s can access all data it displays.</string>
<string name="allow_bind_app_widget_activity_allow_bind_title">Create widget and allow access?</string>
<string name="allow_bind_app_widget_activity_always_allow_bind">Always allow %1$s to create widgets and access their data</string>
<string name="allow_data_usage_title">Allow data usage when roaming</string>
<string name="allow_interruption">Allow interruptions</string>
<string name="allow_interruption_summary">Let the app make sound, vibrate, and/or pop notifications on screen</string>
<string name="allow_mock_location">Allow mock locations</string>
<string name="allow_mock_location_summary">Allow mock locations</string>
<string name="allow_overlay_description">Allow this app to display on top of other apps you’re using. It may interfere with your use of those apps or change the way they seem to appear or behave.</string>
<string name="always_allow_bind_appwidgets_text">You’ve chosen to allow this app to create widgets and access their data.</string>
<string name="always_running">Always running (%s)</string>
<string name="amazingsong">AmazingSong</string>
<string name="amber_alerts_summary">Receive bulletins about child abductions</string>
<string name="amber_alerts_title">AMBER alerts</string>
<string name="ambient_display_category_triggers">When to show</string>
<string name="ambient_display_pickup_summary">To check time, notifications, and other info, pick up your phone.</string>
<string name="ambient_display_pickup_title">Lift to check phone</string>
<string name="ambient_display_screen_title">Ambient display</string>
<string name="ambient_display_summary">To check time, notifications, and other info, double-tap your screen.</string>
<string name="ambient_display_tap_screen_summary">To check time, notifications, and other info, tap your screen.</string>
<string name="ambient_display_tap_screen_title">Tap to check phone</string>
<string name="ambient_display_title">Double-tap to check phone</string>
<string name="ambient_display_wake_screen_title">Wake up display</string>
<string name="amigotune">AmigoTune</string>
<string name="anc_switch_title">Active noise control</string>
<string name="android_beam_explained">"When this feature is turned on, you can beam app content to another NFC-capable device by holding the devices close together. For example, you can beam web pages, YouTube videos, contacts, and more.
Just bring the devices together (typically back to back) and then tap your screen. The app determines what gets beamed."</string>
<string name="android_beam_label">Android Beam</string>
<string name="android_beam_off_summary">Off</string>
<string name="android_beam_on_summary">Ready to transmit app content via NFC</string>
<string name="android_beam_settings_title">Android Beam</string>
<string name="android_start_title">Android is starting…</string>
<string name="android_version_pending_update_summary">Update available</string>
<string name="android_version_summary">Updated to Android %1$s</string>
<string name="angle_enabled_app">Select ANGLE enabled app</string>
<string name="angle_enabled_app_not_set">No ANGLE enabled application set</string>
<string name="angle_enabled_app_set">ANGLE enabled application: %1$s</string>
<string name="animator_duration_scale_title">Animator duration scale</string>
<string name="another_migration_already_in_progress">Another migration is already in progress.</string>
<string name="aod_summary">Some system information will always be shown in suspend mode</string>
<string name="aod_title">Always on Display</string>
<string name="apn_apn">APN</string>
<string name="apn_auth_type">Authentication type</string>
<string name="apn_auth_type_chap">CHAP</string>
<string name="apn_auth_type_none">None</string>
<string name="apn_auth_type_pap">PAP</string>
<string name="apn_auth_type_pap_chap">PAP or CHAP</string>
<string name="apn_edit">Edit access point</string>
<string name="apn_http_port">Port</string>
<string name="apn_http_proxy">Proxy</string>
<string name="apn_mcc">MCC</string>
<string name="apn_mms_port">MMS port</string>
<string name="apn_mms_proxy">MMS proxy</string>
<string name="apn_mmsc">MMSC</string>
<string name="apn_mnc">MNC</string>
<string name="apn_name">Name</string>
<string name="apn_not_set">Not set</string>
<string name="apn_password">Password</string>
<string name="apn_port_warning">The port value must be 1-65535!</string>
<string name="apn_predefine_change_dialog_notice">Are you sure to save? Modifications to default APNs may cause connection problems!</string>
<string name="apn_protocol">APN protocol</string>
<string name="apn_roaming_protocol">APN roaming protocol</string>
<string name="apn_server">Server</string>
<string name="apn_settings">APNs</string>
<string name="apn_settings_not_available">Access Point Name settings are not available for this user</string>
<string name="apn_type">APN type</string>
<string name="apn_user">Username</string>
<string name="app_and_notification_dashboard_summary">Recent apps, default apps</string>
<string name="app_and_notification_dashboard_title">Apps & notifications</string>
<string name="app_cellular_data_usage">App data usage</string>
<string name="app_default_dashboard_title">Default apps</string>
<string name="app_disable_dlg_positive">Disable app</string>
<string name="app_disable_dlg_text">If you disable this app, Android and other apps may no longer function as intended. Keep in mind, you can’t delete this app since it came pre-installed on your device. By disabling, you turn this app off and hide it on your device.</string>
<string name="app_disable_notifications_dlg_title">Turn off notifications?</string>
<string name="app_factory_reset">Uninstall updates</string>
<string name="app_info_storage_title">Space used</string>
<string name="app_install_details_group_title">Store</string>
<string name="app_install_details_summary">App installed from %1$s</string>
<string name="app_install_details_title">App details</string>
<string name="app_install_location_summary">Change the preferred installation location for new apps</string>
<string name="app_install_location_title">Preferred install location</string>
<string name="app_launch_domain_links_title">Opening links</string>
<string name="app_launch_open_domain_urls_summary">Open without asking</string>
<string name="app_launch_open_domain_urls_title">Open supported links</string>
<string name="app_launch_other_defaults_title">Other defaults</string>
<string name="app_launch_supported_domain_urls_title">Supported links</string>
<string name="app_link_open_always">Open in this app</string>
<string name="app_link_open_ask">Ask every time</string>
<string name="app_link_open_never">Don’t open in this app</string>
<string name="app_list_memory_use">App usage</string>
<string name="app_list_preference_none">None</string>
<string name="app_lock">App lock</string>
<string name="app_memory_use">Memory use</string>
<string name="app_name">有据大众自测Apk</string>
<string name="app_name_label">App</string>
<string name="app_names_concatenation_template_2">%1$s, %2$s</string>
<string name="app_names_concatenation_template_3">%1$s, %2$s, %3$s</string>
<string name="app_not_found_dlg_text">The app wasn’t found in the list of installed apps.</string>
<string name="app_not_found_dlg_title" />
<string name="app_notification_block_summary">Never show these notifications</string>
<string name="app_notification_block_title">Block all</string>
<string name="app_notification_importance_title">Importance</string>
<string name="app_notification_listing_summary_zero">On for all apps</string>
<string name="app_notification_override_dnd_summary">Let these notifications continue to interrupt when Do Not Disturb is on</string>
<string name="app_notification_override_dnd_title">Override Do Not Disturb</string>
<string name="app_notification_preferences">App settings</string>
<string name="app_notification_row_banned">Blocked</string>
<string name="app_notification_row_priority">Priority</string>
<string name="app_notification_row_sensitive">Sensitive</string>
<string name="app_notification_visibility_override_title">Lock screen</string>
<string name="app_notifications_dialog_done">Done</string>
<string name="app_notifications_off_desc">"At your request, Android is blocking this app's notifications from appearing on this device"</string>
<string name="app_notifications_switch_label">Show notifications</string>
<string name="app_notifications_title">App notifications</string>
<string name="app_ops_never_used">(Never used)</string>
<string name="app_ops_running">Running</string>
<string name="app_permission_summary_allowed">Allowed</string>
<string name="app_permission_summary_not_allowed">Not allowed</string>
<string name="app_permissions">Permission manager</string>
<string name="app_permissions_summary">Apps using %1$s</string>
<string name="app_process_limit_title">Background process limit</string>
<string name="app_restrictions_custom_label">Set app restrictions</string>
<string name="app_sees_restricted_accounts">This app can access your accounts</string>
<string name="app_sees_restricted_accounts_and_controlled_by">This app can access your accounts. Controlled by %1$s</string>
<string name="app_settings_link">Additional settings in the app</string>
<string name="app_usage_cycle">App data usage cycle</string>
<string name="app_usage_preference">App usage preferences</string>
<string name="appbar_scrolling_view_behavior">com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior</string>
<string name="application_info_label">App info</string>
<string name="application_restrictions">Allow apps and content</string>
<string name="application_size_label">App size</string>
<string name="applications_settings">App info</string>
<string name="applications_settings_header">App settings</string>
<string name="applications_settings_summary">Manage apps, set up quick launch shortcuts</string>
<string name="applications_settings_title">Apps manager</string>
<string name="apply">Apply</string>
<string name="apps_storage">Apps storage</string>
<string name="apps_summary">%1$d apps installed</string>
<string name="apps_summary_example">24 apps installed</string>
<string name="apps_with_restrictions_header">Applications with restrictions</string>
<string name="apps_with_restrictions_settings_button">Expand settings for application</string>
<string name="art_verifier_for_debuggable_summary">Allow ART to verify bytecode for debuggable apps</string>
<string name="art_verifier_for_debuggable_title">Verify bytecode of debuggable apps</string>
<string name="ask_compatibility">Ask when launched</string>
<string name="assist_access_context_summary">Allow the assist app to access the screen contents as text</string>
<string name="assist_access_context_title">Use text from screen</string>
<string name="assist_access_screenshot_summary">Allow the assist app to access an image of the screen</string>
<string name="assist_access_screenshot_title">Use screenshot</string>
<string name="assist_and_voice_input_title">Assist & voice input</string>
<string name="assist_flash_summary">Flash edges of screen when assist app accesses text from screen or screenshot</string>
<string name="assist_flash_title">Flash screen</string>
<string name="assist_footer">Assist apps can help you based on information from the screen you’re viewing. Some apps support both launcher and voice input services to give you integrated assistance.</string>
<string name="assist_gesture_title">Assist gesture</string>
<string name="assistant_security_warning">The assistant will be able to read information about apps in use on your system, including information visible on your screen or accessible within the apps.</string>
<string name="assistant_security_warning_agree">Agree</string>
<string name="assistant_security_warning_disagree">Disagree</string>
<string name="assistant_security_warning_title">Make %s your assistant?</string>
<string name="assisted_gps">Use assisted GPS</string>
<string name="assisted_gps_disabled">Use server to assist GPS (uncheck to improve GPS performance)</string>
<string name="assisted_gps_enabled">Use server to assist GPS (uncheck to reduce network usage)</string>
<string name="asst_capabilities_actions_replies_summary">Automatically show suggested actions & replies</string>
<string name="asst_capabilities_actions_replies_title">Suggested actions and replies</string>
<string name="asst_capability_prioritizer_summary">Automatically set lower priority notifications to Gentle</string>
<string name="asst_capability_prioritizer_title">Adaptive notification priority</string>
<string name="audio_and_captions_category_title">Audio & on-screen text</string>
<string name="audio_files_title">Audio files</string>
<string name="audio_profile_bes_loudness_summary">Volume booster for speaker</string>
<string name="audio_profile_bes_loudness_title">BesLoudness</string>
<string name="audio_record_proc_title">Noise cancellation</string>
<string name="auto_answer_summary">When you call, put your phone to your ear and answer the call automatically.</string>
<string name="auto_answer_title">Automatic answering near the ear</string>
<string name="auto_boot_pref_title">Auto-start management</string>
<string name="auto_brightness_default_title">Default</string>
<string name="auto_brightness_description">Your screen brightness will automatically adjust to your environment and activities. You can move the slider manually to help adaptive brightness learn your preferences.</string>
<string name="auto_brightness_disclaimer">Optimize brightness level for available light. When this feature is on, you can still adjust brightness temporarily.</string>
<string name="auto_brightness_high_title">High</string>
<string name="auto_brightness_low_title">Low</string>
<string name="auto_brightness_off_summary">"Don't adjust for available light"</string>
<string name="auto_brightness_off_title">Off</string>
<string name="auto_brightness_subtitle">Your preferred brightness level</string>
<string name="auto_brightness_summary">Screen brightness adjusts to environment</string>
<string name="auto_brightness_summary_default">Preferred brightness is default</string>
<string name="auto_brightness_summary_high">Preferred brightness is high</string>
<string name="auto_brightness_summary_low">Preferred brightness is low</string>
<string name="auto_brightness_summary_off">Off</string>
<string name="auto_brightness_summary_on">On</string>
<string name="auto_brightness_summary_very_high">Preferred brightness is very high</string>
<string name="auto_brightness_summary_very_low">Preferred brightness is very low</string>
<string name="auto_brightness_title">Adaptive brightness</string>
<string name="auto_brightness_very_high_summary">Increased battery usage</string>
<string name="auto_brightness_very_high_title">Very high</string>
<string name="auto_brightness_very_low_title">Very low</string>
<string name="auto_caps">Auto-capitalization</string>
<string name="auto_caps_summary">Capitalize first letter in sentences</string>
<string name="auto_dial_summary">On the contact details page, call history details page, put the phone to the ear and automatically dial</string>
<string name="auto_dial_title">Automatic dialing near the ear</string>
<string name="auto_launch_disable_text">No defaults set.</string>
<string name="auto_launch_enable_text">You’ve chosen to launch this app by default for some actions.</string>
<string name="auto_launch_label">Open by default</string>
<string name="auto_launch_label_generic">Defaults</string>
<string name="auto_punctuate">Auto-punctuate</string>
<string name="auto_punctuate_summary">Press Space key twice to insert \".\"</string>
<string name="auto_replace">Auto-replace</string>
<string name="auto_replace_summary">Correct mistyped words</string>
<string name="auto_restore_summary">When reinstalling an app, restore backed up settings and data</string>
<string name="auto_restore_title">Automatic restore</string>
<string name="auto_select_networktype">Preferred network type</string>
<string name="auto_select_networktype_summary">4G/3G/2G(Auto)</string>
<string name="auto_speaker_summary">Automatically switch between handset and hands-free mode when talking on the ear</string>
<string name="auto_speaker_title">Speaker switching during a call</string>
<string name="auto_sync_account_summary">Let apps refresh data automatically</string>
<string name="auto_sync_account_title">Automatically sync data</string>
<string name="auto_sync_personal_account_title">Automatically sync personal data</string>
<string name="auto_sync_work_account_title">Automatically sync work data</string>
<string name="autofill_app">Autofill service</string>
<string name="autofill_confirmation_message">"
<b>Make sure you trust this app</b>
<br/>
<br/>
<xliff:g id=\"app_name\" example=\"Google Autofill\">%1$s</xliff:g> uses what's on
your screen to determine what can be autofilled.
"</string>
<string name="autofill_keywords">auto, fill, autofill</string>
<string name="autofill_logging_level_title">Logging level</string>
<string name="autofill_max_partitions">Max requests per session</string>
<string name="autofill_max_visible_datasets">Max visible datasets</string>
<string name="autofill_reset_developer_options">Reset to default values</string>
<string name="autofill_reset_developer_options_complete">Autofill developer options have been reset</string>
<string name="automatic_brightness">Automatic brightness</string>
<string name="automatic_storage_manager_activation_warning">Your storage is now being managed by the storage manager</string>
<string name="automatic_storage_manager_days_title">Remove photos & videos</string>
<string name="automatic_storage_manager_deactivation_warning">Turn off the storage manager?</string>
<string name="automatic_storage_manager_freed_bytes">"%1$s total made available
Last ran on %2$s"</string>
<string name="automatic_storage_manager_master_switch_title">Use Storage manager</string>
<string name="automatic_storage_manager_preference_title">Storage manager</string>
<string name="automatic_storage_manager_settings">Manage storage</string>
<string name="automatic_storage_manager_text">To help free up storage space, storage manager removes backed up photos and videos from your device.</string>
<string name="automatic_system_heap_dump_summary">Automatically capture a heap dump for Android System when it uses too much memory</string>
<string name="automatic_system_heap_dump_title">Automatically capture system heap dumps</string>
<string name="available_via_carrier">Available via %1$s</string>
<string name="available_via_passpoint">Available via %1$s</string>
<string name="available_virtual_keyboard_category">Available virtual keyboard</string>
<string name="average_memory_use">Average memory use</string>
<string name="average_used">Average used (%)</string>
<string name="awake">Device awake time</string>
<string name="back_sensitivity_dialog_message">"
Higher sensitivity may conflict with any app gestures along the edges of the screen."</string>
<string name="back_sensitivity_dialog_title">Back Sensitivity</string>
<string name="back_to_launcher">Slide up back to desktop</string>
<string name="background_activity_disabled_dialog_text">"Since this app is not set to optimize battery, you can’t restrict it.
To restrict the app, first turn on battery optimization."</string>
<string name="background_activity_summary">Allow the app to run in the background</string>
<string name="background_activity_summary_disabled">App not allowed to run in background</string>
<string name="background_activity_summary_whitelisted">Background usage can’t be restricted</string>
<string name="background_activity_title">Background restriction</string>
<string name="background_activity_warning_dialog_text">If you limit background activity for an app, it may misbehave</string>
<string name="background_activity_warning_dialog_title">Limit background activity?</string>
<string name="background_check_pref">Background check</string>
<string name="background_check_title">Full background access</string>
<string name="background_data">Background data</string>
<string name="background_data_dialog_message">Disabling background data extends battery life and lowers data use. Some apps may still use the background data connection.</string>
<string name="background_data_dialog_title">Disable background data?</string>
<string name="background_data_summary">Apps can sync, send, and receive data at any time</string>
<string name="background_process_stop_description">This is an old app process that is still running in case it’s needed again. There is usually no reason to stop it.</string>
<string name="backup_configure_account_default_summary">No account is currently storing backed up data</string>
<string name="backup_configure_account_title">Backup account</string>
<string name="backup_data_management_title">Manage backup account</string>
<string name="backup_data_summary">Back up app data, Wi‑Fi passwords, and other settings to Google servers</string>
<string name="backup_data_title">Back up my data</string>
<string name="backup_disabled">Back up disabled</string>
<string name="backup_erase_dialog_message">Stop backing up your Wi‑Fi passwords, bookmarks, other settings, and app data, plus erase all copies on Google servers?</string>
<string name="backup_erase_dialog_title" />
<string name="backup_inactive_title">"Backup service isn't active"</string>
<string name="backup_pw_cancel_button_text">Cancel</string>
<string name="backup_pw_set_button_text">Set backup password</string>
<string name="backup_section_title">Backup & restore</string>
<string name="backup_summary_state_off">Off</string>
<string name="backup_summary_state_on">On</string>
<string name="band_mode_failed">Unsuccessful</string>
<string name="band_mode_loading">Loading Band List…</string>
<string name="band_mode_set">Set</string>
<string name="band_mode_succeeded">Successful</string>
<string name="band_mode_title">Set Radio Band Mode</string>
<string name="baseband_version">Baseband version</string>
<string name="battery_action_app_details">App info</string>
<string name="battery_action_app_settings">App settings</string>
<string name="battery_action_bluetooth">Bluetooth settings</string>
<string name="battery_action_display">Screen settings</string>
<string name="battery_action_stop">Force stop</string>
<string name="battery_action_wifi">Wi‑Fi settings</string>
<string name="battery_active_for">Active for ^1</string>
<string name="battery_auto_restriction_summary">Detect when apps drain battery</string>
<string name="battery_auto_restriction_title">Use Battery Manager</string>
<string name="battery_desc_apps">Battery used by app</string>
<string name="battery_desc_bluetooth">Battery used by Bluetooth</string>
<string name="battery_desc_camera">Battery used by the camera</string>
<string name="battery_desc_display">Battery used by the display and backlight</string>
<string name="battery_desc_flashlight">Battery used by the flashlight</string>
<string name="battery_desc_overcounted">Over-counted power use</string>
<string name="battery_desc_radio">Battery used by cell radio</string>
<string name="battery_desc_standby">Battery used when phone is idle</string>
<string name="battery_desc_unaccounted">Miscellaneous power use</string>
<string name="battery_desc_users">Battery used by user</string>
<string name="battery_desc_voice">Battery used by voice calls</string>
<string name="battery_desc_wifi">Battery used by Wi‑Fi</string>
<string name="battery_detail_background">While in background</string>
<string name="battery_detail_foreground">While in active use</string>
<string name="battery_detail_info_title">Since full charge</string>
<string name="battery_detail_manage_title">Manage battery usage</string>
<string name="battery_detail_power_usage">Battery usage</string>
<string name="battery_detail_since_full_charge">Breakdown since last full charge</string>
<string name="battery_details_title">Battery usage</string>
<string name="battery_footer_summary">Battery usage data is approximate and can change based on usage</string>
<string name="battery_full_charge_last">Full charge lasts about</string>
<string name="battery_header_title_alternate">^1<small> <font size="20">%</font></small></string>
<string name="battery_info_status_charging">Charging</string>
<string name="battery_info_status_charging_lower">charging</string>
<string name="battery_info_status_discharging">Not charging</string>
<string name="battery_info_status_full">Full</string>
<string name="battery_info_status_not_charging">"Plugged in, can't charge right now"</string>
<string name="battery_info_status_unknown">Unknown</string>
<string name="battery_last_full_charge">Last full charge</string>
<string name="battery_level_title">Battery level</string>
<string name="battery_manager_off">Off</string>
<string name="battery_manager_on">On / Detecting when apps drain battery</string>
<string name="battery_meter_very_low_overlay_symbol">!</string>
<string name="battery_msg_unaccounted">Battery use is an approximation of power use and does not include every source of battery drain. Miscellaneous is the difference between the computed approximate power use and the actual drain observed on the battery.</string>
<string name="battery_overall_usage">%1$s of overall battery</string>
<string name="battery_percentage">Battery percentage</string>
<string name="battery_percentage_description">Show battery percentage in status bar</string>
<string name="battery_power_management">Power management</string>
<string name="battery_saver">Battery Saver</string>
<string name="battery_saver_auto_no_schedule">No schedule</string>
<string name="battery_saver_auto_percentage">Based on percentage</string>
<string name="battery_saver_auto_percentage_summary">Will turn on at %1$s</string>
<string name="battery_saver_auto_routine">Based on your routine</string>
<string name="battery_saver_auto_routine_summary">Battery Saver turns on if your battery is likely to run out before your next typical charge</string>
<string name="battery_saver_auto_title">Turn on automatically</string>
<string name="battery_saver_button_turn_off">Turn off now</string>
<string name="battery_saver_button_turn_on">Turn on now</string>
<string name="battery_saver_master_switch_title">Use Battery Saver</string>
<string name="battery_saver_off_scheduled_summary">Will turn on at %1$s</string>
<string name="battery_saver_off_summary">Off</string>
<string name="battery_saver_on_summary">On</string>
<string name="battery_saver_schedule_settings_title">Set a schedule</string>
<string name="battery_saver_seekbar_title">%1$s</string>
<string name="battery_saver_seekbar_title_placeholder">Turn on</string>
<string name="battery_saver_sticky_description_new">Battery Saver turns off when your phone is at %1$s</string>
<string name="battery_saver_sticky_title_new">Turn off when fully charged</string>
<string name="battery_saver_turn_on_automatically_never">Never</string>
<string name="battery_saver_turn_on_automatically_pct">at %1$s battery</string>
<string name="battery_saver_turn_on_automatically_title">Turn on automatically</string>
<string name="battery_saver_turn_on_summary">Extend battery life</string>
<string name="battery_screen_usage">Screen usage ^1</string>
<string name="battery_since_reset">Battery use since reset</string>
<string name="battery_since_unplugged">Battery use since unplugged</string>
<string name="battery_stats_camera_on_label">Camera on</string>
<string name="battery_stats_charging_label">Charging</string>
<string name="battery_stats_duration">%1$s since unplugged</string>
<string name="battery_stats_flashlight_on_label">Flashlight on</string>
<string name="battery_stats_gps_on_label">GPS on</string>
<string name="battery_stats_last_duration">@string/menu_stats_last_unplugged</string>
<string name="battery_stats_on_battery">%1$s on battery</string>
<string name="battery_stats_phone_signal_label">Mobile network signal</string>
<string name="battery_stats_screen_on_label">Screen on</string>
<string name="battery_stats_wake_lock_label">Awake</string>
<string name="battery_stats_wifi_running_label">Wi‑Fi</string>
<string name="battery_status_title">Battery status</string>
<string name="battery_sugg_apps_gps">Select battery-saving mode</string>
<string name="battery_sugg_apps_info">Stop or uninstall the app</string>
<string name="battery_sugg_apps_settings">The app may offer settings to reduce battery use</string>
<string name="battery_sugg_bluetooth_basic">Turn off Bluetooth when you aren’t using it</string>
<string name="battery_sugg_bluetooth_headset">Try connecting to a different Bluetooth device</string>
<string name="battery_sugg_display">Reduce the screen brightness and/or screen timeout</string>
<string name="battery_sugg_radio">Switch to airplane mode to save power in areas with no cell coverage</string>
<string name="battery_sugg_wifi">Turn off Wi‑Fi when not using it or when it isn’t available</string>
<string name="battery_suggestion_summary" />
<string name="battery_suggestion_title">"Improve phone's battery life"</string>
<string name="battery_summary">%1$s use since last full charge</string>
<string name="battery_tip_dialog_message">"Your phone has been used more than usual. Your battery may run out sooner than expected.
Top apps by battery usage:"</string>
<string name="battery_tip_dialog_message_footer">Includes high-power background activity</string>
<string name="battery_tip_dialog_summary_message">"Your apps are using a normal amount of battery. If apps use too much battery, your phone will suggest actions you can take.
You can always turn on Battery Saver if you’re running low on battery."</string>
<string name="battery_tip_early_heads_up_done_summary">Some features may be limited</string>
<string name="battery_tip_early_heads_up_done_title">Battery Saver is on</string>
<string name="battery_tip_early_heads_up_summary">Battery may run out earlier than usual</string>
<string name="battery_tip_early_heads_up_title">Turn on Battery Saver</string>
<string name="battery_tip_high_usage_summary">Battery may run out earlier than usual</string>
<string name="battery_tip_high_usage_title">Phone used more than usual</string>
<string name="battery_tip_low_battery_summary">"Battery can't provide good battery life"</string>
<string name="battery_tip_low_battery_title">Low battery capacity</string>
<string name="battery_tip_restrict_app_dialog_message">To save battery, stop %1$s from using battery in the background. This app may not work properly and notifications may be delayed.</string>
<string name="battery_tip_restrict_app_dialog_ok">Restrict</string>
<string name="battery_tip_restrict_apps_less_than_5_dialog_message">"To save battery, stop these apps from using battery in the background. Restricted apps may not work properly and notifications may be delayed.
Apps:"</string>
<string name="battery_tip_restrict_apps_more_than_5_dialog_message">"To save battery, stop these apps from using battery in the background. Restricted apps may not work properly and notifications may be delayed.
Apps:
%1$s."</string>
<string name="battery_tip_smart_battery_summary">Turn on Battery Manager</string>
<string name="battery_tip_smart_battery_title">"Improve your phone's battery life"</string>
<string name="battery_tip_summary_summary">Phone has typical background battery usage</string>
<string name="battery_tip_summary_title">Apps are running normally</string>
<string name="battery_tip_unrestrict_app_dialog_cancel">Cancel</string>
<string name="battery_tip_unrestrict_app_dialog_message">This app will be able to use battery in the background. Your battery may run out sooner than expected.</string>
<string name="battery_tip_unrestrict_app_dialog_ok">Remove</string>
<string name="battery_tip_unrestrict_app_dialog_title">Remove restriction?</string>
<string name="battery_used_by">%1$s used by %2$s</string>
<string name="battery_used_for">Used for ^1</string>
<string name="bearer">Bearer</string>
<string name="bell">Bell</string>
<string name="bell_deleting_message">Deleting, please wait…</string>
<string name="bell_deleting_success">Deletion finished</string>
<string name="bell_deleting_title">Delete</string>
<string name="bell_diy_setting_error">"Ringtone doesn't exist'"</string>
<string name="bell_setting_download">Download</string>
<string name="bell_silence">MUTE</string>
<string name="bell_silent_type">Silent</string>
<string name="bg_power_saving_title">Standby intelligent power saving</string>
<string name="billing_cycle">Data warning & limit</string>
<string name="billing_cycle_fragment_summary">Monthly on day %1$s</string>
<string name="billing_cycle_less_than_one_day_left">Less than 1 day left</string>
<string name="billing_cycle_none_left">No time remaining</string>
<string name="ble_scan_notify_text">To improve location accuracy, system apps and services can still detect Bluetooth devices. You can change this in LINK_BEGINscanning settingsLINK_END.</string>
<string name="bling">Bling</string>
<string name="blink">Blink</string>
<string name="bluetooth">Bluetooth</string>
<string name="bluetooth_a2dp_profile_summary_connected">Connected to media audio</string>
<string name="bluetooth_a2dp_profile_summary_use_for">Use for media audio</string>
<string name="bluetooth_active_battery_level">Active, %1$s battery</string>
<string name="bluetooth_active_battery_level_untethered">Active, L: %1$s battery, R: %2$s battery</string>
<string name="bluetooth_active_no_battery_level">Active</string>
<string name="bluetooth_advanced_titlebar">Advanced Bluetooth</string>
<string name="bluetooth_ask_disablement">%1$s wants to turn off Bluetooth</string>
<string name="bluetooth_ask_disablement_no_name">An app wants to turn off Bluetooth</string>
<string name="bluetooth_ask_discovery">%1$s wants to make your phone visible to other Bluetooth devices for %2$d seconds.</string>
<string name="bluetooth_ask_discovery_no_name">An app wants to make your phone visible to other Bluetooth devices for %1$d seconds.</string>
<string name="bluetooth_ask_enablement">%1$s wants to turn on Bluetooth</string>
<string name="bluetooth_ask_enablement_and_discovery">%1$s wants to turn on Bluetooth and make your phone visible to other devices for %2$d seconds.</string>
<string name="bluetooth_ask_enablement_and_discovery_no_name">An app wants to turn on Bluetooth and make your phone visible to other devices for %1$d seconds.</string>
<string name="bluetooth_ask_enablement_and_lasting_discovery">%1$s wants to turn on Bluetooth and make your phone visible to other devices. You can change this later in Bluetooth settings.</string>
<string name="bluetooth_ask_enablement_and_lasting_discovery_no_name">An app wants to turn on Bluetooth and make your phone visible to other devices. You can change this later in Bluetooth settings.</string>
<string name="bluetooth_ask_enablement_no_name">An app wants to turn on Bluetooth</string>
<string name="bluetooth_ask_lasting_discovery">%1$s wants to make your phone visible to other Bluetooth devices. You can change this later in Bluetooth settings.</string>
<string name="bluetooth_ask_lasting_discovery_no_name">An app wants to make your phone visible to other Bluetooth devices. You can change this later in Bluetooth settings.</string>
<string name="bluetooth_battery_level">%1$s battery</string>
<string name="bluetooth_battery_level_untethered">L: %1$s battery, R: %2$s battery</string>
<string name="bluetooth_broadcasting">Broadcasting</string>
<string name="bluetooth_confirm_passkey_msg">To pair with:<br><b>%1$s</b><br><br>Make sure it is showing this passkey:<br><b>%2$s</b></string>
<string name="bluetooth_connect_failed">"Couldn't connect. Try again."</string>
<string name="bluetooth_connect_specific_profiles_title">Connect to…</string>
<string name="bluetooth_connected">Connected%1$s</string>
<string name="bluetooth_connected_battery_level">Connected, battery %1$s%2$s</string>
<string name="bluetooth_connected_multiple_devices_summary">Connected to multiple devices</string>
<string name="bluetooth_connected_no_a2dp">Connected (no media)%1$s</string>
<string name="bluetooth_connected_no_a2dp_battery_level">Connected (no media), battery %1$s%2$s</string>
<string name="bluetooth_connected_no_headset">Connected (no phone)%1$s</string>
<string name="bluetooth_connected_no_headset_battery_level">Connected (no phone), battery %1$s%2$s</string>
<string name="bluetooth_connected_no_headset_no_a2dp">Connected (no phone or media)%1$s</string>
<string name="bluetooth_connected_no_headset_no_a2dp_battery_level">Connected (no phone or media), battery %1$s%2$s</string>
<string name="bluetooth_connected_no_map">Connected (no message access)%1$s</string>
<string name="bluetooth_connected_summary">Connected to %1$s</string>
<string name="bluetooth_connecting">Connecting…</string>
<string name="bluetooth_connecting_error_message">Couldn’t connect to %1$s.</string>
<string name="bluetooth_connection_dialog_text">Do you want to connect to \"%1$s\"?</string>
<string name="bluetooth_connection_notif_message">Tap to connect to \"%1$s\".</string>
<string name="bluetooth_connection_permission_request">Bluetooth connection request</string>
<string name="bluetooth_device">Unnamed Bluetooth device</string>
<string name="bluetooth_device_advanced_enable_opp_title">Allow incoming file transfers</string>
<string name="bluetooth_device_advanced_online_mode_summary">Connect to Bluetooth device</string>
<string name="bluetooth_device_advanced_online_mode_title">Connect</string>
<string name="bluetooth_device_advanced_profile_header_title">Use for</string>
<string name="bluetooth_device_advanced_rename_device">Rename</string>
<string name="bluetooth_device_advanced_title">Paired Bluetooth device</string>
<string name="bluetooth_device_context_connect">Connect</string>
<string name="bluetooth_device_context_connect_advanced">Options…</string>
<string name="bluetooth_device_context_disconnect">Disconnect</string>
<string name="bluetooth_device_context_disconnect_unpair">Disconnect & unpair</string>
<string name="bluetooth_device_context_pair_connect">Pair & connect</string>
<string name="bluetooth_device_context_unpair">Unpair</string>
<string name="bluetooth_device_details">Device settings</string>
<string name="bluetooth_device_mac_address">"Device's Bluetooth address: %1$s"</string>
<string name="bluetooth_device_name">Device name</string>
<string name="bluetooth_device_name_summary">Visible as “^1” to other devices</string>
<string name="bluetooth_devices">Bluetooth devices</string>
<string name="bluetooth_disable_a2dp_hw_offload">Disable Bluetooth A2DP hardware offload</string>
<string name="bluetooth_disable_a2dp_hw_offload_dialog_cancel">Cancel</string>
<string name="bluetooth_disable_a2dp_hw_offload_dialog_confirm">Restart</string>
<string name="bluetooth_disable_a2dp_hw_offload_dialog_message">You need to restart your device to change this setting.</string>
<string name="bluetooth_disable_a2dp_hw_offload_dialog_title">Restart Device?</string>
<string name="bluetooth_disable_absolute_volume">Disable absolute volume</string>
<string name="bluetooth_disable_absolute_volume_summary">Disables the Bluetooth absolute volume feature in case of volume issues with remote devices such as unacceptably loud volume or lack of control.</string>
<string name="bluetooth_disabled">Off</string>
<string name="bluetooth_disconnect_a2dp_profile">%1$s will be disconnected from media audio.</string>
<string name="bluetooth_disconnect_all_profiles">Your phone will disconnect from %1$s.</string>
<string name="bluetooth_disconnect_dialog_ok">Disconnect</string>
<string name="bluetooth_disconnect_headset_profile">%1$s will be disconnected from handsfree audio.</string>
<string name="bluetooth_disconnect_hid_profile">%1$s will be disconnected from input device.</string>
<string name="bluetooth_disconnect_pan_nap_profile">%1$s will be disconnected from sharing this phone’s internet connection.</string>
<string name="bluetooth_disconnect_pan_user_profile">Internet access via %1$s will be disconnected.</string>
<string name="bluetooth_disconnect_title">Disconnect device?</string>
<string name="bluetooth_disconnected">Disconnected</string>
<string name="bluetooth_disconnecting">Disconnecting…</string>
<string name="bluetooth_display_passkey_pin_msg">To pair with:<br><b>%1$s</b><br><br>Type on it:<br><b>%2$s</b>, then press Return or Enter.</string>
<string name="bluetooth_dock_settings">Dock Settings</string>
<string name="bluetooth_dock_settings_a2dp">For music and media</string>
<string name="bluetooth_dock_settings_headset">As speaker phone</string>
<string name="bluetooth_dock_settings_remember">Remember settings</string>
<string name="bluetooth_dock_settings_title">Use dock for audio</string>
<string name="bluetooth_empty_list_bluetooth_off">When Bluetooth is turned on, your device can communicate with other nearby Bluetooth devices.</string>
<string name="bluetooth_empty_list_user_restricted">You don’t have permission to change Bluetooth settings.</string>
<string name="bluetooth_enable_alphanumeric_pin">PIN contains letters or symbols</string>
<string name="bluetooth_enable_discoverable">Discoverable</string>
<string name="bluetooth_enter_passkey_msg">Type the pairing code then press Return or Enter</string>
<string name="bluetooth_enter_passkey_other_device">You may also need to type this passkey on the other device.</string>
<string name="bluetooth_enter_pin_other_device">You may also need to type this PIN on the other device.</string>
<string name="bluetooth_error_title" />
<string name="bluetooth_footer_mac_message">"Phone's Bluetooth address: %1$s"</string>
<string name="bluetooth_headset_profile_summary_connected">Connected to phone audio</string>
<string name="bluetooth_headset_profile_summary_use_for">Use for phone audio</string>
<string name="bluetooth_hearing_aid_profile_summary_connected">Connected to Hearing Aids</string>
<string name="bluetooth_hearing_aid_profile_summary_use_for">Use for Hearing Aids</string>
<string name="bluetooth_hearingaid_left_battery_level">Left - %1$s battery</string>
<string name="bluetooth_hearingaid_left_pairing_message">Pairing left hearing aid…</string>
<string name="bluetooth_hearingaid_right_battery_level">Right - %1$s battery</string>
<string name="bluetooth_hearingaid_right_pairing_message">Pairing right hearing aid…</string>
<string name="bluetooth_hid_profile_summary_connected">Connected to input device</string>
<string name="bluetooth_hid_profile_summary_use_for">Use for input</string>
<string name="bluetooth_incoming_pairing_msg">From:<br><b>%1$s</b><br><br>Pair with this device?</string>
<string name="bluetooth_is_disconnect_question">Disconnect %1$s?</string>
<string name="bluetooth_is_discoverable">Visible to all nearby Bluetooth devices (%1$s)</string>
<string name="bluetooth_is_discoverable_always">Visible to all nearby Bluetooth devices</string>
<string name="bluetooth_is_visible_message">%1$s is visible to nearby devices while Bluetooth settings is open.</string>
<string name="bluetooth_left_name">Left</string>
<string name="bluetooth_lock_voice_dialing">Lock voice dialing</string>
<string name="bluetooth_lock_voice_dialing_summary">Prevent use of the bluetooth dialer when the screen is locked</string>
<string name="bluetooth_map_acceptance_dialog_text">%1$s wants to access your messages. Give access to %2$s?</string>
<string name="bluetooth_map_profile_summary_connected">Connected to map</string>
<string name="bluetooth_map_profile_summary_use_for">Use for map</string>
<string name="bluetooth_map_request">Message access request</string>
<string name="bluetooth_max_connected_audio_devices_dialog_title">Select maximum number of connected Bluetooth audio devices</string>
<string name="bluetooth_max_connected_audio_devices_string">Maximum connected Bluetooth audio devices</string>
<string name="bluetooth_menu_advanced">Advanced</string>
<string name="bluetooth_middle_name">Case</string>
<string name="bluetooth_name_not_set">No name set, using account name</string>
<string name="bluetooth_no_devices_found">No nearby Bluetooth devices were found.</string>
<string name="bluetooth_not_visible_to_other_devices">Not visible to other Bluetooth devices</string>
<string name="bluetooth_notif_message">Tap to pair with %1$s.</string>
<string name="bluetooth_notif_ticker">Bluetooth pairing request</string>
<string name="bluetooth_notif_title">Pairing request</string>
<string name="bluetooth_off_footer">Turn on Bluetooth to connect to other devices.</string>
<string name="bluetooth_on_time">Wi‑Fi on time</string>
<string name="bluetooth_only_visible_to_paired_devices">Only visible to paired devices</string>
<string name="bluetooth_opp_profile_summary_connected">Connected to file transfer server</string>
<string name="bluetooth_opp_profile_summary_not_connected">Not connected to file transfer server</string>
<string name="bluetooth_opp_profile_summary_use_for">Use for file transfer</string>
<string name="bluetooth_paired_device_title">Your devices</string>
<string name="bluetooth_pairing">Pairing…</string>
<string name="bluetooth_pairing_accept">Pair</string>
<string name="bluetooth_pairing_accept_all_caps">PAIR</string>
<string name="bluetooth_pairing_decline">Cancel</string>
<string name="bluetooth_pairing_device_down_error_message">"Can't communicate with %1$s."</string>
<string name="bluetooth_pairing_dialog_contants_request">%1$s wants to access your contacts and call history.</string>
<string name="bluetooth_pairing_dialog_paring_request">%1$s wants to pair with Bluetooth. When connected, it will have access to your contacts and call history.</string>
<string name="bluetooth_pairing_dialog_sharing_phonebook_title">Share phone book?</string>
<string name="bluetooth_pairing_dialog_title">Pair with this device?</string>
<string name="bluetooth_pairing_error_message">"Couldn't pair with %1$s."</string>
<string name="bluetooth_pairing_key_msg">Bluetooth pairing code</string>
<string name="bluetooth_pairing_page_title">Pair new device</string>
<string name="bluetooth_pairing_pin_error_message">"Couldn't pair with %1$s because of an incorrect PIN or passkey."</string>
<string name="bluetooth_pairing_pref_title">Pair new device</string>
<string name="bluetooth_pairing_rejected_error_message">Pairing rejected by %1$s.</string>
<string name="bluetooth_pairing_request">Pair with %1$s?</string>
<string name="bluetooth_pairing_shares_phonebook">Allow access to your contacts and call history</string>
<string name="bluetooth_pairing_will_share_phonebook">Pairing grants access to your contacts and call history when connected.</string>
<string name="bluetooth_pan_nap_profile_summary_connected">Sharing local internet connection with device</string>
<string name="bluetooth_pan_profile_summary_use_for">Use for internet access</string>
<string name="bluetooth_pan_user_profile_summary_connected">Connected to device for internet access</string>
<string name="bluetooth_pb_acceptance_dialog_text">%1$s wants to access your contacts and call history. Give access to %2$s?</string>
<string name="bluetooth_pb_remember_choice">Don’t ask again</string>
<string name="bluetooth_phonebook_request">Phone book access request</string>
<string name="bluetooth_pin_values_hint">Usually 0000 or 1234</string>
<string name="bluetooth_pin_values_hint_16_digits">Must be 16 digits</string>
<string name="bluetooth_pref_summary">Allow your phone to communicate with nearby Bluetooth devices</string>
<string name="bluetooth_preference_device_settings">Device settings</string>
<string name="bluetooth_preference_found_devices">Available devices</string>
<string name="bluetooth_preference_found_media_devices">Available devices</string>
<string name="bluetooth_preference_no_found_devices">No devices available</string>
<string name="bluetooth_preference_paired_dialog_contacts_option">Contacts and call history</string>
<string name="bluetooth_preference_paired_dialog_internet_option">Internet connection</string>
<string name="bluetooth_preference_paired_dialog_keyboard_option">Keyboard</string>
<string name="bluetooth_preference_paired_dialog_title">Paired device</string>
<string name="bluetooth_preference_scan_title">Scan for devices</string>
<string name="bluetooth_profile_a2dp">Media audio</string>
<string name="bluetooth_profile_a2dp_high_quality">HD audio: %1$s</string>
<string name="bluetooth_profile_a2dp_high_quality_unknown_codec">HD audio</string>
<string name="bluetooth_profile_details">Profile settings</string>
<string name="bluetooth_profile_headset">Phone calls</string>
<string name="bluetooth_profile_hearing_aid">Hearing Aids</string>
<string name="bluetooth_profile_hid">Input device</string>
<string name="bluetooth_profile_map">Text Messages</string>
<string name="bluetooth_profile_opp">File transfer</string>
<string name="bluetooth_profile_pan">Internet access</string>
<string name="bluetooth_profile_pan_nap">Internet connection sharing</string>
<string name="bluetooth_profile_pbap">Contact sharing</string>
<string name="bluetooth_profile_pbap_summary">Use for contact sharing</string>
<string name="bluetooth_profile_sap">SIM Access</string>
<string name="bluetooth_quick_toggle_summary">Turn on Bluetooth</string>
<string name="bluetooth_quick_toggle_title">Bluetooth</string>
<string name="bluetooth_remember_choice">Don’t ask again</string>
<string name="bluetooth_rename_button">Rename</string>
<string name="bluetooth_rename_device">Rename this device</string>
<string name="bluetooth_right_name">Right</string>
<string name="bluetooth_sap_acceptance_dialog_text">%1$s wants to access your SIM card. Granting access to the SIM card will disable data connectivity on your device for the duration of the connection. Give access to %2$s?</string>
<string name="bluetooth_sap_profile_summary_connected">Connected to SAP</string>
<string name="bluetooth_sap_profile_summary_use_for">Use for SIM access</string>
<string name="bluetooth_sap_request">SIM access request</string>
<string name="bluetooth_scan_for_devices">Scan for devices</string>
<string name="bluetooth_scanning_on_info_message">"When Bluetooth is turned on, your device can communicate with other nearby Bluetooth devices.
To improve device experience, apps and services can still scan for nearby devices at any time, even when Bluetooth is off. This can be used, for example, to improve location-based features and services. you can change this in "<annotation id="link">scanning settings</annotation>.</string>
<string name="bluetooth_search_for_devices">Refresh</string>
<string name="bluetooth_searching_for_devices">Searching…</string>
<string name="bluetooth_select_a2dp_codec_bits_per_sample">Bluetooth Audio Bits Per Sample</string>
<string name="bluetooth_select_a2dp_codec_bits_per_sample_dialog_title">"Trigger Bluetooth Audio Codec
Selection: Bits Per Sample"</string>
<string name="bluetooth_select_a2dp_codec_channel_mode">Bluetooth Audio Channel Mode</string>
<string name="bluetooth_select_a2dp_codec_channel_mode_dialog_title">"Trigger Bluetooth Audio Codec
Selection: Channel Mode"</string>
<string name="bluetooth_select_a2dp_codec_ldac_playback_quality">Bluetooth Audio LDAC Codec: Playback Quality</string>
<string name="bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title">"Trigger Bluetooth Audio LDAC
Codec Selection: Playback Quality"</string>
<string name="bluetooth_select_a2dp_codec_sample_rate">Bluetooth Audio Sample Rate</string>
<string name="bluetooth_select_a2dp_codec_sample_rate_dialog_title">"Trigger Bluetooth Audio Codec
Selection: Sample Rate"</string>
<string name="bluetooth_select_a2dp_codec_streaming_label">Streaming: %1$s</string>
<string name="bluetooth_select_a2dp_codec_type">Bluetooth Audio Codec</string>
<string name="bluetooth_select_a2dp_codec_type_dialog_title">"Trigger Bluetooth Audio Codec
Selection"</string>
<string name="bluetooth_select_avrcp_version_dialog_title">Select Bluetooth AVRCP Version</string>
<string name="bluetooth_select_avrcp_version_string">Bluetooth AVRCP Version</string>
<string name="bluetooth_settings">Bluetooth</string>
<string name="bluetooth_settings_summary">Manage connections, set device name & discoverability</string>
<string name="bluetooth_settings_title">Bluetooth</string>
<string name="bluetooth_show_devices_without_names">Show Bluetooth devices without names</string>
<string name="bluetooth_show_devices_without_names_summary">Bluetooth devices without names (MAC addresses only) will be displayed</string>
<string name="bluetooth_show_files_received_via_bluetooth">Files received via Bluetooth</string>
<string name="bluetooth_show_received_files">Received files</string>
<string name="bluetooth_talkback_bluetooth">Bluetooth</string>
<string name="bluetooth_talkback_computer">Computer</string>
<string name="bluetooth_talkback_headphone">Headphone</string>
<string name="bluetooth_talkback_headset">Headset</string>
<string name="bluetooth_talkback_imaging">Imaging</string>
<string name="bluetooth_talkback_input_peripheral">Input Peripheral</string>
<string name="bluetooth_talkback_phone">Phone</string>
<string name="bluetooth_tether_checkbox_text">Bluetooth tethering</string>
<string name="bluetooth_tethering_off_subtext_config">Sharing this %1$d’s internet connection via Bluetooth</string>
<string name="bluetooth_tethering_overflow_error">Can’t tether to more than %1$d devices.</string>
<string name="bluetooth_tethering_subtext">Share phone’s internet connection via Bluetooth</string>
<string name="bluetooth_turning_off">Turning Bluetooth off…</string>
<string name="bluetooth_turning_on">Turning Bluetooth on…</string>
<string name="bluetooth_unpair_dialog_body">Your phone will no longer be paired with %1$s</string>
<string name="bluetooth_unpair_dialog_forget_confirm_button">Forget device</string>
<string name="bluetooth_unpair_dialog_title">Forget device?</string>
<string name="bluetooth_untether_blank">%1$s will be untethered.</string>
<string name="bluetooth_untethered_unpair_dialog_body">%1$s will no longer be paired with any device linked to this account</string>
<string name="bluetooth_visibility_timeout">Visibility timeout</string>
<string name="boot_sounds_title">Power on sounds</string>
<string name="bossanova">BossaNova</string>
<string name="bottom_sheet_behavior">com.google.android.material.bottomsheet.BottomSheetBehavior</string>
<string name="brightness">Brightness level</string>
<string name="brightness_summary">Adjust the brightness of the screen</string>
<string name="brightness_title">Brightness</string>
<string name="bssid_label">BSSID:</string>
<string name="bt_hci_snoop_log">Enable Bluetooth HCI snoop log</string>
<string name="bt_hci_snoop_log_summary">Capture Bluetooth packets. (Toggle Bluetooth after changing this setting)</string>
<string name="bubbles_app_toggle_summary">Allow %1$s to show some notifications as bubbles</string>
<string name="bubbles_app_toggle_title">Bubbles</string>
<string name="bubbles_feature_disabled_button_approve">Turn on for device</string>
<string name="bubbles_feature_disabled_button_cancel">Cancel</string>
<string name="bubbles_feature_disabled_dialog_text">To turn on bubbles for this app, first you need to turn them on for your device. This affects other apps in which you previously turned on bubbles.</string>
<string name="bubbles_feature_disabled_dialog_title">Turn on bubbles</string>
<string name="bubbles_feature_education">Some notifications and other content can appear as bubbles on the screen. To open a bubble, tap it. To dismiss it, drag it down the screen.</string>
<string name="bugreport_in_power">Bug report shortcut</string>
<string name="bugreport_in_power_summary">Show a button in the power menu for taking a bug report</string>
<string name="bugreport_title">Send bug report</string>
<string name="build_number">Build number</string>
<string name="builtin_keyboard_settings_summary">Physical keyboard settings</string>
<string name="builtin_keyboard_settings_title">Physical keyboard</string>
<string name="button_cancel">Cancel</string>
<string name="button_confirm_convert_fbe">Wipe and convert</string>
<string name="button_convert_fbe">Wipe and convert…</string>
<string name="button_forward_settings">Go to Settings</string>
<string name="button_forward_use">Use now</string>
<string name="button_open_toast_close">%1$s off</string>
<string name="button_open_toast_open">%1$s enabled</string>
<string name="button_sure">OK</string>
<string name="byteShort">B</string>
<string name="cache_header_label">Cache</string>
<string name="cache_size_label">Cache</string>
<string name="cached">Cached background process</string>
<string name="call_category">Calling</string>
<string name="call_manager_enable_summary">Allow this service to manage how your calls are made.</string>
<string name="call_manager_enable_title">Enable Call Manager</string>
<string name="call_manager_summary">%1$s</string>
<string name="call_manager_title">Call Manager</string>
<string name="call_settings_summary">Set up voicemail, call forwarding, call waiting, caller ID</string>
<string name="call_settings_title">Call settings</string>
<string name="call_volume_option_title">Call volume</string>
<string name="calling_enable_data_title">Allow to access mobile network during calling</string>
<string name="calls_and_sms_ask_every_time">Ask every time</string>