-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathstrings.xml
More file actions
1321 lines (1203 loc) · 85.2 KB
/
Copy pathstrings.xml
File metadata and controls
1321 lines (1203 loc) · 85.2 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"?><!--
Copyright (C) 2015 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="app_name">Test DPC</string>
<string name="setup_app_name">Set up Test DPC</string>
<string name="cancel">Cancel</string>
<string name="set_up_managed_profile">Set up managed profile</string>
<string name="set_up_device_owner">Set up device owner</string>
<string name="set_up_management_header">Set up management</string>
<string name="setup_management_message">This app is currently not the owner of this device or
profile. Please select an option below and tap Next to set up appropriate management by this app.</string>
<string name="setup_management_message_for_do">This app is currently set as device owner. Please select the options below and tap Next to create a profile managed by the same app</string>
<string name="provisioning_not_possible">TestDPC isn\'t currently allowed to be set up as the profile or device owner.</string>
<string name="provisioning_not_possible_for_do">TestDPC isn\'t currently allowed to create a managed profile.</string>
<string name="exit">Exit</string>
<string name="managed_account_message">Added account that requires management:</string>
<string name="managed_account_complete_message">Added account that is now managed:</string>
<string name="account_migration_failed_message">Account failed to migrate:</string>
<string name="add_account_later_message">Please add the account later.</string>
<string name="setup_label">Set up</string>
<string name="profile_name">Sample Managed Profile</string>
<string name="skip_user_setup">Skip user setup</string>
<string name="skip_user_consent">Skip user consent during provisioning</string>
<string name="keep_account_migrated">Keep account on this user, if migrated</string>
<string name="skip_encryption">Skip encryption</string>
<string name="managed_profile_name">Sample Managed Profile</string>
<string name="managed_user_name">Sample Managed User</string>
<string name="finish_setup">Finish setup</string>
<string name="finish_setup_account_not_ready">Finish setup but account might not be ready</string>
<string name="setup_finished">Setup finished</string>
<string name="click_finish_to_complete">Click Finish to complete setup.</string>
<string name="waiting_for_first_account_check_in">Putting finishing touches</string>
<string name="finish_button">Finish</string>
<string name="all_done">Setup finished successfully</string>
<string name="all_done_explanation_profile_owner">To manage the new managed profile, visit the
badged version of this application.
</string>
<string name="all_done_explanation_device_owner">To manage the device open this application.
</string>
<string name="add_account_title">Provisioning finished successfully</string>
<string name="add_account_explanation">To add an account, select the corresponding option below. Select skip if you want to add it later:
</string>
<string name="add_account">Add account</string>
<string name="add_account_with_name">Add account with name</string>
<string name="add_account_skip">Skip</string>
<string name="add_account_dialog_title">Account name:</string>
<string name="fail_to_add_account">Failed to add account</string>
<string name="remove_account">Remove account</string>
<string name="success_remove_account">Account removed: %s</string>
<string name="fail_to_remove_account">Failed to remove account: %s</string>
<string name="no_accounts_available">No accounts available.</string>
<string name="icon">Icon</string>
<string name="manage_apps">Manage applications</string>
<string name="reset">Reset</string>
<string name="save">Save</string>
<string name="migration_not_supported">Unable to migrate account into profile</string>
<string name="provisioning_not_supported">Device provisioning is not enabled</string>
<string name="provisioning_failed_or_cancelled">Provisioning failed or cancelled</string>
<string name="provisioning_params_title">Select provisioning parameters</string>
<string name="provisioning_params_color">Color: </string>
<string name="provisioning_params_logo">Logo: </string>
<string name="provisioning_params_select">Select</string>
<string name="error_opening_image_file">Error opening image file</string>
<string name="yes">Yes</string>
<string name="no">No</string>
<string name="work_profile">Work profile</string>
<string name="personal_profile">Personal profile</string>
<string name="managed_profile_specific_policy_category_title">Managed profile policies</string>
<string name="managed_profile_specific_policy_title">Managed work profile specific policies
</string>
<string name="policies_management">Policy management</string>
<string name="other_owner_already_setup_error">There is already a device/profile owner, cannot
start TestDPC</string>
<string name="invalid_launch_intent_no_account">No account found on incoming intent</string>
<string name="device_admin_receiver_failure">Failed to become device/profile owner</string>
<string name="menu_search_title">Search</string>
<!-- Reasons for disabling preferences -->
<string name="requires_android_api_level">Requires API level
<xliff:g id="api level">%d</xliff:g></string>
<string name="requires_android_v">Requires API level 35</string>
<string name="requires_preview_release">Requires the Android P preview release</string>
<string name="requires">Requires\u0020</string>
<string name="requires_delimiter">,\u0020</string>
<string name="requires_or">\u0020or\u0020</string>
<string name="device_owner">device owner</string>
<string name="org_owned_profile_owner">organization-owned profile owner</string>
<string name="profile_owner">profile owner</string>
<string name="primary_user">primary user</string>
<string name="secondary_user">secondary user</string>
<string name="managed_profile">managed profile</string>
<string name="requires_device_owner">Requires device owner</string>
<string name="requires_profile_owner_organization_owned_device">Requires profile owner of an organization owned device</string>
<string name="requires_device_owner_or_profile_owner_organization_owned_device">Requires device owner or profile owner of an organization owned device</string>
<string name="requires_device_owner_or_delegation_network_logging">Requires device owner or delegation-network-logging</string>
<string name="requires_device_owner_or_delegation_security_logging">Requires device owner or delegation-security-logging</string>
<string name="not_for_parent_profile">Not applicable to parent profile</string>
<string name="deprecated_since_oreo">Deprecated since Android Oreo</string>
<string name="user_restricted">Disallowed by user restriction</string>
<string name="requires_network_logs">Requires network logging to be enabled</string>
<string name="requires_security_logs">Requires security logging to be enabled</string>
<string name="not_for_password_quality">Not applicable to current password quality</string>
<string name="this_is_a_device_owner">This app is the device owner.</string>
<string name="this_is_a_profile_owner">This app is a profile owner.</string>
<string name="this_is_an_org_owned_profile_owner">This app is a profile owner of an organization-owned device.</string>
<string name="this_is_a_delegated_app">This app has delegated permissions.</string>
<string name="this_is_a_role_holder">This app is the Device Management Role Holder.</string>
<string name="this_is_not_an_admin">This app is not an admin.</string>
<!-- Strings for provisioning disclaimers-->
<string name="default_disclaimer_company_name">TestDPC Company</string>
<string name="default_disclaimer_emm_name">TestDPC EMM</string>
<!-- Strings for device owner management -->
<string name="device_owner_management">Device owner management</string>
<string name="set_auto_time_required">Set auto (network) time required</string>
<string name="set_auto_time">Set auto (network) time</string>
<string name="set_auto_time_zone">Set auto (network) time zone</string>
<string name="remove_device_owner">Remove this device owner</string>
<string name="remove_device_owner_title">Remove device owner?</string>
<string name="remove_device_owner_confirmation">Policies and restrictions will continue to be
active and may require a factory reset to clear.</string>
<string name="device_owner_removed">This app is no longer a device owner.</string>
<string name="remove_profile_owner">Remove this profile owner</string>
<string name="remove_profile_owner_title">Remove profile owner?</string>
<string name="profile_owner_removed">This app is no longer a profile owner.</string>
<string name="set_factory_reset_protection_policy">Set factory reset protection policy</string>
<string name="factory_reset_protection_policy">Factory reset protection policy</string>
<string name="factory_reset_protection_policy_accounts">Account IDs</string>
<string name="factory_reset_protection_policy_account_id_msg">Account IDs are exactly 21 decimal digits</string>
<string name="factory_reset_protection_policy_enabled">Enabled</string>
<string-array name="factory_reset_protection_policy_enabled_choices">
<item>Disabled</item>
<item>Enabled</item>
</string-array>
<string name="cleared_factory_reset_protection_policy">Cleared factory reset protection policy</string>
<string name="saved_factory_reset_protection_policy">Saved factory reset protection policy</string>
<!-- Strings for data wipe section-->
<string name="data_wipe_section">Data wipe</string>
<string name="remove_managed_profile">Remove work profile</string>
<string name="remove_managed_profile_title">Remove work profile?</string>
<string name="wipe_data_confirmation">Are you sure you want to wipe the data?</string>
<string name="wipe_data_include">Also wipe:</string>
<string name="external_storage">External storage</string>
<string name="reset_protection_data">Factory reset protection</string>
<string name="factory_reset_device">Factory reset device</string>
<string name="factory_reset_device_title">Factory reset device?</string>
<!-- Strings for device reboot -->
<string name="reboot">Reboot device</string>
<string name="reboot_error_msg">Cannot reboot device during an ongoing call.</string>
<!-- Strings for cross-profile intent filters -->
<string name="cross_profile_intents">Cross-profile intents</string>
<string name="add_cross_profile_intents_title">Add cross-profile intents</string>
<string name="clear_cross_profile_intents">Clear all cross-profile intents</string>
<string name="actions_title">Actions:</string>
<string name="categories_title">Categories:</string>
<string name="data_schemes_title">Schemes:</string>
<string name="data_types_title">Data types:</string>
<string name="add_cross_profile_intent_success_msg">Cross-profile intent filter has been added
</string>
<string name="add_cross_profile_intent_failed_msg">Cross-profile intent requires at least one
action, category or scheme</string>
<string name="cross_profile_intent_filters_cleared">All cross-profile intent filters have been
removed.</string>
<string name="cross_profile_intent_filters_flags">Flags:</string>
<string name="add">Add</string>
<string name="clear">Clear</string>
<!-- Strings for system information -->
<string name="invalid_security_patch">Invalid security patch format:
<xliff:g id="security_patch">%s</xliff:g></string>
<string name="security_patch">Security patch</string>
<!-- Strings for camera and screen capture -->
<string name="camera_title">Camera, screen capture and audio</string>
<string name="display_media">Display Media</string>
<string name="disable_camera">Disable camera</string>
<string name="disable_camera_on_parent">Disable camera on parent</string>
<string name="capture_image">Capture image</string>
<string name="capture_video">Capture video</string>
<string name="camera_app_not_found">Ensure that a camera app is enabled</string>
<string name="play_button_label">Play</string>
<string name="stop_button_label">Stop</string>
<string name="delete_button_label">Delete</string>
<string name="disable_screen_capture">Disable screen capture</string>
<string name="disable_screen_capture_on_parent">Disable screen capture on parent</string>
<string name="mute_audio">Mute audio</string>
<!-- Stings for work profile management -->
<string name="profile_management_title">Work profile management</string>
<string name="lock_parent_key">Lock parent</string>
<string name="evict_ce_key">Evict CE key</string>
<!-- Strings for cross-profile widget provider -->
<string name="cross_profile_widget_providers_title">Cross-profile widget providers</string>
<string name="add_cross_profile_app_widget_providers_title">Enable app widgets</string>
<string name="add_cross_profile_app_widget_providers">Enable app widgets in a work profile app
</string>
<string name="remove_cross_profile_app_widget_providers_title">Disable app widgets</string>
<string name="remove_cross_profile_app_widget_providers">Remove app widgets in a work profile
app
</string>
<string name="all_cross_profile_widget_providers_are_enabled">There is no widget from any of the
work profile apps that is in disabled state.</string>
<string name="all_cross_profile_widget_providers_are_disabled">There is no widget from any of
the work profile apps that is in enabled state.</string>
<string name="cross_profile_widget_enable">Widgets from "%s" are enabled.</string>
<string name="cross_profile_widget_disable">Widgets from "%s" are disabled.</string>
<!-- Strings for policies -->
<string name="policies_title">Policies</string>
<string name="disable_bluetooth_contact_sharing">Disable bluetooth contact sharing</string>
<string name="disable_cross_profile_caller_id">Disable cross-profile caller ID</string>
<string name="disable_cross_profile_contacts_search">Disable cross-profile contacts search</string>
<!-- Strings for telephony -->
<string name="telephony_title">Telephony</string>
<!-- Strings for APN -->
<string name="override_apn_title">Override APN management</string>
<string name="manage_override_apn">Manage override APNs</string>
<string name="insert_override_apn">Insert override APN</string>
<string name="insert_override_apn_error">Fail to insert override APN, format incorrect</string>
<string name="remove_override_apn">Remove all override APNs</string>
<string name="enable_override_apn">Enable override APNs</string>
<string name="apn_entry_name">Entry name</string>
<string name="apn_apn_name">APN name</string>
<string name="apn_proxy">Proxy address</string>
<string name="apn_port">Proxy port</string>
<string name="apn_mmsc">MMSC</string>
<string name="apn_mmsproxy">MMS proxy address</string>
<string name="apn_mmsport">MMS proxy port</string>
<string name="apn_user">User</string>
<string name="apn_password">Password</string>
<string name="apn_auth_type">Authentication type</string>
<string name="apn_type">Apn type bitmask</string>
<string name="apn_numeric">Operator numeric(MCC+MNC)</string>
<string name="apn_protocol">Protocol</string>
<string name="apn_roaming_protocol">Roaming protocol</string>
<string name="apn_carrier_enabled">Carrier enabled</string>
<string name="apn_network_bitmask">Network type bitmask</string>
<string name="apn_mvno_type">MVNO type</string>
<string name="apn_numeric_hint">Numeric=MCC+MNC</string>
<!-- Strings for eSIM controls-->
<string name="esim_management">eSIM Management</string>
<string name="manage_esim"> Manage eSIM</string>
<string name="download_esim">Download eSIM</string>
<string name="esim_activation_code">Enter activation code</string>
<string name="delete_esim_dialog_title">Enter subId of the eSIM to delete</string>
<string name="get_managed_esim_dialog_title">List of managed eSIMs subId</string>
<string name="delete_esim">Delete eSIM</string>
<string name="get_managed_esim">Get managed eSIM</string>
<string name="apn_entry_name_cannot_be_empty">Entry name cannot be empty</string>
<string name="apn_name_cannot_be_empty">APN name cannot be empty</string>
<string name="apn_type_cannot_be_zero">Apn type bitmask cannot be empty or zero</string>
<string name="apn_wrong_url">Cannot parse mmsc</string>
<string name="apn_wrong_inetaddress">Cannot parse proxy address or MMS proxy address</string>
<string name="apn_wrong_port">Cannot parse proxy port or MMS proxy port</string>
<!-- Strings for Cross Profile Calendar -->
<string name="cross_profile_calendar">Cross-profile calendar</string>
<string name="cross_profile_calendar_set_allowed_packages">Set allowed packages</string>
<string name="cross_profile_calendar_set_allowed_packages_title">Enter packages names, separated by comma</string>
<string name="cross_profile_calendar_allow_all_packages">Allow all packages</string>
<string-array name="apn_auth_type_choices">
<item>Not specified</item>
<!-- Do not translate. -->
<item>NONE</item>
<!-- Do not translate. -->
<item>PAP</item>
<!-- Do not translate. -->
<item>CHAP</item>
<!-- Do not translate. -->
<item>PAP or CHAP</item>
</string-array>
<string-array name="apn_protocol_choices">
<item>Not specified</item>
<!-- Do not translate. -->
<item>IP</item>
<!-- Do not translate. -->
<item>IPV6</item>
<!-- Do not translate. -->
<item>IPV4V6</item>
<!-- Do not translate. -->
<item>PPP</item>
</string-array>
<string-array name="apn_mvno_type_choices">
<item>Not specified</item>
<!-- Do not translate. -->
<item>SPN</item>
<!-- Do not translate. -->
<item>IMSI</item>
<!-- Do not translate. -->
<item>GID</item>
<!-- Do not translate. -->
<item>ICCID</item>
</string-array>
<string-array name="apn_carrier_enabled_choices">
<item>Disabled</item>
<item>Enabled</item>
</string-array>
<!-- Strings for wifi management -->
<string name="wifi_management_title">WI-FI management</string>
<string name="create_wifi_configuration">Create WI-FI configuration</string>
<string name="add_network">Add network</string>
<string name="wifi_ssid">Network name</string>
<string name="wifi_ssid_hint">Enter the SSID</string>
<string name="wifi_security">Security</string>
<string-array name="wifi_security_choices">
<item>None</item>
<!-- Do not translate. -->
<item>WEP</item>
<!-- Do not translate. -->
<item>WPA/WPA2</item>
</string-array>
<string name="wifi_password">Password</string>
<string name="wifi_show_password">Show password</string>
<string name="minimum_limit">At least 8 characters</string>
<!-- Hint for unchanged fields -->
<string name="wifi_unchanged">(unchanged)</string>
<string name="wifi_save">Save</string>
<string name="wifi_cancel">Cancel</string>
<string name="wifi_config_success">WI-FI configuration saved.</string>
<string name="wifi_config_fail">Failed to save the WI-FI configuration.</string>
<string name="enable_wifi_config_lockdown">DO created WI-FI configs are modifiable only by DO</string>
<string name="modify_wifi_configuration">Modify WI-FI configuration</string>
<string name="modify_owned_wifi_configuration">Modify Owned WI-FI configuration</string>
<string name="remove_not_owned_wifi_configurations">Remove all networks not owned by DO</string>
<string name="show_wifi_mac_address">Show Wi-Fi MAC address</string>
<string name="show_wifi_mac_address_title">Wi-Fi MAC address</string>
<string name="show_wifi_mac_address_not_available_msg">Wi-Fi MAC is not available</string>
<string name="wifi_configs_header">Saved WI-FI configurations</string>
<string name="wifi_update_config_button">Update selected</string>
<string name="wifi_remove_config_button">Remove selected</string>
<string name="wifi_remove_all_config_button">Remove All</string>
<string name="wifi_modification_error_title">Error modifying config</string>
<string name="wifi_remove_config_error">Unable to remove SSID \'<xliff:g id="wifi_ssid">%1$s</xliff:g>\': netId = <xliff:g id="wifi_network_id">%2$d</xliff:g></string>
<string name="create_eap_tls_wifi_configuration">Create EAP-TLS WI-FI configuration</string>
<string name="wifi_identity">Identity (if any)</string>
<string name="wifi_client_cert_password">Client certificate password (if any)</string>
<string name="wifi_domain">Domain suffix match</string>
<string name="wifi_alt_subject_match">Alt subject match</string>
<string name="import_ca_certificate">Import CA certificate</string>
<string name="import_user_certificate">Import user certificate</string>
<string name="select_user_certificate">Select user certificate</string>
<string name="selected_certificate">Selected certificate: <xliff:g example="server certificate" id="certificate_alias">%1$s</xliff:g></string>
<string name="selected_keychain_certificate">Selected KeyChain alias: <xliff:g example="somealias" id="certificate_alias">%1$s</xliff:g></string>
<string name="selected_certificate_none">No certificate selected</string>
<string name="error_domain_and_alt_subject_match_both_unset">Either domain or alt subject match must be set</string>
<string name="error_missing_ssid">Missing SSID</string>
<string name="error_missing_ca_cert">Missing CA cert</string>
<string name="error_missing_client_cert">Missing client cert or invalid cert password</string>
<string name="error_cannot_grant_to_wifi">Failed to allow Wi-Fi auth with client key pair</string>
<string name="wifi_eap_tls_dialog_message">EAP_TLS with X.509 CA certificate and PKCS12 client certificate</string>
<string name="wifi_unknown_cert">Unknown cert</string>
<string name="set_wifi_min_security_level">Set WI-FI minimum security level</string>
<string name="security_level_open">Open</string>
<string name="security_level_personal">Personal</string>
<string name="security_level_enterprise_eap">Enterprise EAP</string>
<string name="security_level_enterprise_192">Enterprise 192</string>
<string name="type_allowlist">Allowlist</string>
<string name="type_denylist">Denylist</string>
<string name="ssid_list_description">Enter comma separated SSIDs - empty list to remove</string>
<string name="set_wifi_ssid_restriction">Set WI-FI SSID restriction list</string>
<!-- Strings for managing apps -->
<string name="apps_management_title">Apps management</string>
<string name="package_name_hints">Package name</string>
<string name="package_name_error">Package not found: %s</string>
<string name="enable_system_apps_title">Enable system apps</string>
<string name="enable_system_apps_by_package_name">Enable a system app by package name</string>
<string name="enable_system_apps_by_package_name_success_msg">%s is enabled.</string>
<string name="enable_system_apps_by_intent">Enable a system app by intent</string>
<string name="enable_system_apps_failure_msg">Failed to enable system apps that receive the
given intent
</string>
<string name="enable_system_apps_attempt_msg">Enabled system apps that receive the given intent
</string>
<string name="no_disabled_system_apps">All system apps have been enabled.</string>
<string name="install_existing_packages_title">Install existing package</string>
<string name="install_existing_packages_by_package_title">Install existing package by package</string>
<string name="install_existing_packages_success_msg">%s is installed.</string>
<string name="no_uninstalled_apps">All cached apps have been installed.</string>
<string name="enable">Enable</string>
<string name="invalid_system_apps_action">Invalid action</string>
<string name="install_apk_package_title">Install package from APK file</string>
<string name="uninstall_packages_title">Uninstall package</string>
<string name="hide_apps_title">Hide apps</string>
<string name="hide_apps_parent_title">Hide apps on parent</string>
<string name="hide_apps_empty">All apps are hidden.</string>
<string name="hide_apps_success">%s is now hidden.</string>
<string name="hide_apps_failure">%s cannot be hidden, because it is an active admin or
required by the system.</string>
<string name="hide_apps_system_failure">%s cannot be hidden, because the provided package
is not a system package.</string>
<string name="unhide_apps_title">Unhide apps</string>
<string name="unhide_apps_parent_title">Unhide apps on parent</string>
<string name="unhide_apps_empty">No apps are currently hidden.</string>
<string name="unhide_apps_success">%s is no longer hidden.</string>
<string name="unhide_apps_failure">%s cannot be unhidden.</string>
<string name="unhide_apps_system_failure">%s cannot be unhidden, because the provided package
is not a system package.</string>
<string name="suspend_apps_title">Suspend apps</string>
<string name="suspend_apps_empty">All apps are suspended.</string>
<string name="suspend_apps_success">%s is now suspended.</string>
<string name="suspend_apps_failure">%s cannot be suspended.</string>
<string name="unsuspend_apps_title">Unsuspend apps</string>
<string name="unsuspend_apps_empty">No apps are currently suspended.</string>
<string name="unsuspend_apps_success">%s is no longer suspended.</string>
<string name="unsuspend_apps_failure">%s cannot be unsuspended.</string>
<string name="clear_app_data_title">Clear app data</string>
<string name="clear_app_data_empty">No apps available.</string>
<string name="clear_app_data_success">%s data is now cleared.</string>
<string name="clear_app_data_failure">%s data cannot be cleared.</string>
<string name="keep_uninstalled_packages">Keep uninstalled packages</string>
<string name="enter_package_name">Enter package name</string>
<string name="package_name_empty_error">Package name cannot be empty</string>
<!-- Strings for lock task -->
<string name="lock_task_title">Lock task</string>
<string name="manage_lock_task">Manage lock task list</string>
<string name="no_primary_app_available">No primary app is available</string>
<string name="check_lock_task_permitted">Check lock task permitted</string>
<string name="input_package_name_hints">Enter a package name</string>
<string name="check_lock_task_permitted_result_permitted">Lock task is permitted.</string>
<string name="check_lock_task_permitted_result_not_permitted">Lock task is not permitted.
</string>
<string name="set_lock_task_features_title">Set lock task features</string>
<string name="lock_task_feature_system_info">System info</string>
<string name="lock_task_feature_notifications">Notifications</string>
<string name="lock_task_feature_home">Home</string>
<string name="lock_task_feature_overview">Overview</string>
<string name="lock_task_feature_global_actions">Global actions (power button menu)</string>
<string name="lock_task_feature_keyguard">Keyguard</string>
<string name="start_lock_task">Self-start lock task mode</string>
<string name="relaunch_in_lock_task_title">Launch another activity in lock task mode</string>
<string name="stop_lock_task">Stop lock task mode</string>
<string name="lock_task_unavailable">Cannot set lock task packages: This user is not affiliated</string>
<!-- Strings for single-use devices -->
<string name="single_use_devices">Single-use devices</string>
<string name="disable_status_bar">Disable status bar</string>
<string name="reenable_status_bar">Reenable status bar</string>
<string name="disable_keyguard">Disable keyguard</string>
<string name="reenable_keyguard">Reenable keyguard</string>
<string name="kiosk_mode">Kiosk mode</string>
<string name="kiosk_select_title">Select kiosk apps</string>
<string name="start_kiosk_mode">Start kiosk mode</string>
<string name="stop_kiosk_mode">Stop kiosk mode</string>
<string name="setup_cosu">Setting up your COSU device\u2026</string>
<string name="setup_cosu_success">COSU device successfully set up</string>
<string name="setup_cosu_failure">Error during COSU set up</string>
<string name="setup_cosu_status_download">Downloading the config file\u2026</string>
<string name="setup_cosu_status_parse">Parsing the config file\u2026</string>
<string name="setup_cosu_status_apps">Downloading and installing additional apps\u2026</string>
<!-- Strings for user restriction management -->
<string name="user_restrictions_preference_title">Set user restrictions</string>
<string name="user_restrictions_parent_preference_title">Set user restrictions on parent</string>
<string name="user_restrictions_management_title">User restrictions</string>
<string name="allow_parent_profile_app_linking">Allow web links to apps of the parent</string>
<string name="disallow_add_managed_profile">Disallow add managed profile</string>
<string name="disallow_add_user">Disallow add user</string>
<string name="disallow_adjust_volume">Disallow adjust volume</string>
<string name="disallow_apps_control">Disallow apps control</string>
<string name="disallow_bluetooth">Disallow bluetooth</string>
<string name="disallow_bluetooth_sharing">Disallow bluetooth sharing</string>
<string name="disallow_change_wifi_state">Disallow change Wi-Fi state</string>
<string name="disallow_wifi_tethering">Disallow Wi-Fi tethering</string>
<string name="disallow_wifi_direct">Disallow Wi-Fi direct</string>
<string name="disallow_add_wifi_config">Disallow add Wi-Fi config</string>
<string name="disallow_sharing_admin_configured_wifi">Disallow sharing admin configured Wi-Fi</string>
<string name="disallow_config_bluetooth">Disallow config bluetooth</string>
<string name="disallow_config_cell_broadcasts">Disallow config cell broadcasts</string>
<string name="disallow_config_credentials">Disallow config credentials</string>
<string name="disallow_config_mobile_networks">Disallow config mobile networks</string>
<string name="disallow_config_tethering">Disallow config tethering</string>
<string name="disallow_config_vpn">Disallow config vpn</string>
<string name="disallow_config_wifi">Disallow config Wi-Fi</string>
<string name="disallow_create_windows">Disallow create windows</string>
<string name="disallow_system_error_dialogs">Disallow system error dialogs</string>
<string name="disallow_cross_profile_copy_paste">Disallow cross-profile copy/paste</string>
<string name="disallow_data_roaming">Disallow data roaming</string>
<string name="disallow_debugging_features">Disallow debugging features</string>
<string name="disallow_factory_reset">Disallow factory reset</string>
<string name="disallow_fun">Disallow fun</string>
<string name="disallow_install_apps">Disallow install apps</string>
<string name="disallow_install_unknown_sources">Disallow install unknown sources</string>
<string name="check_setting_disallow_install_unknown_sources">Ensure that
\"Allow installs from unknown sources\" under Settings management is correctly checked.
</string>
<string name="disallow_install_unknown_sources_globally">Disallow installs from unknown sources globally</string>
<string name="check_setting_ok">Ok</string>
<string name="disallow_modify_accounts">Disallow modify accounts</string>
<string name="disallow_mount_physical_media">Disallow mount physical media</string>
<string name="disallow_network_reset">Disallow network reset</string>
<string name="disallow_outgoing_beam">Disallow outgoing beam</string>
<string name="disallow_outgoing_calls">Disallow outgoing calls</string>
<string name="disallow_remove_managed_profile">Disallow remove managed profile</string>
<string name="disallow_remove_user">Disallow remove user</string>
<string name="disallow_safe_boot">Disallow safe boot</string>
<string name="disallow_set_user_icon">Disallow set user icon</string>
<string name="disallow_set_wallpaper">Disallow set wallpaper</string>
<string name="disallow_share_location">Disallow share location</string>
<string name="disallow_sms">Disallow sms</string>
<string name="disallow_uninstall_apps">Disallow uninstall apps</string>
<string name="disallow_unmute_microphone">Disallow unmute microphone</string>
<string name="disallow_usb_file_transfer">Disallow usb file transfer</string>
<string name="disallow_microphone_toggle">Disallow microphone toggle</string>
<string name="disallow_camera_toggle">Disallow camera toggle</string>
<string name="ensure_verify_apps">Ensure verify apps</string>
<string name="disallow_autofill">Disallow autofill</string>
<string name="disallow_unified_password">Require separate challenge</string>
<string name="disallow_user_switch">Disallow user switch</string>
<string name="disallow_config_location">Disallow config location</string>
<string name="disallow_airplane_mode">Disallow airplane mode</string>
<string name="disallow_config_brightness">Disallow config brightness</string>
<string name="disallow_config_date_time">Disallow config date time</string>
<string name="disallow_config_screen_timeout">Disallow config screen timeout</string>
<string name="disallow_ambient_display">Disallow ambient display</string>
<string name="disallow_share_into_work_profile">Disallow sharing data into the profile</string>
<string name="disallow_printing">Disallow printing</string>
<string name="disallow_config_private_dns">Disallow config Private DNS</string>
<string name="disallow_content_capture">Disallow content capture</string>
<string name="disallow_content_suggestions">Disallow content suggestions</string>
<string name="disallow_cellular_2g">Disallow Cellular 2G</string>
<string name="disallow_config_default_apps">Disallow config default apps</string>
<string name="disallow_config_locale">Disallow config locale</string>
<string name="disallow_ultra_wideband_radio">Disallow ultra wideband radio</string>
<string name="disallow_assist_content">Disallow assist content</string>
<string name="disallow_sim_globally">Disallow sim globally</string>
<string name="disallow_add_private_profile">Disallow add private profile</string>
<string name="user_restriction_error_msg">Operation not allowed</string>
<!-- Strings for select app -->
<string name="current_selected_package">Current package:</string>
<string name="selected_package_new_label">New package name</string>
<string name="selected_package_set">Set</string>
<string name="selected_package_clear">Clear</string>
<string name="selected_package_none">None</string>
<string name="select_app_instructions">Select an app from the list,
or manually enter a package name below:</string>
<!-- Strings for certificate management -->
<string name="certificate_management_title">Certificate management</string>
<string name="request_manage_credentials">Request to manage credentials</string>
<string name="install_key_certificate">Install a private/public key pair</string>
<string name="remove_key_certificate">Remove a private/public key pair</string>
<string name="remove_keypair_successfully">The key pair is removed.</string>
<string name="remove_keypair_fail">The key pair failed to remove.</string>
<string name="key_override_alias">Override client certificates with alias</string>
<string name="certificate_password_prompt_title">Extract certificate</string>
<string name="certificate_password_prompt_enter_password">Type the password to extract the
certificates.
</string>
<string name="certificate_password_prompt_incorrect">Type the correct password.</string>
<string name="certificate_alias_prompt_title">Name the certificate</string>
<string name="certificate_alias_prompt_certificate_name">Certificate name:</string>
<string name="certificate_added">\"%s\" certificate added.</string>
<string name="certificate_add_failed">\"%s\" certificate could not be installed.</string>
<string name="not_a_key_certificate">The selected certificate is not a private key certificate.
</string>
<string name="generate_key_and_certificate">Generate a private/public key pair</string>
<string name="key_generation_successful">Key and certificate generated successfully</string>
<string name="key_generation_failed">FAILED key generation</string>
<string name="test_key_usage">Test signing/validation with a key</string>
<string name="key_usage_successful">Successfully signed with %1$s</string>
<string name="key_usage_failed">FAILED utilizing key for signature/verification</string>
<string name="attestation_details_header">Attestation record details:</string>
<string name="attestation_challenge_description">Attestation challenge:</string>
<string name="device_serial_number_description">Serial number from certificate:</string>
<string name="device_imei_description">IMEI from certificate:</string>
<string name="device_meid_description">MEID from certificate:</string>
<string name="attestation_chain_length_description">Attestation chain length:</string>
<string name="attestation_root_description">Attestation root:</string>
<string name="install_ca_certificate">Install a CA certificate</string>
<string name="install_ca_successfully">The selected CA certificate is installed.</string>
<string name="install_ca_fail">The selected CA certificate is not installed.</string>
<string name="get_ca_certificates">Get a list of CA certificates</string>
<string name="no_ca_certificate">There is no CA certificate installed.</string>
<string name="installed_ca_title">Installed CA certificates</string>
<string name="remove_all_ca_certificates">Remove all CA certificates</string>
<string name="all_ca_certificates_removed">All CA certificates have been removed.</string>
<string name="user_selectability_description">User-selectability</string>
<string name="user_selectability_checkbox">Make user-selectable</string>
<string name="ec_key_checkbox">Generate EC key (Default: RSA)</string>
<string name="key_attestation_description">Key Attestation options</string>
<string name="key_attestation_checkbox">Include key attestation challenge</string>
<string name="device_id_attestation_description">Device ID attestation options</string>
<string name="brand_attestation_checkbox">Include brand attestation only</string>
<string name="serial_num_attestation_checkbox">Include device serial number</string>
<string name="imei_attestation_checkbox">Include device IMEI</string>
<string name="meid_attestation_checkbox">Include device MEID</string>
<string name="strongbox_features_description">StrongBox-related options</string>
<string name="use_strongbox_checkbox">Use StrongBox</string>
<string name="use_individual_attestation_checkbox">Use Individual Attestation Certificate</string>
<string name="invalid_app_uri_policy">Invalid policy string: %1$s</string>
<string name="grant_key_pair_to_app">Grant key pair to app</string>
<string name="grant_key_pair_title">Grant key pair to package</string>
<string name="key_pair_alias_description">Enter key pair alias</string>
<string name="grant_to_package_name_description">Enter package name</string>
<string name="grant_button">Grant</string>
<string name="key_pair_alias_empty">KeyPair alias must not be empty.</string>
<string name="grant_to_package_name_empty">Package name must not be empty.</string>
<!-- Strings for nearby policies -->
<string name="nearby_streaming_section">Nearby streaming policies</string>
<string name="nearby_notification_streaming">Nearby notification streaming policy</string>
<string name="nearby_app_streaming">Nearby app streaming policy</string>
<string-array name="nearby_streaming_policies">
<!-- Order of the values here must match DevicePolicyManager.NearbyStreamingPolicy -->
<item>Not controlled by policy</item>
<item>Disabled</item>
<item>Enabled</item>
<item>Same managed account only</item>
</string-array>
<!-- Strings for app restrictions -->
<string name="managed_configurations">Managed configurations</string>
<string name="define_bundle">Define bundle</string>
<string name="define_bundle_array">Define bundle array</string>
<string name="load_manifest_restrictions">Load manifest restrictions</string>
<string name="set_app_restrictions_success">Successfully set app restrictions for %s</string>
<string name="app_restrictions_info">%1$s - %2$s</string>
<string name="plus">+</string>
<string name="app_restrictions_managing_package">App restrictions manager</string>
<!-- Strings for app feedback -->
<!-- [CHAR LIMIT=40] Settings label. A user can toggle this setting to turn on notifications for app feedback. -->
<string name="app_feedback_notifications">App feedback notifications</string>
<!-- Strings for metered data restriction -->
<string name="metered_data_restriction">Disable metered data</string>
<string name="update_pkgs">Update</string>
<string name="metered_data_restriction_failed_pkgs">Couldn\'t restrict %s</string>
<!-- Strings for delegation -->
<string name="delegation_title">Delegation</string>
<string name="generic_delegation">Generic delegation</string>
<string name="delegation_success">Scopes successfully saved</string>
<string name="delegation_error">Error, see logs</string>
<string name="delegation_scope_instructions">Check the scopes that should be delegated</string>
<string name="delegation_scope_prompt_title">Delegation scopes</string>
<string name="delegation_scope_cert_install">Cert installation</string>
<string name="delegation_scope_app_restrictions">App restrictions</string>
<string name="delegation_scope_block_uninstall">Block uninstall</string>
<string name="delegation_scope_permission_grant">Permission grant</string>
<string name="delegation_scope_package_access">Package access</string>
<string name="delegation_scope_enable_system_app">System app enabling</string>
<string name="delegation_scope_keep_uninstalled_packages">Keep uninstalled packages</string>
<string name="delegation_scope_network_logging">Access network logging</string>
<string name="delegation_scope_security_logging">Access security logging</string>
<string name="delegation_scope_cert_selection">Choose private key</string>
<string name="manage_cert_installer">Delegated cert installer</string>
<!-- strings used in the alert dialog for editing application restrictions. -->
<string name="select_type">Select type:</string>
<string name="app_restrictions_key">Key:</string>
<string name="key_hint">Restriction key</string>
<string name="app_restrictions_value">Value:</string>
<string name="edit_bundle_instruction">Add values on the Edit screen</string>
<string name="key_empty_error">Restriction key should not be empty</string>
<string name="value_not_valid">Restriction value is not valid</string>
<string name="restriction_save_label">Save</string>
<string name="restriction_cancel_label">Cancel</string>
<!-- Text shown in configure button when bundle/bundle array is chosen -->
<string name="configure">Configure</string>
<!-- Remote bugreport -->
<string name="bugreport_title">Bugreport</string>
<string name="request_bugreport">Request bugreport</string>
<string name="received_bugreport">Received bugreport %1$s hash: %2$s bytes: %3$d</string>
<string name="received_bugreport_failed_retrieval">Received bugreport file, but failed to retrieve it</string>
<string name="bugreport_sharing_declined">User declined sharing bugreport</string>
<string name="bugreport_failure_message">Bugreport request failed: %s</string>
<string name="bugreport_failure_throttled">Bugreport is already being collected on this device</string>
<string name="bugreport_failure_exception">Cannot request bugreport: There are unaffiliated users on the device</string>
<string name="bugreport_failure_failed_completing">Bugreport collection operation failed</string>
<string name="bugreport_failure_file_no_longer_available">Bugreport file is no longer available for collection</string>
<!-- Backup and Restore for Device Owner -->
<string name="enable_backup_service">Enable backup service</string>
<string name="common_criteria_mode">Enable Common Criteria mode</string>
<string name="enable_usb_data_signaling">Enable USB data signaling</string>
<!-- Suspension of personal apps -->
<string name="suspend_personal_apps">Suspend personal apps</string>
<!-- Maximum time work profile is allowed to be off -->
<string name="profile_max_time_off">Work profile max time off (seconds)</string>
<!-- Enterprise security logging -->
<string name="enable_security_logging">Enable security logging</string>
<string name="request_security_logs">Request security logs</string>
<string name="request_pre_reboot_security_logs">Request pre-reboot security logs</string>
<string name="failed_to_retrieve_security_logs">Failed to retrieve security logs, they were probably accessed less than 2 hours ago</string>
<string name="failed_to_retrieve_pre_reboot_security_logs">Failed to retrieve pre-reboot security logs, make sure your device supports it</string>
<string name="exception_retrieving_security_logs">Not allowed to retrieve security logs, SecurityException thrown</string>
<string name="security_logs_retrieved_message">---- Logs retrieved %s ----</string>
<string name="on_security_logs_available">Test DPC: Security logs ready to be retrieved</string>
<!-- Network logging -->
<string name="enable_network_logging">Enable network logging</string>
<string name="request_network_logs">Request network logs</string>
<string name="on_network_logs_available">Test DPC: Network logs ready to be retrieved</string>
<string name="on_network_logs_available_success">Test DPC: Network logs batch %d retrieved</string>
<string name="on_network_logs_available_failure">Test DPC: Could not retrieve network logs</string>
<string name="on_network_logs_available_token_failure">Test DPC: Could not retrieve network logs batch %d</string>
<!-- Accessibility -->
<string name="accessibility_title">Accessibility</string>
<string name="set_accessibility_services">Set accessibility services</string>
<string name="allow_all">Allow all</string>
<string name="set_accessibility_services_successful">The given list of accessibility services is
enabled
</string>
<string name="set_accessibility_services_fail">Cannot disallow accessibility services enabled by the primary user</string>
<string name="all_accessibility_services_enabled">All accessibility services are enabled
</string>
<!-- Input method -->
<string name="input_methods_title">Input methods</string>
<string name="set_input_methods">Set input methods</string>
<string name="set_input_methods_on_parent">Set input methods on parent</string>
<string name="set_input_methods_successful">The given list of input methods is enabled</string>
<string name="set_input_methods_fail">Cannot disallow input methods enabled by the primary user</string>
<string name="all_input_methods_enabled">All input methods are enabled.</string>
<string name="add_input_method_on_parent_fail">Failed to add input method on parent</string>
<string name="all_input_methods_on_parent">Allowed all input methods on parent</string>
<string name="system_input_methods_on_parent">Allowed only system input methods on parent</string>
<string name="input_methods_all">Allow all input methods</string>
<string name="input_methods_system">Allow only system input methods</string>
<!-- Notification listeners -->
<string name="notification_listeners_title">Notification Listener Services</string>
<string name="set_notification_listeners">Set notification listener services</string>
<string name="set_notification_listeners_successful">The given list of notification listeners is enabled</string>
<string name="set_notification_listeners_fail">Cannot add the notification listener list provided</string>
<string name="all_notification_listeners_enabled">All notification listeners are enabled.</string>
<string name="set_notification_listeners_text">Set notification listener services text</string>
<string name="set_notification_listener_text_title">Notification listener packages</string>
<string name="set_notification_listener_text_hint">Comma separated package list</string>
<string name="loading_resuls">Loading\u2026</string>
<!-- Account management -->
<string name="account_management_title">Account management</string>
<string name="set_disable_account_management">Toggle account management</string>
<string name="get_disable_account_management">Get account types with management disabled</string>
<string name="account_type_hint">Enter an account type</string>
<string name="disable">Disable</string>
<string name="account_management_disabled">Account management for \"%s\" has been disabled.
</string>
<string name="account_management_enabled">Account management for \"%s\" has been enabled.
</string>
<string name="fail_to_set_account_management">Failed to toggle account management.</string>
<string name="list_of_disabled_account_types">List of disabled account types</string>
<string name="no_disabled_account">There is no account type that is disabled.</string>
<!-- User management -->
<string name="user_management">User management</string>
<string name="create_and_initialize_user">Create and initialize user</string>
<string name="create_and_manage_user">Create and manage user</string>
<string name="create_managed_profile">Create managed profile</string>
<string name="skip_setup_wizard">Skip setup wizard</string>
<string name="make_user_ephemeral">Make user ephemeral</string>
<string name="start_user_in_background">Start user in background</string>
<string name="user_started_in_background">User started in background.</string>
<string name="failed_to_start_user_in_background">Failed to start user in background.</string>
<string name="leave_all_system_apps_enabled">Leave all system apps enabled</string>
<string name="user_created">Successfully created user with serial number %1$d.</string>
<string name="user_string">User %1$d</string>
<string name="enter_username_hint">Enter a username</string>
<string name="failed_to_create_user">Failed to create user.</string>
<string name="enter_user_id">Enter a user serial number</string>
<string name="remove_user">Remove user</string>
<string name="user_removed">User removed.</string>
<string name="failed_to_remove_user">Failed to remove user.</string>
<string name="switch_user">Switch user</string>
<string name="user_switched">User switched.</string>
<string name="failed_to_switch_user">Failed to switch user.</string>
<string name="stop_user">Stop user</string>
<string name="user_stopped">User stopped.</string>
<string name="failed_to_stop_user">Failed to stop user.</string>
<string name="logout_user">Logout user</string>
<string name="user_logouted">User logouted.</string>
<string name="failed_to_logout_user">Failed to logout user.</string>
<string name="enable_logout">Enable logout</string>
<string name="set_user_session_message">Set user session message</string>
<string name="enter_start_session_message">Enter start session message</string>
<string name="enter_end_session_message">Enter end session message</string>
<string name="affiliated_user">Affiliated user</string>
<string name="ephemeral_user">Ephemeral user</string>
<string name="on_user_added_title">User Created</string>
<string name="on_user_removed_title">User Removed</string>
<string name="on_user_started_title">User Started</string>
<string name="on_user_stopped_title">User Stopped</string>
<string name="on_user_switched_title">User Switched</string>
<string name="on_user_added_message">User created with serial number %1$d.</string>
<string name="on_user_removed_message">User with serial number %1$d removed.</string>
<string name="on_user_started_message">User with serial number %1$d started.</string>
<string name="on_user_stopped_message">User with serial number %1$d stopped.</string>
<string name="on_user_switched_message">User with serial number %1$d switched.</string>
<string name="no_secondary_users_available">No secondary users available.</string>
<!-- Affiliation ids -->
<string name="manage_affiliation_ids">Manage affiliation ids</string>
<string name="enter_affiliation_id">Enter affiliation id</string>
<string name="affiliation_id_empty_error">Affiliation id cannot be empty</string>
<string name="require_affiliated_user">Requires user to be affiliated</string>
<!-- Strings for block uninstall -->
<string name="block_uninstallation_title">Block uninstallation</string>
<string name="block_uninstallation_by_pkg">Block uninstallation by package name</string>
<string name="block_uninstallation_list">Block uninstallation list</string>
<string name="uninstallation_blocked">%s uninstallation has been blocked.
</string>
<string name="uninstallation_allowed">%s uninstallation has been allowed.
</string>
<string name="block_uninstallation_failed_invalid_pkgname">Could not update block uninstallation
policy on an invalid package name.
</string>
<string name="block">Block</string>
<string name="unblock">Unblock</string>
<string name="close">Close</string>
<!-- Strings for system update policy -->
<string name="system_update_management">System update</string>
<string name="system_update_policy">Manage system update policy</string>
<string name="system_update_policy_automatic">Automatic immediate install</string>
<string name="system_update_policy_Windowed">Install within a maintenance window</string>
<string name="system_update_policy_postpone">Postpone</string>
<string name="system_update_policy_none">None</string>
<string name="current_system_update_policy">Current system update policy:</string>
<string name="system_update_policy_window_start_label">Maintenance window start:</string>
<string name="system_update_policy_window_end_label">Maintenance window end:</string>
<string name="system_update_policy_set_policy">Set new policy</string>
<string name="system_update_policy_window_freeze_period_label">Freeze Periods:</string>
<string name="system_update_policy_add_freeze_period">Add new period</string>
<string name="system_update_policy_pick_start_free_period_title">Pick start of freeze period</string>
<string name="system_update_policy_pick_end_free_period_title">Pick end of freeze period</string>
<!-- Strings for pending update info checking -->
<string name="system_update_pending">Check pending system update</string>
<string name="update_info_no_update_toast">No system update available.</string>
<string name="update_info_title">Pending update information</string>
<string name="update_info_received">Update was received on %1$s. Security patch: %2$s.</string>
<string name="update_info_security_false">false</string>
<string name="update_info_security_true">true</string>
<string name="update_info_security_unknown">unknown</string>
<!-- Strings for networking -->
<string name="networking_management_title">Networking</string>
<string name="set_always_on_vpn">Set always-on VPN</string>
<string name="set_get_preferential_network_service_status">Preferential Network Service Status</string>
<string name="enterprise_slice">Enterprise slice</string>
<string name="enterprise_slice_1">Enterprise slice 1</string>
<string name="enterprise_slice_2">Enterprise slice 2</string>
<string name="enterprise_slice_3">Enterprise slice 3</string>
<string name="enterprise_slice_4">Enterprise slice 4</string>
<string name="enterprise_slice_5">Enterprise slice 5</string>
<string name="allow_fallback_to_default">Allow fallback to default connection</string>
<string name="slice_enable">enable</string>
<string name="included_apps">Included apps</string>
<string name="excluded_apps">Excluded apps</string>
<string name="submit">submit</string>
<string name="submit_title">submit_title</string>
<string name="set_global_http_proxy">Set global HTTP proxy</string>
<string name="clear_global_http_proxy">Clear global HTTP proxy</string>
<string name="networking_proxy_host">Host</string>
<string name="networking_proxy_host_hint">Enter the host</string>
<string name="networking_proxy_port">Port</string>
<string name="networking_proxy_port_hint">Enter the port</string>
<string name="no_host">No host specified.</string>
<string name="no_port">No port specified.</string>
<string name="port_out_of_range">Port out of range.</string>
<string name="set_global_private_dns">Set Private DNS Mode</string>
<string name="current_private_dns_mode">Current Mode</string>
<string name="private_dns_mode_off">Off</string>
<string name="private_dns_mode_automatic">Automatic</string>
<string name="private_dns_mode_specific_host">Specified Host</string>
<string name="private_dns_mode_unknown">Unknown</string>
<string name="private_dns_mode_apply">Set</string>
<string name="setting_private_dns_succeess">Success setting Private DNS</string>
<string name="setting_private_dns_failure">FAILED: %s</string>
<!-- Strings for data usage -->
<string name="data_usage">Data usage</string>
<string name="network_stats">Network Data Usage Stats</string>
<string-array name="network_stats_queries_array">
<item>Select query type</item>
<item>Query summary for device</item>
<item>Query summary for user</item>
<item>Query summary of apps</item>
<item>Query histories of apps</item>
</string-array>
<string name="network_stats_choose_query_label">Choose query type: </string>
<string name="network_stats_start_date_label">Start date inclusive: </string>
<string name="network_stats_end_date_label">End date exclusive: </string>
<string name="network_stats_device_summary_explanation">
Below, you can see the network data usage in the specified time interval for all users on the device.
</string>
<string name="network_stats_device_summary">Device has received %1$s in %2$d packets and transmitted %3$s in %4$d packets.</string>
<string name="network_stats_profile_summary_explanation">
Below you can see the summarized network data usage in the specified time interval for the managed profile.\n
</string>
<string name="network_stats_profile_summary">Profile has received %1$s in %2$d packets and transmitted %3$s in %4$d packets.</string>
<string name="network_stats_error_title">Error while querying Network Stats</string>
<string name="network_stats_result">Query result</string>
<string name="network_stats_uid_removed">Removed apps</string>
<string name="network_stats_uid_tethering">Tethering</string>
<string name="network_stats_uid_system">Android System</string>
<string name="network_stats_bucket_usage">Received %1$s in %2$d packets and transmitted %3$s in %4$d packets.</string>
<string name="network_stats_foreground_state">State: foreground</string>
<string name="network_stats_default_state">State: default (background)</string>
<string name="network_stats_combined_state">State: combined foreground and background</string>
<string name="network_stats_uid">UID = %1$d</string>
<string name="network_stats_items">%1$d items</string>
<string name="network_stats_security_error_msg">
To see this data, Test DPC needs to be enabled under Settings > Security > Apps with usage access.
</string>
<!-- Strings for permission policies -->
<string name="permission_management">Permission management</string>
<string name="set_default_permission_policy">Get/Set default permission policy</string>
<string name="permission_policy_prompt">Prompt</string>
<string name="permission_policy_auto_accept">Auto accept</string>
<string name="permission_policy_auto_deny">Auto deny</string>
<string name="permission_allow">Allow</string>
<string name="permission_default">Let user decide</string>
<string name="permission_deny">Deny</string>
<string name="manage_app_permissions">Manage app permissions</string>
<!-- Message displayed when there are no apps permissions to show. -->
<string name="app_permissions_empty">There are no permissions to display for this app.</string>
<!-- Keyguard features -->
<string name="keyguard_features">Keyguard features</string>
<string name="keyguard_disable_secure_camera">Disable secure camera</string>
<string name="keyguard_disable_secure_notifications">Disable secure notifications</string>
<string name="keyguard_disable_unredacted_notifications">Disable unredacted notifications</string>
<string name="keyguard_disable_trust_agents">Disable trust agents</string>
<string name="keyguard_disable_face">Disable face unlock</string>
<string name="keyguard_disable_iris">Disable iris unlock</string>
<string name="keyguard_disable_fingerprint">Disable fingerprint</string>
<string name="keyguard_disable_remote_input">Disable text entry in secure keyguard screen</string>
<string name="keyguard_disable_shortcuts">Disable shortcuts</string>
<string name="keyguard_disable_widgets_all">Disable widgets</string>
<string name="cannot_disable_shortcuts_on_work_profile">Can\'t disable shortcuts on work profile. Please switch to personal profile tab.</string>
<!-- Trust agent features -->
<string name="trust_agent_features">Trust agent features</string>
<string name="set_trust_agent_config">Set trust agent config</string>
<!-- Strings for set time -->
<string name="set_time_manage">Set time and timezone</string>
<string name="set_time">Set time(Unix timestamp in milliseconds)</string>
<string name="no_set_time">Time not specified</string>
<string name="invalid_set_time">Incorrect time</string>
<string name="set_time_zone">Set timezone</string>
<string name="set_time_zone_hint">Example: "America/New_York", "America/Los_Angeles"</string>
<string name="no_timezone">Timezone not specified</string>
<string name="invalid_timezone">Timezone id not valid</string>
<!-- Strings for setting profile name -->
<string name="set_profile_name">Set profile name</string>
<string name="no_profile_name">Missing profile name</string>
<!-- Strings for set system settings -->
<string name="set_system_setting">Set system settings</string>
<string name="auto_brightness">Auto brightness</string>