-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstrings.xml
7068 lines (5691 loc) · 574 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2007 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:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="yes" msgid="4676390750360727396">"是"</string>
<string name="fp_bind_init_applock_content_Settings">"需开启应用锁功能才能完成指纹关联。是否立即启用应用锁?"</string>
<string name="wifi_hotspot20_title">"Hotspot 2.0"</string>
<string name="wifi_hotspot20_summary" priority="LT">"自动连接至支持Hotspot 2.0的Wi-Fi接入点"</string>
<string name="extra_huge_font_size_dialog_content_Toast_dataonly">"特大字体仅在信息和联系人应用中有效"</string>
<plurals name="apps_clone_summary">
<item quantity="other">"已有 <xliff:g id="COUNT">%1$d</xliff:g> 个应用开启分身"</item>
</plurals>
<string name="acess_help_title" translatable="false">辅助功能</string>
<string name="smart_reply_hint_msg">开启辅助功能,即享智能回复</string>
<string name="smart_input_hint" translatable="false">智能回复</string>
<string name="permission_board_goto" translatable="false">开启</string>
<string name="set_notification_and_status">"通知和状态栏设置"</string>
<string name="apps_clone_close">"未开启"</string>
<!-- SR0009760G -->
<string name="system_navigation_title">"系统导航"</string>
<string name="navi_three_physic_title1">"单键导航"</string>
<string name="navi_three_physic_title2">"三键导航"</string>
<string name="navi_more_detail">"更多详情"</string>
<string name="summary_system_navigation_default_ex">"系统导航、悬浮导航、智能识屏"</string>
<string name="summary_system_navigation_default_not_host_user">"系统导航、悬浮导航"</string>
<string name="set_notification_and_status_summary_ex">"电量百分比显示方式"</string>
<string name="app_clone_help_ex">"开启后,桌面将生成相应的分身应用。您即可在相同应用上,同时登录两个不同帐号。第三方桌面暂不支持此功能"</string>
<string name="navi_more_settings">"更多设置"</string>
<string name="no" msgid="6731231425810196216">"否"</string>
<string name="create" msgid="3578857613172647409">"创建"</string>
<string name="allow" msgid="3349662621170855910">"允许"</string>
<string name="deny" msgid="6947806159746484865">"拒绝"</string>
<string name="dlg_close" msgid="7471087791340790015">"关闭"</string>
<string name="device_info_default" msgid="7847265875578739287">"未知"</string>
<plurals name="show_dev_countdown" formatted="false" msgid="7201398282729229649">
<item quantity="other">"只需 <xliff:g id="STEP_COUNT_1">%1$d</xliff:g> 步操作即可进入开发者模式。"</item>
<item quantity="one">现在只需再执行 <xliff:g id="STEP_COUNT_0">%1$d</xliff:g> 步操作即可进入开发者模式。</item>
</plurals>
<string name="show_dev_on" msgid="1110711554982716293">"您现在处于开发者模式!"</string>
<string name="show_dev_already" msgid="2151632240145446227">"您已处于开发者模式,无需进行此操作。"</string>
<string name="header_category_wireless_networks" msgid="5110914332313954940">"无线和网络"</string>
<string name="header_category_device" msgid="4544026001618307754">"设备"</string>
<string name="header_category_system" msgid="2816866961183068977">"系统"</string>
<string name="radio_info_data_connection_enable" msgid="8656750679353982712">"启用数据网络连接"</string>
<string name="radio_info_data_connection_disable" msgid="8541302390883231216">"停用数据网络连接"</string>
<string name="volte_provisioned_switch_string" msgid="7979882929810283786">"已配置 VoLTE"</string>
<string name="vt_provisioned_switch_string" msgid="7876998291744854759">"已配置视频通话"</string>
<string name="wfc_provisioned_switch_string" msgid="3985406545172898078">"已配置 Wi-Fi 通话"</string>
<string name="radio_info_radio_power" msgid="7187666084867419643">"移动无线装置电源"</string>
<string name="radioInfo_menu_viewADN" msgid="8743377494429930831">"查看 SIM 卡地址簿"</string>
<string name="radioInfo_menu_viewFDN" msgid="7934301566925610318">"查看固定拨号"</string>
<string name="radioInfo_menu_viewSDN" msgid="7130280686244955669">"查看服务拨号"</string>
<string name="radioInfo_service_in" msgid="1915416319177520020">"正在使用"</string>
<string name="radioInfo_service_out" msgid="7999094221728929681">"不在服务区"</string>
<string name="radioInfo_service_emergency" msgid="2485604591272668370">"仅限于急救或报警电话"</string>
<string name="radioInfo_service_off" msgid="1434084741785525415">"关闭无线通信"</string>
<string name="radioInfo_roaming_in" msgid="9045363884600341051">"漫游"</string>
<string name="radioInfo_roaming_not" msgid="2851853244069662307">"非漫游"</string>
<string name="radioInfo_phone_idle" msgid="7489244938838742820">"空闲"</string>
<string name="radioInfo_phone_ringing" msgid="4883724645684297895">"响铃"</string>
<string name="radioInfo_phone_offhook" msgid="5873835692449118954">"正在通话"</string>
<string name="radioInfo_data_disconnected" msgid="1959735267890719418">"已断开连接"</string>
<string name="radioInfo_data_connecting" msgid="8404571440697917823">"正在连接"</string>
<string name="radioInfo_data_connected" msgid="7074301157399238697">"已连接"</string>
<string name="radioInfo_data_suspended" msgid="5315325487890334196">"已暂停"</string>
<string name="radioInfo_unknown" msgid="1476509178755955088">"未知"</string>
<string name="radioInfo_display_packets" msgid="8654359809877290639">"pkts"</string>
<string name="radioInfo_display_bytes" msgid="4018206969492931883">"字节"</string>
<string name="radioInfo_display_dbm" msgid="3621221793699882781">"dBm"</string>
<string name="radioInfo_display_asu" msgid="1422248392727818082">"asu"</string>
<string name="radioInfo_lac" msgid="8415219164758307156">"LAC"</string>
<string name="radioInfo_cid" msgid="4362599198392643138">"CID"</string>
<string name="preview_pager_content_description" msgid="8926235999291761243">"预览"</string>
<string name="preview_page_indicator_content_description" msgid="3263162369344886880">"预览屏幕第 <xliff:g id="CURRENT_PAGE">%1$d</xliff:g> 页(共 <xliff:g id="NUM_PAGES">%2$d</xliff:g> 页)"</string>
<string name="font_size_summary" msgid="1690992332887488183">"缩小或放大屏幕上的文字。"</string>
<string name="font_size_make_smaller_desc" msgid="7919995133365371569">"缩小"</string>
<string name="font_size_make_larger_desc" msgid="4316986572233686061">"放大"</string>
<!-- no translation found for font_size_preview_text (4818424565068376732) -->
<skip/>
<string name="font_size_preview_text_headline" msgid="7955317408475392247">"示例文本"</string>
<string name="font_size_preview_text_title" msgid="1310536233106975546">"绿野仙踪"</string>
<string name="font_size_preview_text_body" msgid="2846183528684496723">"尽管有绿色眼镜保护着眼睛,桃乐丝和她的朋友们在刚看到这座奇妙的城市时,还是被它耀眼的光芒照得眼花缭乱。街道两旁耸立着绿色大理石砌成的美丽房屋,到处镶嵌着闪闪发光的翡翠。他们走过的人行道同样是用绿色大理石铺砌而成,石块接合处嵌有一排排紧密相连的翡翠,在阳光的照耀下闪闪发亮。房屋的窗户镶嵌着绿色的玻璃,城市上空有淡淡的绿晕,就连阳光也散发着绿色光芒。\n\n街道上有很多行人,无论男女老少全都穿着绿色衣物,连皮肤都泛着绿色。他们都用惊异的眼光注视着桃乐丝和她这群外貌迥异的伙伴们,孩子们一看到狮子都拔腿跑了,躲到他们母亲身后;没有人想开口跟桃乐丝他们说话。街上有许多商店,桃乐丝看见店里的每一件商品都是绿色的,有绿色的糖果,绿色的爆米花,还有各种各样的绿鞋子、绿帽子和绿衣服。有位小贩在路上卖绿色的柠檬水,当孩子们去买汽水时,桃乐丝发现他们付钱时所用的硬币竟然也是绿色的。\n\n城里似乎没有马,也没有其他任何动物。有人用绿色小推车来回运载物品。每个人看起来都是那么快乐、满足,一切都显得安定繁荣。"</string>
<string name="font_size_save" msgid="3450855718056759095">"确定"</string>
<string name="bluetooth" msgid="5549625000628014477">"蓝牙"</string>
<string name="bluetooth_not_visible_to_other_devices" msgid="9120274591523391910">"不让其他蓝牙设备检测到"</string>
<string name="bluetooth_only_visible_to_paired_devices" msgid="2049983392373296028">"仅让已配对的设备检测到"</string>
<string name="bluetooth_visibility_timeout" msgid="8002247464357005429">"检测超时设置"</string>
<string name="bluetooth_device_details" msgid="4594773497930028085">"设备设置"</string>
<string name="bluetooth_profile_details" msgid="6823621790324933337">"配置文件设置"</string>
<string name="bluetooth_rename_device" product="tablet">"重命名平板电脑"</string>
<string name="bluetooth_disconnect_title" msgid="6026705382020027966">"断开连接?"</string>
<string name="bluetooth_disconnect_all_profiles" msgid="9148530542956217908">"此操作将会断开您与以下设备的连接:<br/><b><xliff:g id="device_name">%1$s</xliff:g></b>"</string>
<string name="bluetooth_empty_list_user_restricted" msgid="603521233563983689">"您无权更改蓝牙设置。"</string>
<string name="bluetooth_is_visible_message" msgid="3956514990287788968">"在<xliff:g id="DEVICE_NAME">%1$s</xliff:g>上开启蓝牙设置后,附近的设备将可以检测到该设备。"</string>
<string name="bluetooth_disable_profile_title" msgid="5916643979709342557">"停用配置文件"</string>
<string name="bluetooth_disable_profile_message" msgid="2895844842011809904">"此操作将停用:<br/><b><xliff:g id="profile_name">%1$s</xliff:g></b><br/><br/>来自:<br/><b><xliff:g id="device_name">%2$s</xliff:g></b>"</string>
<string name="bluetooth_unknown" msgid="644716244548801421">
</string>
<string name="bluetooth_device" msgid="5291950341750186887">"未命名的蓝牙设备"</string>
<string name="progress_scanning" msgid="192587958424295789">"正在搜索…"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"蓝牙配对请求"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"配对请求"</string>
<string name="bluetooth_notif_message" msgid="1931617700075106801">"点击可与“<xliff:g id="device_name">%1$s</xliff:g>”进行配对"</string>
<string name="bluetooth_show_received_files" msgid="5164787486105868895">"接收的文件"</string>
<string name="device_picker" msgid="8398232791303186677">"蓝牙设备选择器"</string>
<string name="bluetooth_ask_enablement" msgid="637355677176904990">"某个应用想要开启蓝牙。"</string>
<string name="bluetooth_ask_disablement" msgid="5890386255790160573">"<xliff:g id="APP_NAME">%1$s</xliff:g>请求关闭蓝牙"</string>
<string name="bluetooth_ask_enablement_no_name" msgid="1644353686104482763">"某个应用请求开启蓝牙"</string>
<string name="bluetooth_ask_disablement_no_name" msgid="9218830122674868548">"某个应用请求关闭蓝牙"</string>
<string name="bluetooth_ask_discovery" product="tablet" msgid="786921566047356213">"某个应用想让其他蓝牙设备在 <xliff:g id="timeout">%1$d</xliff:g> 秒内可检测到您的平板电脑。"</string>
<string name="bluetooth_ask_discovery" product="default" msgid="5510358858113713272">"某个应用想让其他蓝牙设备在 <xliff:g id="timeout">%1$d</xliff:g> 秒内可检测到您的手机。"</string>
<string name="bluetooth_ask_discovery_no_name" product="tablet" msgid="225715443477752935">"某个应用想让其他蓝牙设备在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内可检测到您的平板电脑。"</string>
<string name="bluetooth_ask_discovery_no_name" product="default" msgid="4949152735544109994">"某个应用想让其他蓝牙设备在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内可检测到您的手机。"</string>
<string name="bluetooth_ask_lasting_discovery" product="tablet" msgid="8863617309580598607">"某个应用想让其他蓝牙设备检测到您的平板电脑。之后,您可以在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_lasting_discovery" product="default" msgid="6487606808683607975">"某个应用想让其他蓝牙设备检测到您的手机。之后,您可以在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_lasting_discovery_no_name" product="tablet" msgid="1702590641426207062">"某个应用想让其他蓝牙设备检测到您的平板电脑。您可以稍后在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_lasting_discovery_no_name" product="default" msgid="8549952177383992238">"某个应用想让其他蓝牙设备检测到您的设备。您可以稍后在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="3346529092809011149">"某个应用想要开启蓝牙,以便其他设备在 <xliff:g id="timeout">%1$d</xliff:g> 秒内可检测到您的平板电脑。"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="4724094889807196118">"某个应用想要开启蓝牙,以便其他设备在 <xliff:g id="timeout">%1$d</xliff:g> 秒内可检测到您的手机。"</string>
<string name="bluetooth_ask_enablement_and_discovery_no_name" product="tablet" msgid="7009338445281693765">"某个应用请求开启蓝牙,以便其他设备在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内可检测到您的平板电脑。"</string>
<string name="bluetooth_ask_enablement_and_discovery_no_name" product="default" msgid="8386904242279878734">"某个应用请求开启蓝牙,以便其他设备在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内可检测到您的手机。"</string>
<string name="bluetooth_ask_enablement_and_lasting_discovery" product="tablet" msgid="989613204829097159">"某个应用想要开启蓝牙,以便其他设备可检测到您的平板电脑。之后,您可以在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_enablement_and_lasting_discovery" product="default" msgid="6671615712909139801">"某个应用想要开启蓝牙,以便其他设备可检测到您的手机。之后,您可以在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_enablement_and_lasting_discovery_no_name" product="tablet" msgid="692477613671555006">"某个应用请求开启蓝牙,以便其他设备可检测到您的平板电脑。您可以稍后在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_ask_enablement_and_lasting_discovery_no_name" product="default" msgid="6374480121751597648">"某个应用请求开启蓝牙,以便其他设备可检测到您的设备。您可以稍后在“蓝牙”设置中更改此设置。"</string>
<string name="bluetooth_turning_on" msgid="4850574877288036646">"正在开启蓝牙\u2026"</string>
<string name="bluetooth_turning_off" msgid="2337747302892025192">"正在关闭蓝牙…"</string>
<string name="bluetooth_connection_permission_request" msgid="4747918249032890077">"蓝牙连接请求"</string>
<string name="bluetooth_connection_dialog_text" msgid="8455427559949998023">"是否连接到“<xliff:g id="device_name">%1$s</xliff:g>”?"</string>
<string name="bluetooth_phonebook_request" msgid="3951420080540915279">"电话簿权限申请"</string>
<string name="bluetooth_pb_acceptance_dialog_text" msgid="5203107624986011263">"%1$s想访问您的联系人信息和通话记录。是否授予%2$s访问权限?"</string>
<string name="bluetooth_pb_remember_choice" msgid="2901499974259177202">"不再提示"</string>
<string name="bluetooth_sap_request" msgid="2669762224045354417">"SAP 请求"</string>
<string name="bluetooth_sap_acceptance_dialog_text" msgid="4414253873553608690">"<xliff:g id="DEVICE_NAME_0">%1$s</xliff:g>想要访问 SIM 卡。如授权该设备访问 SIM 卡,您设备的数据连接功能将在蓝牙连接期间停用。是否将访问权限授予<xliff:g id="DEVICE_NAME_1">%2$s</xliff:g>?"</string>
<string name="date_and_time" msgid="4114084177056654663">"日期和时间设置"</string>
<!-- no translation found for intent_sender_data_label (6332324780477289261) -->
<skip/>
<string name="intent_sender_sendbroadcast_text" msgid="1415735148895872715">"发送<xliff:g id="BROADCAST">broadcast</xliff:g>"</string>
<string name="intent_sender_action_label" msgid="616458370005452389">"<xliff:g id="ACTION">Action</xliff:g>:"</string>
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"启动<xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"帐户:"</string>
<string name="proxy_settings_title" msgid="9049437837600320881">"代理"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"删除"</string>
<string name="proxy_port_label" msgid="5655276502233453400">"服务器端口"</string>
<string name="proxy_exclusionlist_label" msgid="7700491504623418701">"对以下对象绕过代理:"</string>
<string name="proxy_defaultView_text" msgid="6387985519141433291">"恢复默认设置"</string>
<string name="proxy_action_text" msgid="2957063145357903951">"完成"</string>
<string name="proxy_hostname_label" msgid="8490171412999373362">"服务器主机名"</string>
<string name="proxy_error" msgid="8926675299638611451">"注意"</string>
<string name="proxy_error_dismiss" msgid="4993171795485460060">"确定"</string>
<string name="proxy_error_invalid_host" msgid="8052095511862922213">"您输入的主机名无效。"</string>
<string name="proxy_error_invalid_exclusion_list" msgid="6467799485443290961">"您输入的排除列表的格式错误。请输入以逗号分隔的排除域列表。"</string>
<string name="proxy_error_empty_port" msgid="3525734169948795417">"请输入端口号。"</string>
<string name="proxy_error_empty_host_set_port" msgid="2451694104858226781">"如果主机字段为空,则端口字段必须为空。"</string>
<string name="proxy_error_invalid_port" msgid="2671425042711054494">"您输入的端口无效。"</string>
<string name="proxy_warning_limited_support" msgid="7229337138062837422">"该浏览器使用 HTTP 代理,但其他应用可能不会使用。"</string>
<string name="proxy_url_title" msgid="7185282894936042359">"PAC 网址:"</string>
<string name="radio_info_signal_location_label" msgid="16475158265551708">"地点:"</string>
<string name="radio_info_neighboring_location_label" msgid="2385625674055934880">"相邻的 CID:"</string>
<string name="radio_info_cell_info_refresh_rate" msgid="7062777594049622128">"移动网络信息刷新频率:"</string>
<string name="radio_info_cellinfo_label" msgid="1300937728020622362">"小区信息:"</string>
<string name="radio_info_dcrtinfo_label" msgid="6802395441317448068">"DcRtInfo:"</string>
<string name="radio_info_gprs_service_label" msgid="2331818110375395364">"GPRS 服务:"</string>
<string name="radio_info_roaming_label" msgid="6141505430275138647">"漫游:"</string>
<string name="radio_info_imei_label" msgid="1220524224732944192">"移动通信国际识别码:"</string>
<string name="radio_info_call_redirect_label" msgid="1654674226961476872">"呼叫重定向:"</string>
<string name="radio_info_ppp_resets_label" msgid="3587319503902576102">"启动后重置 PPP 的次数:"</string>
<string name="radio_info_current_network_label" msgid="9151285540639134945">"当前网络:"</string>
<string name="radio_info_ppp_received_label" msgid="3345184342444878849">"已收到 PPP:"</string>
<string name="radio_info_gsm_service_label" msgid="2082332114596916985">"GSM 服务:"</string>
<string name="radio_info_signal_strength_label" msgid="5155734002519307416">"信号强度:"</string>
<string name="radio_info_call_status_label" msgid="4896238900685510883">"呼叫状态:"</string>
<string name="radio_info_ppp_sent_label" msgid="5009102250704375687">"已发送 PPP:"</string>
<string name="radio_info_message_waiting_label" msgid="1037302619943328273">"消息等待:"</string>
<string name="radio_info_phone_number_label" product="tablet">"平板电脑号码:"</string>
<string name="radio_info_voice_network_type_label" msgid="1443496502370667071">"语音网络类型:"</string>
<string name="radio_info_data_network_type_label" msgid="7094323145105149312">"数据网络类型:"</string>
<string name="radio_info_set_perferred_label" msgid="3511830813500105512">"设置首选网络类型:"</string>
<string name="radio_info_ping_hostname_v4" msgid="7045103377818314709">"ping 主机名(www.google.com) IPv4:"</string>
<string name="radio_info_ping_hostname_v6" msgid="1130906124160553954">"ping 主机名(www.google.com) IPv6:"</string>
<string name="radio_info_http_client_test" msgid="2382286093023138339">"HTTP 客户端测试:"</string>
<string name="ping_test_label" msgid="579228584343892613">"运行 ping 测试"</string>
<string name="radio_info_smsc_label" msgid="6399460520126501354">"SMSC:"</string>
<string name="radio_info_smsc_update_label" msgid="7258686760358791539">"更新"</string>
<string name="radio_info_smsc_refresh_label" msgid="6902302130315125102">"刷新"</string>
<string name="radio_info_toggle_dns_check_label" msgid="6625185764803245075">"切换 DNS 检查"</string>
<string name="oem_radio_info_label" msgid="6163141792477958941">"特定 OEM 的信息/设置"</string>
<string name="band_mode_title" msgid="954174198903776205">"设置 GSM/UMTS 波段"</string>
<string name="band_mode_loading" msgid="548764766363847336">"正在加载波段列表..."</string>
<string name="band_mode_set" msgid="5730560180249458484">"设置"</string>
<string name="band_mode_failed" msgid="1495968863884716379">"失败"</string>
<string name="band_mode_succeeded" msgid="2701016190055887575">"成功"</string>
<string name="skip_label" msgid="47510779345218297">"跳过"</string>
<string name="next_label" msgid="4693520878012668114">"下一步"</string>
<string name="pref_title_lang_selection" msgid="2014920136978776034">"语言偏好设置"</string>
<string name="add_a_language" msgid="2330538812283783022">"添加语言"</string>
<!-- DTS2016060705714 fangyunzhong/wx231527 20160718 end -->
<string name="locale_not_translated" msgid="516862628177166755">"某些应用可能无法以该语言显示"</string>
<string name="action_drag_label_move_up">"上移"</string>
<string name="action_drag_label_move_down">"下移"</string>
<string name="action_drag_label_move_top">"移至顶部"</string>
<string name="action_drag_label_move_bottom">"移至底部"</string>
<string name="action_drag_label_remove">"移除语言"</string>
<string name="activity_picker_label" msgid="6295660302548177109">"选择活动"</string>
<string name="display_label" msgid="8074070940506840792">"屏幕"</string>
<string name="phone_info_label" product="tablet" msgid="7820855350955963628">"平板电脑信息"</string>
<string name="phone_info_label" product="default" msgid="2127552523124277664">"手机信息"</string>
<string name="cancel" msgid="6859253417269739139">"取消"</string>
<string name="okay" msgid="1997666393121016642">"确定"</string>
<string name="forget" msgid="1400428660472591263">"取消保存"</string>
<string name="save" msgid="879993180139353333">"保存"</string>
<string name="done" msgid="6942539184162713160">"完成"</string>
<string name="settings_label" msgid="1626402585530130914">"设置"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"设置"</string>
<string name="settings_shortcut" msgid="3936651951364030415">"设置快捷方式"</string>
<string name="activity_list_empty" msgid="6428823323471264836">"没有匹配的活动"</string>
<string name="airplane_mode" msgid="8837269988154128601">"飞行模式"</string>
<string name="wireless_networks_settings_title" msgid="3643009077742794212">"无线和网络"</string>
<string name="cellular_data_title" msgid="2525947635539415202">"移动数据网络"</string>
<string name="calls_title" msgid="3544471959217176768">"通话"</string>
<string name="sms_messages_title" msgid="1778636286080572535">"短信"</string>
<string name="roaming" msgid="3596055926335478572">"数据漫游"</string>
<string name="networks" msgid="6333316876545927039">"运营商选择"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"日期和时间"</string>
<string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"设置日期和时间"</string>
<string name="date_time_auto" msgid="7076906458515908345">"自动确定日期和时间"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"使用网络上的时间"</string>
<string name="date_time_auto_summaryOff" msgid="8698762649061882791">"使用网络上的时间"</string>
<string name="zone_auto" msgid="334783869352026648">"自动确定时区"</string>
<string name="zone_auto_summaryOn" msgid="6142830927278458314">"使用网络上的时区"</string>
<string name="zone_auto_summaryOff" msgid="2597745783162041390">"使用网络上的时区"</string>
<string name="zone_auto_summary_new">"打开%s,获取位置信息,自动定位所在时区"</string>
<string name="date_time_set_time" msgid="5716856602742530696">"时间"</string>
<string name="date_time_set_timezone" msgid="5045627174274377814">"时区"</string>
<string name="date_time_set_date" msgid="7021491668550232105">"日期"</string>
<string name="zone_list_menu_sort_alphabetically" msgid="5683377702671088588">"按字母顺序排序"</string>
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"按时区排序"</string>
<string name="date_picker_title" msgid="1338210036394128512">"日期"</string>
<string name="time_picker_title" msgid="483460752287255019">"时间"</string>
<!-- DTS2015081907489 yexingyuan/00349481 20150929 begin -->
<string name="lock_after_timeout" msgid="4590337686681194648">"自动锁屏"</string>
<!-- DTS2015081907489 yexingyuan/00349481 20150929 end -->
<string name="lock_after_timeout_summary" msgid="6128431871360905631">"休眠 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>后"</string>
<string name="lock_immediately_summary_with_exception" msgid="9119632173886172690">"休眠后立即锁定屏幕(<xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>让屏幕保持解锁状态时除外)"</string>
<string name="lock_after_timeout_summary_with_exception" msgid="5579064842797188409">"休眠 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> 后 (<xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g>让屏幕保持解锁状态时除外)"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"锁屏签名"</string>
<!-- DTS2013091003426 terigele/00221678 20130902 begin -->
<string name="owner_info_settings_summary" msgid="3800834657847339570">"设置的信息将会显示在锁屏界面"</string>
<!-- DTS2013091003426 terigele/00221678 20130902 end -->
<string name="owner_info_settings_edit_text_hint" msgid="4608681417960923911">"输入文字"</string>
<string name="user_info_settings_title" msgid="1195015434996724736">"用户信息"</string>
<string name="profile_info_settings_title" msgid="3518603215935346604">"个人资料信息"</string>
<!-- DTS2013022707394 liwenqi/KF66783 20130228 begin -->
<!-- DTS2013062501386 terigele/00221678 20130625 begin -->
<string name="location_settings_title" msgid="8935806698251432196">"定位服务"</string>
<!-- DTS2013062501386 terigele/00221678 20130625 end -->
<!-- DTS2013022707394 liwenqi/KF66783 20130228 end -->
<string name="account_settings_title" msgid="626177544686329806">"帐户"</string>
<!-- no translation found for security_settings_title (6134528367364159294) -->
<skip/>
<string name="encryption_and_credential_settings_title" msgid="6514904533438791561">"加密与凭据"</string>
<string name="lockscreen_settings_title" msgid="3922976395527087455">"锁定屏幕偏好设置"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"密码"</string>
<string name="disabled_by_administrator_summary" msgid="1601828700318996341">"已被管理员停用"</string>
<string name="security_status_title" msgid="5848766673665944640">"安全状态"</string>
<!-- no translation found for security_dashboard_summary (6757421634477554939) -->
<skip/>
<!-- no translation found for security_dashboard_summary_no_fingerprint (8129641548372335540) -->
<skip/>
<string name="security_settings_fingerprint_preference_title" msgid="2488725232406204350">"指纹"</string>
<string name="fingerprint_manage_category_title" msgid="8293801041700001681">"管理指纹"</string>
<string name="fingerprint_add_title" msgid="1926752654454033904">"添加指纹"</string>
<plurals name="security_settings_fingerprint_preference_summary" formatted="false" msgid="624961700033979880">
<item quantity="other">已设置 <xliff:g id="COUNT_1">%1$d</xliff:g> 个指纹</item>
<item quantity="one">已设置 <xliff:g id="COUNT_0">%1$d</xliff:g> 个指纹</item>
</plurals>
<string name="security_settings_fingerprint_preference_summary_none" msgid="1507739327565151923">
</string>
<string name="security_settings_fingerprint_enroll_introduction_title" msgid="3201556857492526098">"使用指纹解锁"</string>
<string name="security_settings_fingerprint_enroll_introduction_title_unlock_disabled" msgid="7066417934622827305">"使用指纹"</string>
<string name="security_settings_fingerprint_enroll_introduction_message" msgid="5061093614328964700">"只需触摸指纹传感器即可解锁您的手机、对购买交易进行授权或登录应用。添加到手机中的任何指纹都能够执行这些操作,因此请务必谨慎添加指纹。"</string>
<string name="security_settings_fingerprint_enroll_introduction_message_unlock_disabled" msgid="4193477159493347679">"只需触摸指纹传感器即可对购买交易进行授权或登录应用。请务必谨慎添加指纹,因为添加的任何指纹都执行上述操作。\n\n注意:您无法使用指纹来解锁此设备。要了解详情,请与贵单位的管理员联系。"</string>
<string name="security_settings_fingerprint_enroll_introduction_message_setup" msgid="3635924459027832861">"只需触摸指纹传感器即可解锁您的设备、对购买交易进行授权或登录应用。请务必谨慎添加指纹,因为添加的任何指纹都能执行上述操作。\n\n请注意:指纹识别的安全性可能不及安全系数高的图案或数字密码。"</string>
<string name="security_settings_fingerprint_enroll_introduction_cancel" msgid="3199351118385606526">"取消"</string>
<string name="security_settings_fingerprint_enroll_introduction_continue" msgid="7472492858148162530">"继续"</string>
<string name="security_settings_fingerprint_enroll_introduction_cancel_setup">"跳过"</string>
<string name="security_settings_fingerprint_enroll_introduction_continue_setup">"添加指纹"</string>
<string name="lock_screen_intro_skip_dialog_text_frp" product="tablet" msgid="7234486440384881699">"系统将不会启用设备保护功能。如果您的平板电脑丢失、被盗,或者其中的数据遭到清空,您将无法防止他人使用此平板电脑。"</string>
<string name="lock_screen_intro_skip_dialog_text_frp" product="device" msgid="3519190003101280912">"系统将不会启用设备保护功能。如果您的设备丢失、被盗,或者其中的数据遭到清空,您将无法防止他人使用此设备。"</string>
<string name="lock_screen_intro_skip_dialog_text_frp" product="default" msgid="417315011140961">"系统将不会启用设备保护功能。如果您的手机丢失、被盗,或者其中的数据遭到清空,您将无法防止他人使用此手机。"</string>
<string name="lock_screen_intro_skip_dialog_text" product="tablet" msgid="8783499872534165700">"系统将不会启用设备保护功能。如果您的平板电脑丢失或被盗,您将无法防止他人使用此平板电脑。"</string>
<string name="lock_screen_intro_skip_dialog_text" product="device" msgid="3120512940873907578">"系统将不会启用设备保护功能。如果您的设备丢失或被盗,您将无法防止他人使用此设备。"</string>
<string name="lock_screen_intro_skip_dialog_text" product="default" msgid="3589945558504439395">"系统将不会启用设备保护功能。如果您的手机丢失或被盗,您将无法防止他人使用此手机。"</string>
<string name="skip_anyway_button_label" msgid="2323522873558834513">"仍然跳过"</string>
<string name="go_back_button_label" msgid="4745265266186209467">"返回"</string>
<string name="security_settings_fingerprint_enroll_find_sensor_title" msgid="5877265753699187149">"寻找传感器"</string>
<string name="security_settings_fingerprint_enroll_find_sensor_message" msgid="1959655161889313661">"您可以在手机背面找到指纹传感器。"</string>
<string name="security_settings_fingerprint_enroll_find_sensor_content_description" msgid="2058830032070449160">"关于设备和指纹传感器位置的图示说明"</string>
<string name="security_settings_fingerprint_enroll_dialog_name_label" msgid="7086763077909041106">"名称"</string>
<string name="security_settings_fingerprint_enroll_dialog_ok" msgid="4150384963879569750">"确定"</string>
<string name="security_settings_fingerprint_enroll_dialog_delete" msgid="4114615413240707936">"删除"</string>
<string name="security_settings_fingerprint_enroll_start_title" msgid="9192567284554495805">"我们开始吧!"</string>
<string name="security_settings_fingerprint_enroll_start_message" msgid="6294541599045187369">"将您的手指放在指纹传感器上,感觉到振动后移开。"</string>
<string name="security_settings_fingerprint_enroll_repeat_title" msgid="3732060789409510229">"很好!现在重复此操作。"</string>
<string name="security_settings_fingerprint_enroll_repeat_message" msgid="8846866512704467036">"将同一手指放在指纹传感器上,感觉到振动后移开。"</string>
<string name="security_settings_fingerprint_enroll_finish_title" msgid="4798692662828257300">"指纹已添加"</string>
<string name="security_settings_fingerprint_enroll_finish_message" msgid="835496875787664316">"只要您看见此图标,就可以使用指纹进行身份验证或对购买交易进行授权。"</string>
<string name="setup_fingerprint_enroll_finish_message" msgid="7234264291957984004">"只需触摸指纹传感器即可唤醒并解锁设备。"</string>
<string name="setup_fingerprint_enroll_finish_message_secondary" msgid="7280546429133276374">"当您看到此图标时,就可以使用指纹。"</string>
<string name="security_settings_fingerprint_enroll_setup_screen_lock" msgid="1195743489835505376">"设置屏幕锁定"</string>
<string name="security_settings_fingerprint_enroll_done" msgid="4014607378328187567">"完成"</string>
<string name="security_settings_fingerprint_enroll_touch_dialog_title" msgid="1863561601428695160">"糟糕,这不是传感器"</string>
<string name="security_settings_fingerprint_enroll_touch_dialog_message" msgid="5053971232594165142">"使用您设备上的指纹传感器。"</string>
<string name="security_settings_fingerprint_enroll_error_dialog_title" msgid="3618021988442639280">"未完成注册"</string>
<string name="security_settings_fingerprint_enroll_error_timeout_dialog_message" msgid="2942551158278899627">"指纹注册操作超时。请重试。"</string>
<string name="security_settings_fingerprint_enroll_error_generic_dialog_message" msgid="3624760637222239293">"无法注册指纹。请重试或使用其他手指。"</string>
<string name="fingerprint_enroll_button_add" msgid="6317978977419045463">"再添加一个"</string>
<string name="fingerprint_enroll_button_next" msgid="6247009337616342759">"下一步"</string>
<string name="security_settings_fingerprint_enroll_disclaimer" msgid="2624905914239271751">"除了解锁手机,您还可以在购买物品时和登录应用时使用自己的指纹来验证身份。<annotation id="url">"了解详情"</annotation>"</string>
<string name="security_settings_fingerprint_enroll_disclaimer_lockscreen_disabled" msgid="4504501581228672208">""屏幕锁定选项已停用。您仍然可以使用自己的指纹对购买交易和应用使用进行授权。"<annotation id="admin_details">"了解详情"</annotation>\n\n"您仍然可以使用指纹对购买交易进行授权以及登录应用。"<annotation id="url">"了解详情"</annotation>"</string>
<string name="security_settings_fingerprint_enroll_lift_touch_again" msgid="1888772560642539718">"移开手指,然后再次触摸传感器"</string>
<string name="fingerprint_add_max" msgid="1020927549936895822">"您最多可以添加 <xliff:g id="COUNT">%d</xliff:g> 个指纹"</string>
<string name="fingerprint_intro_error_max" msgid="6864066984678078441">"添加的指纹数量已达上限"</string>
<string name="fingerprint_intro_error_unknown" msgid="1905692132326523040">"无法添加更多指纹"</string>
<string name="fingerprint_last_delete_title" msgid="6410310101247028988">"是否移除全部指纹?"</string>
<string name="fingerprint_last_delete_message" msgid="8318926239554839722">"您将无法使用指纹来解锁手机、授权购买交易或登录应用。"</string>
<string name="fingerprint_last_delete_message_profile_challenge" msgid="8840100810725902159">"您将无法使用指纹解锁您的工作资料、对购买交易进行授权或登录工作应用。"</string>
<string name="fingerprint_last_delete_confirm" msgid="2634726361059274289">"是,移除"</string>
<string name="confirm_fingerprint_icon_content_description" msgid="5255544532157079096">"请使用您的指纹以继续。"</string>
<string name="crypt_keeper_settings_title" msgid="4219233835490520414">"加密"</string>
<string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"加密平板电脑"</string>
<string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"加密手机"</string>
<string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"已加密"</string>
<string name="crypt_keeper_desc" product="tablet" msgid="923629233459331136">"您可以加密自己的帐户、设置、已下载的应用程序及其数据、媒体和其他文件。加密平板电脑后,您每次开机时都必须输入数字密码或混合密码才能解密。取消加密的唯一方法就是恢复出厂设置,但这会清除平板电脑上的所有数据。\n\n加密过程需要一个小时或更长时间。在开始加密前,需要确保电池有电,并且在加密完成前必须一直连接电源。如果您中断加密过程,会丢失部分或全部数据。\n注:加密平板后,在关机状态下将不响应闹钟功能。"</string>
<string name="crypt_keeper_desc" product="default" msgid="3504519024884099702">"您可以加密自己的帐户、设置、已下载的应用程序及其数据、媒体和其他文件。加密手机后,您每次开机时都必须输入数字密码或混合密码才能解密。取消加密的唯一方法就是恢复出厂设置,但这会清除手机上的所有数据。\n\n加密过程需要一个小时或更长时间。在开始加密前,需要确保电池有电,并且在加密完成前必须一直连接电源。如果您中断加密过程,会丢失部分或全部数据。\n注:加密手机后,在关机状态下将不响应闹钟功能"</string>
<string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"加密平板电脑"</string>
<string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"加密手机"</string>
<string name="crypt_keeper_low_charge_text" msgid="2029407131227814893">"请为电池充电,然后重试。"</string>
<string name="crypt_keeper_unplugged_text" msgid="4785376766063053901">"插上充电器,然后重试。"</string>
<string name="crypt_keeper_dialog_need_password_title" msgid="4058971800557767">"没有锁屏数字密码或混合密码"</string>
<string name="crypt_keeper_dialog_need_password_message" msgid="17076329416977176">"您必须先设置锁屏数字密码或混合密码才能开始加密过程。"</string>
<string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"确认加密"</string>
<string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"是否加密平板电脑?此操作不可逆,如果您中断该过程,则会丢失数据。加密过程需要几分钟或更长时间,在此期间,平板电脑会重启数次。"</string>
<string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"是否加密手机?此操作不可逆,如果您中断该过程,则会丢失数据。加密过程需要几分钟或更长时间,在此期间,手机会重启数次。"</string>
<string name="crypt_keeper_setup_title" msgid="1783951453124244969">"正在加密"</string>
<string name="crypt_keeper_setup_description" product="tablet" msgid="6689952371032099350">"正在加密您的平板电脑 (已完成 <xliff:g id="percent" example="50">^1</xliff:g>%),请稍候。"</string>
<string name="crypt_keeper_setup_description" product="default" msgid="951918761585534875">"正在加密您的手机 (已完成 <xliff:g id="percent" example="50">^1</xliff:g>%),请稍候。"</string>
<string name="crypt_keeper_setup_time_remaining" product="tablet" msgid="1655047311546745695">"您的平板电脑正在加密,请稍候。剩余时间:<xliff:g id="DURATION">^1</xliff:g>"</string>
<string name="crypt_keeper_setup_time_remaining" product="default" msgid="1862964662304683072">"您的手机正在加密,请稍候。剩余时间:<xliff:g id="DURATION">^1</xliff:g>"</string>
<string name="crypt_keeper_force_power_cycle" product="tablet" msgid="556504311511212648">"要解锁您的平板电脑,请关机后重启。"</string>
<string name="crypt_keeper_force_power_cycle" product="default" msgid="1794353635603020327">"要解锁手机,请关机后重启。"</string>
<string name="crypt_keeper_warn_wipe" msgid="2738374897337991667">"警告:如果解锁再失败 <xliff:g id="COUNT">^1</xliff:g> 次,您的设备将被清空!"</string>
<string name="crypt_keeper_failed_title" msgid="7133499413023075961">"加密失败"</string>
<string name="crypt_keeper_failed_summary" product="tablet" msgid="6891198717505120682">"加密过程中断,无法完成。因此,您无法再访问平板电脑上的数据了。\n\n要继续使用您的平板电脑,必须将其恢复出厂设置。恢复出厂设置后对平板电脑进行设置时,您可以将之前备份到 Google 帐户的所有数据恢复到平板电脑中。"</string>
<string name="crypt_keeper_failed_summary" product="default" msgid="1341912405353765293">"加密过程中断,无法完成。因此,您无法再访问手机上的数据了。\n\n要继续使用您的手机,必须将其恢复出厂设置。恢复出厂设置后对手机进行设置时,您可以将之前备份到 Google 帐户的所有数据恢复到手机中。"</string>
<string name="crypt_keeper_data_corrupt_title" msgid="8759119849089795751">"解密失败"</string>
<string name="crypt_keeper_data_corrupt_summary" product="tablet" msgid="3775740783651700375">"您输入的密码正确,但遗憾的是,您的数据已损坏。\n\n要继续使用您的平板电脑,您需要将其恢复出厂设置。对恢复出厂设置后的平板电脑进行设置时,您可以恢复之前备份到 Google 帐户的任何数据。"</string>
<string name="crypt_keeper_data_corrupt_summary" product="default" msgid="6898436151871328007">"您输入的密码正确,但遗憾的是,您的数据已损坏。\n\n要继续使用您的手机,您需要将其恢复出厂设置。对恢复出厂设置后的手机进行设置时,您可以恢复之前备份到 Google 帐户的任何数据。"</string>
<string name="crypt_keeper_switch_input_method" msgid="4168332125223483198">"切换输入法"</string>
<string name="suggested_lock_settings_title" msgid="5022405858647120434">"屏幕锁定"</string>
<string name="suggested_lock_settings_summary" msgid="8778462376012231110">"保护您的设备"</string>
<string name="suggested_fingerprint_lock_settings_title" msgid="3655973509619012084">"使用指纹"</string>
<string name="suggested_fingerprint_lock_settings_summary" msgid="2149569133725273864">"使用指纹解锁"</string>
<string name="lock_settings_picker_title" msgid="3332098786253116023">"选择解锁样式"</string>
<string name="lock_settings_picker_title_profile" msgid="8283230482525023311">"选择资料屏幕锁定方式"</string>
<string name="setup_lock_settings_picker_title" product="tablet">"为平板电脑启用保护功能"</string>
<string name="setup_lock_settings_picker_title" product="device">"保护您的设备"</string>
<string name="setup_lock_settings_picker_title" product="default" msgid="1572244299605153324">"为手机启用保护功能"</string>
<string name="setup_lock_settings_picker_fingerprint_message" msgid="2431588439043969764">"指纹识别的安全性可能不及安全系数高的图案、PIN 码或密码。请设置备用屏幕锁定方式以确保安全。"</string>
<string name="setup_lock_settings_picker_message" product="tablet" msgid="8919671129189936210">"启用设备保护功能可防止他人在未经您允许的情况下使用此平板电脑。请选择您要使用的屏幕锁定方式。"</string>
<string name="setup_lock_settings_picker_message" product="device" msgid="3787276514406353777">"启用设备保护功能可防止他人在未经您允许的情况下使用此设备。请选择您要使用的屏幕锁定方式。"</string>
<string name="setup_lock_settings_picker_message" product="default" msgid="3692856437543730446">"启用设备保护功能可防止他人在未经您允许的情况下使用此手机。请选择您要使用的屏幕锁定方式。"</string>
<string name="lock_settings_picker_fingerprint_message" msgid="4755230324778371292">"选择备用屏幕锁定方式"</string>
<string name="unlock_set_unlock_launch_picker_title" msgid="2084576942666016993">"解锁样式"</string>
<string name="unlock_set_unlock_launch_picker_title_profile" msgid="4270157368864693564">"资料屏幕锁定方式"</string>
<!--DTS2012013105070 zhaojing 20120131 begin-->
<string name="unlock_set_unlock_off_title" msgid="7117155352183088342">"不锁屏"</string>
<!--DTS2012013105070 zhaojing 20120131 end-->
<string name="unlock_set_unlock_off_summary" msgid="94361581669110415">
</string>
<string name="unlock_set_unlock_none_title" msgid="5679243878975864640">"滑动"</string>
<!-- DTS2014110800130 yanyongming/KF67100 20141108 begin -->
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"图案密码"</string>
<!-- DTS2014110800130 yanyongming/KF67100 20141108 end -->
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"数字密码"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"混合密码"</string>
<string name="unlock_set_do_later_title" msgid="4894767558414979243">"以后再说"</string>
<string name="current_screen_lock" msgid="4104091715420072219">"当前屏幕锁定方式"</string>
<string name="fingerprint_unlock_skip_fingerprint" msgid="1441077909803666681">"不设置指纹并继续"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="2120729867788851674">"已被管理员、加密政策或凭据存储停用"</string>
<string name="unlock_setup_wizard_fingerprint_details" msgid="7893457665921363009">"设置锁屏后,您还可以在“设置”>“安全”中设置指纹。"</string>
<string name="unlock_disable_frp_warning_title" msgid="264008934468492550">"是否移除设备保护功能?"</string>
<string name="unlock_disable_frp_warning_title_profile" msgid="5507136301904313583">"要移除个人资料保护功能吗?"</string>
<string name="unlock_disable_frp_warning_content_pattern" msgid="8869767290771023461">"移除解锁图案后,设备保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_pattern_fingerprint" msgid="8212242533942400457">"移除解锁图案后,设备保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_pin" msgid="586996206210265131">"移除数字密码后,设备保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_pin_fingerprint" msgid="875669051899437197" product="tablet">"移除数字密码后,设备保护功能将无法使用。<xliff:g id="EMPTY_LINE">\n\n</xliff:g>同时所保存的指纹也将从此设备上移除。您将无法通过指纹解锁平板、授权购买交易或登录应用。"</string>
<string name="unlock_disable_frp_warning_content_password" msgid="5420612686852555537">"移除密码后,设备保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_password_fingerprint" msgid="2228159168587170445" product="tablet">"移除密码后,设备保护功能将无法使用。<xliff:g id="EMPTY_LINE">\n\n</xliff:g>同时所保存的指纹也将从此设备上移除。您将无法通过指纹解锁平板、授权购买交易或登录应用。"</string>
<string name="unlock_disable_frp_warning_content_unknown" msgid="1550718040483548220">"移除锁屏密码后,设备保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_unknown_fingerprint" msgid="6363091330281670692">"移除锁屏密码后,设备保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_pattern_profile" msgid="8682200103576359918">"移除您的解锁图案后,个人资料保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_pattern_fingerprint_profile" msgid="3675154828957224316">"移除您的解锁图案后,个人资料保护功能将无法使用。\n\n您已保存的指纹也将从此个人资料中移除,而且您将无法使用这些指纹来解锁个人资料、对购买交易进行授权或登录应用。"</string>
<string name="unlock_disable_frp_warning_content_pin_profile" msgid="7790688070593867767">"移除您的 PIN 码后,个人资料保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_pin_fingerprint_profile" msgid="4879321153584598940">"移除您的 PIN 码后,个人资料保护功能将无法使用。\n\n您已保存的指纹也将从此个人资料中移除,而且您将无法使用这些指纹来解锁个人资料、对购买交易进行授权或登录应用。"</string>
<string name="unlock_disable_frp_warning_content_password_profile" msgid="7569285520567674461">"移除您的密码后,个人资料保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_password_fingerprint_profile" msgid="3527188316958917839">"移除您的密码后,个人资料保护功能将无法使用。\n\n您已保存的指纹也将从此个人资料中移除,而且您将无法使用这些指纹来解锁个人资料、对购买交易进行授权或登录应用。"</string>
<string name="unlock_disable_frp_warning_content_unknown_profile" msgid="6984215718701688202">"移除您的屏幕锁定方式后,个人资料保护功能将无法使用。"</string>
<string name="unlock_disable_frp_warning_content_unknown_fingerprint_profile" msgid="1962204059377724158">"移除您的屏幕锁定方式后,个人资料保护功能将无法使用。\n\n您已保存的指纹也将从此个人资料中移除,而且您将无法使用这些指纹来解锁个人资料、对购买交易进行授权或登录应用。"</string>
<string name="unlock_disable_frp_warning_ok" msgid="7075138677177748705">"移除"</string>
<string name="lock_profile_wipe_attempts" msgid="1216193652369039672">"请重试。您目前已尝试 <xliff:g id="CURRENT_ATTEMPTS">%1$d</xliff:g> 次,最多可尝试 <xliff:g id="TOTAL_ATTEMPTS">%2$d</xliff:g> 次。"</string>
<string name="lock_profile_wipe_warning_title" msgid="2961600792367265036">"最后一次尝试"</string>
<string name="lock_profile_wipe_warning_content_pattern" msgid="8978031996247660921">"如果您这次绘制的工作解锁图案仍然有误,您的工作资料和相关数据都将从此设备中移除。"</string>
<string name="lock_profile_wipe_warning_content_pin" msgid="7697973618542377880">"如果您这次输入的工作 PIN 码仍然有误,您的工作资料和相关数据都将从此设备中移除。"</string>
<string name="lock_profile_wipe_content" msgid="2150455386921347628">"错误次数过多。您的工作资料和相关数据将会从此设备中移除。"</string>
<string name="lock_profile_wipe_dismiss" msgid="5118293266264141442">"关闭"</string>
<string name="lockpassword_password_too_short" msgid="7328975683669256660">"混合密码必须至少包含 %d 个字符"</string>
<string name="lockpassword_pin_too_short" msgid="1677649103470518953">"数字密码至少应为 %d 位"</string>
<string name="lockpassword_continue_label" msgid="4602203784934526940">"继续"</string>
<string name="lockpassword_password_too_long" msgid="7016906583950201704">"密码必须少于 <xliff:g id="NUMBER">%d</xliff:g> 个字符。"</string>
<string name="lockpassword_pin_too_long" msgid="6419879099090294052">"PIN 必须少于 <xliff:g id="NUMBER">%d</xliff:g> 位数。"</string>
<string name="lockpassword_pin_contains_non_digits" msgid="3379277100136600632">"数字密码只能由 0-9 的数字组成"</string>
<string name="lockpassword_pin_recently_used" msgid="2729073062730842496">"设备管理器不允许使用最近的数字密码"</string>
<string name="lockpassword_illegal_character" msgid="6204396794254688549">"混合密码包含非法字符"</string>
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"设备管理器不允许使用最近的密码"</string>
<string name="lockpassword_pin_no_sequential_digits" msgid="6830610582179569631">"禁止使用以升序、降序或重复序列进行排列的一串数字"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"确定"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"取消"</string>
<string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"取消"</string>
<string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"下一步"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"设备管理器"</string>
<string name="number_of_device_admins_none" msgid="7185056721919496069">"没有运行中的应用"</string>
<plurals name="number_of_device_admins" formatted="false" msgid="3361891840111523393">
<item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> 个有效应用</item>
<item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> 个有效应用</item>
</plurals>
<string name="manage_trust_agents" msgid="4629279457536987768">"可信代理应用"</string>
<string name="disabled_because_no_backup_security" msgid="6877660253409580377">"请先设置锁屏方式"</string>
<string name="manage_trust_agents_summary" msgid="6804319935640148441">"查看或停用可信的代理程序"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"蓝牙"</string>
<string name="bluetooth_settings" msgid="1810521656168174329">"蓝牙"</string>
<string name="bluetooth_settings_title" msgid="1908745291161353016">"蓝牙"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"蓝牙配对请求"</string>
<string name="bluetooth_pairing_key_msg" msgid="333005542843637754">"请确保其显示的配对密钥为:"</string>
<string name="bluetooth_enter_passkey_msg" msgid="6813273136442138444">"要与 <subnode ref="en" index="1"/><subnode ref="en" index="2"><subnode ref="en" index="3">%1$s</subnode></subnode><subnode ref="en" index="5"/><subnode ref="en" index="5"/> 设备配对,请输入该设备所需的配对密钥:"</string>
<string name="bluetooth_enable_alphanumeric_pin" msgid="7222713483058171357">"PIN 码由字母或符号组成"</string>
<string name="bluetooth_pin_values_hint" msgid="3815897557875873646">"通常为 0000 或 1234"</string>
<string name="bluetooth_pin_values_hint_16_digits" msgid="7849359451584101077">"必须为 16 位数字"</string>
<string name="bluetooth_enter_pin_other_device" msgid="4637977124526813470">"您可能还需要在另一台设备上输入此 PIN 码。"</string>
<string name="bluetooth_enter_passkey_other_device" msgid="1808735246794073465">"您可能还需要在另一台设备上输入此匹配密钥。"</string>
<string name="bluetooth_confirm_passkey_msg" msgid="3708312912841950052">"要与以下设备配对:<br/><b><xliff:g id="device_name">%1$s</xliff:g></b><br/><br/>请确保其显示的配对密钥为:<br/><b><xliff:g id="passkey">%2$s</xliff:g></b>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1615930853859551491">"来自:<br/><b><xliff:g id="device_name">%1$s</xliff:g></b><br/><br/>是否与此设备配对?"</string>
<string name="bluetooth_pairing_shares_phonebook" msgid="1655930908614072491">"配对之后,向所配对设备授予通讯录和通话记录的访问权限"</string>
<!-- DTS2013022205658 terigele/00221678 20130407 begin -->
<!-- DTS2013022205658 terigele/00221678 20130407 end -->
<string name="bluetooth_connecting_error_message" msgid="1779660510084746802">"连接到<xliff:g id="DEVICE_NAME">%1$s</xliff:g>时出现问题。"</string>
<string name="bluetooth_preference_scan_title" msgid="2277464653118896016">"扫描查找设备"</string>
<string name="bluetooth_search_for_devices" msgid="5957007154213560390">"搜索设备"</string>
<string name="bluetooth_preference_paired_dialog_name_label" msgid="8111146086595617285">"名称"</string>
<string name="bluetooth_preference_paired_devices" msgid="1970524193086791964">"已配对的设备"</string>
<string name="bluetooth_preference_found_devices" msgid="1647983835063249680">"可用设备"</string>
<string name="bluetooth_device_context_pair_connect" msgid="7611522504813927727">"配对和连接"</string>
<string name="bluetooth_device_context_unpair" msgid="662992425948536144">"取消配对"</string>
<string name="bluetooth_empty_list_bluetooth_off" msgid="4793562956642282639">"要监测设备,请开启蓝牙。"</string>
<!-- DTS2015091806227 zhanglun/00129105 20150918 begin -->
<string name="ble_scan_notify_text" msgid="1295915006005700650">"为提高位置信息的精度,系统应用和服务仍会检测蓝牙设备。您可以在<xliff:g id="LINK_BEGIN_0">LINK_BEGIN</xliff:g>扫描设置<xliff:g id="LINK_END_1">LINK_END</xliff:g>中更改此设置。"</string>
<string name="bluetooth_device_advanced_title" msgid="6066342531927499308">"已配对的蓝牙设备"</string>
<string name="bluetooth_device_advanced_profile_header_title" msgid="3764437426089639639">"配置项"</string>
<string name="bluetooth_device_advanced_rename_device" msgid="5148578059584955791">"重命名"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"底座用于音频"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"将底座用作免提电话"</string>
<string name="bluetooth_dock_settings_a2dp" msgid="8791004998846630574">"用于音乐和媒体"</string>
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"记住设置"</string>
<string name="wifi_display_settings_title" msgid="564299108014609382">"无线显示"</string>
<string name="wifi_display_enable_menu_item" msgid="4883036464138167674">"无线显示"</string>
<string name="wifi_display_no_devices_found" msgid="8180582698282377626">"附近没有无线显示设备"</string>
<string name="wifi_display_status_connecting" msgid="5688608834000748607">"正在连接"</string>
<string name="wifi_display_status_connected" msgid="8364125226376985558">"已连接"</string>
<string name="wifi_display_status_in_use" msgid="8556830875615434792">"正在使用"</string>
<string name="wifi_display_status_not_available" msgid="5714978725794210102">"不可用"</string>
<string name="wifi_display_details" msgid="7791118209992162698">"显示设备设置"</string>
<string name="wifi_display_options_title" msgid="5740656401635054838">"无线显示选项"</string>
<string name="wifi_display_options_forget" msgid="9119048225398894580">"取消保存"</string>
<string name="wifi_display_options_done" msgid="5703116500357822557">"完成"</string>
<string name="wifi_display_options_name" msgid="4756080222307467898">"名称"</string>
<string name="wifi_band_24ghz" msgid="852929254171856911">"2.4 GHz"</string>
<string name="wifi_band_5ghz" msgid="6433822023268515117">"5 GHz"</string>
<string name="link_speed" msgid="8896664974117585555">"%1$d Mbps"</string>
<string name="wifi_ask_enable" msgid="2795469717302060104">"<xliff:g id="REQUESTER">%s</xliff:g>请求开启 Wi-Fi"</string>
<string name="wifi_ask_disable" msgid="728366570145493573">"<xliff:g id="REQUESTER">%s</xliff:g>请求关闭 Wi-Fi"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" product="tablet" msgid="8302974395787498915">"允许平板电脑在接触其他设备时交换数据"</string>
<string name="nfc_quick_toggle_summary" product="default" msgid="5237208142892767592">"允许手机在接触其他设备时交换数据"</string>
<string name="android_beam_settings_title" msgid="7832812974600338649">"Android Beam"</string>
<string name="android_beam_explained" msgid="1828555626055290684">"开启此功能后,您只需将自己的设备与另一台支持 NFC 的设备贴在一起,即可将您设备上的应用同步分享给对方。例如,您可以发送网页、YouTube 视频、联系人等等。\n\n您只需将设备靠在一起 (通常是背靠背),然后触摸屏幕。所分享的内容是由该应用确定的。"</string>
<string name="wifi_settings" msgid="29722149822540994">"Wi-Fi"</string>
<string name="wifi_settings_category" msgid="8719175790520448014">"Wi-Fi 设置"</string>
<string name="wifi_settings_title" msgid="3103415012485692233">"Wi-Fi"</string>
<string name="wifi_select_network" msgid="4210954938345463209">"选择 Wi\u2011Fi 网络"</string>
<string name="wifi_starting" msgid="6716593470710880000">"正在开启 Wi-Fi\u2026"</string>
<string name="wifi_stopping" msgid="8952524572499500804">"正在关闭 Wi-Fi..."</string>
<string name="wifi_error" msgid="3207971103917128179">"出错"</string>
<string name="wifi_in_airplane_mode" msgid="8652520421778203796">"正处于飞行模式下"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"网络通知"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"附近有开放网络时通知我"</string>
<string name="wifi_settings_dialog_title" priority="translator">"设置网络"</string>
<string name="wifi_wakeup_summary" msgid="2530814331062997163">"位于已保存的高品质网络(例如您的家庭网络)附近时自动重新开启 WLAN"</string>
<string name="wifi_install_credentials" msgid="3551143317298272860">"安装证书"</string>
<string name="wifi_scan_notify_text" msgid="5593805423071186757">"为提高位置信息的精确度,系统应用和服务仍然会扫描 Wi-Fi 网络。您可以在<xliff:g id="LINK_BEGIN_0">LINK_BEGIN</xliff:g>扫描设置<xliff:g id="LINK_END_1">LINK_END</xliff:g>中更改此设置。"</string>
<string name="wifi_scan_notify_remember_choice" msgid="5340097010842405981">"不再提示"</string>
<string name="wifi_setting_sleep_policy_title" msgid="9107237003911220057">"在休眠状态下保持 Wi-Fi 连接"</string>
<string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"更改设置时出现问题"</string>
<string name="wifi_cellular_data_fallback_title" msgid="8753386877755616476">"自动切换到移动数据网络"</string>
<string name="wifi_cellular_data_fallback_summary" msgid="2641527693037426430">"在 Wi-Fi 网络无法连接到互联网时改用移动数据网络 (可能消耗移动数据流量)"</string>
<string name="wifi_add_network" msgid="6234851776910938957">"添加网络"</string>
<string name="wifi_access_points" msgid="7053990007031968609">"Wi-Fi 网络"</string>
<string name="wifi_menu_wps_pbc" msgid="2668564692207863017">"WPS 按钮"</string>
<string name="wifi_menu_wps_pin" msgid="6426448256268695933">"WPS PIN 输入"</string>
<string name="wifi_menu_p2p" msgid="7619851399250896797">"Wi-Fi 直连"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"扫描"</string>
<string name="wifi_menu_advanced" msgid="7522252991919573664">"高级"</string>
<string name="wifi_menu_configure" msgid="6150926852602171938">"配置"</string>
<string name="wifi_menu_connect" msgid="4996220309848349408">"连接网络"</string>
<string name="wifi_menu_forget" msgid="8736964302477327114">"不保存网络"</string>
<string name="wifi_menu_modify" msgid="2068554918652440105">"修改网络"</string>
<string name="wifi_menu_write_to_nfc" msgid="7692881642188240324">"写入 NFC 标签"</string>
<string name="wifi_empty_list_wifi_off" msgid="4722299515264875943">"要查看可用网络,请开启 Wi-Fi。"</string>
<string name="wifi_empty_list_wifi_on" msgid="8746108031587976356">"正在搜索 Wi-Fi 网络"</string>
<string name="wifi_empty_list_user_restricted" msgid="8280257225419947565">"您无权更改 Wi-Fi 网络。"</string>
<string name="wifi_more" msgid="3195296805089107950">"更多"</string>
<string name="wifi_setup_wps" msgid="8128702488486283957">"自动设置 (WPS)"</string>
<string name="wifi_show_advanced" msgid="1793703023711426246">"显示高级选项"</string>
<string name="wifi_advanced_toggle_description_expanded" msgid="2380600578544493084">"高级选项下拉列表。点击两次即可收起。"</string>
<string name="wifi_advanced_toggle_description_collapsed" msgid="1463812308429197263">"高级选项下拉列表。点击两次即可展开。"</string>
<string name="wifi_wps_setup_msg" msgid="315174329121275092">"正在启动 WPS..."</string>
<string name="wifi_wps_onstart_pbc" msgid="5940801028985255304">"请按下路由器上的 Wi-Fi 保护设置按钮,它可能会标为“WPS”或包含此符号:"</string>
<string name="wifi_wps_onstart_pin" msgid="223344506445335358">"请在 Wi-Fi 路由器上输入 PIN 码 <xliff:g id="NUMBER">%1$s</xliff:g>,设置过程可能需要 2 分钟。"</string>
<string name="wifi_wps_complete" msgid="2388138550456729134">"WPS 已启动。正在连接网络..."</string>
<string name="wifi_wps_connected" msgid="7153432445748931183">"已连接到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</string>
<string name="wifi_wps_in_progress" msgid="3372311348221357944">"正在设置 WPS,此过程最多可能需要两分钟时间才能完成。"</string>
<string name="wifi_wps_failed_generic" msgid="5668775022238832527">"无法开启 WPS。请过几分钟后重试。"</string>
<string name="wifi_wps_failed_wifi_off" priority="LT">"无法开启 WPS。请开启 Wi-Fi 后重试。"</string>
<string name="wifi_wps_failed_wep" msgid="2702820087105284461">"无线路由器安全设置 (WEP) 不受支持"</string>
<string name="wifi_wps_failed_tkip" msgid="4282401586860713349">"无线路由器安全设置 (TKIP) 不受支持"</string>
<string name="wifi_wps_failed_overlap" msgid="5159533685596844778">"检测到其他 WPS 会话。请过几分钟后重试。"</string>
<string name="wifi_ssid" msgid="641393708309146745">"网络 SSID"</string>
<string name="wifi_ssid_hint" msgid="897593601067321355">"输入 SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"安全性"</string>
<string name="wifi_signal" msgid="5514120261628065287">"信号强度"</string>
<string name="wifi_status" msgid="4824568012414605414">"状态消息"</string>
<string name="wifi_speed" msgid="3526198708812322037">"连接速度"</string>
<string name="wifi_frequency" msgid="7791090119577812214">"频率"</string>
<string name="wifi_ip_address" msgid="1440054061044402918">"IP 地址"</string>
<string name="passpoint_label" msgid="6381371313076009926">"保存方式:"</string>
<string name="passpoint_content" msgid="8447207162397870483">"<xliff:g id="NAME">%1$s</xliff:g>凭据"</string>
<string name="wifi_eap_method" msgid="8529436133640730382">"EAP 方法"</string>
<string name="please_select_phase2" msgid="5231074529772044898">"阶段 2 身份验证"</string>
<string name="wifi_eap_ca_cert" msgid="3521574865488892851">"CA 证书"</string>
<string name="wifi_eap_domain" msgid="8471124344218082064">"域名"</string>
<string name="wifi_eap_user_cert" msgid="1291089413368160789">"用户证书"</string>
<string name="wifi_eap_identity" msgid="4359453783379679103">"身份"</string>
<string name="wifi_eap_anonymous" msgid="2989469344116577955">"匿名身份"</string>
<string name="wifi_password" msgid="5948219759936151048">"密码"</string>
<string name="wifi_show_password" msgid="6461249871236968884">"显示密码"</string>
<string name="wifi_ap_band_config" msgid="1611826705989117930">"AP 频段"</string>
<string name="wifi_ap_choose_2G" msgid="8724267386885036210">"2.4 GHz 频段"</string>
<string name="wifi_ap_choose_5G" msgid="8137061170937978040">"5 GHz 频段"</string>
<string name="wifi_ip_settings" msgid="3359331401377059481">"IP"</string>
<string name="wifi_shared" msgid="844142443226926070">"与其他设备用户共享"</string>
<string name="wifi_unchanged" msgid="3410422020930397102">"(未更改)"</string>
<string name="wifi_unspecified" msgid="5431501214192991253">"(未指定)"</string>
<string name="wifi_multiple_cert_added" msgid="3240743501460165224">"(已添加多份证书)"</string>
<string name="wifi_use_system_certs" msgid="5270879895056893783">"使用系统证书"</string>
<string name="wifi_do_not_provide_eap_user_cert" msgid="5160499244977160665">"不提供"</string>
<string name="wifi_do_not_validate_eap_server" msgid="4266754430576348471">"不验证"</string>
<string name="wifi_do_not_validate_eap_server_warning" msgid="1787190245542586660">"未指定任何证书。您的网络连接将不是私密连接。"</string>
<string name="wifi_no_domain_warning" msgid="5223011964091727376">"必须指定网域。"</string>
<string name="wifi_scan_always_turnon_message" msgid="203123538572122989">"为了提高位置信息精确度以及其他目的,“<xliff:g id="APP_NAME">%1$s</xliff:g>”请求开启网络扫描功能 (在关闭了 Wi-Fi 时也可进行扫描)。\n\n是否对所有需要进行扫描的应用批准这项请求?"</string>
<string name="wifi_scan_always_confirm_allow" msgid="5355973075896817232">"允许"</string>
<string name="wifi_scan_always_confirm_deny" msgid="4463982053823520710">"拒绝"</string>
<string name="no_internet_access_text" msgid="7133561752896706392">"使用此网络将无法访问互联网。仍要使用此网络吗?"</string>
<string name="no_internet_access_remember" msgid="4697314331614625075">"对于此网络不再询问"</string>
<string name="lost_internet_access_title" msgid="6228530645663584505">"此 Wi-Fi 网络无法连接到互联网"</string>
<string name="lost_internet_access_text" msgid="1676124057345106398">"当 WLAN 网络连接状况不佳时,您可以切换到移动网络(可能会消耗移动数据流量)。"</string>
<string name="lost_internet_access_switch" msgid="1980357004205108781">"切换至移动网络"</string>
<string name="lost_internet_access_cancel" msgid="338273139419871110">"始终开启 Wi-Fi"</string>
<string name="lost_internet_access_persist" msgid="7634876061262676255">"不再提示"</string>
<string name="wifi_connect" msgid="1076622875777072845">"连接"</string>
<string name="wifi_forget" msgid="8168174695608386644">"不保存"</string>
<string name="wifi_save" msgid="3331121567988522826">"保存"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"取消"</string>
<string name="wifi_saved_access_points_titlebar" msgid="2996149477240134064">"已保存的网络"</string>
<string name="wifi_advanced_titlebar" msgid="1627063574532930090">"高级 Wi-Fi 设置"</string>
<string name="wifi_configure_titlebar" msgid="7977475161589303074">"配置 Wi-Fi"</string>
<string name="wifi_advanced_mac_address_title" msgid="6571335466330978393">"MAC 地址"</string>
<string name="wifi_advanced_ip_address_title" msgid="6215297094363164846">"IP 地址"</string>
<!-- no translation found for wifi_details_subnet_mask (6720279144174924410) -->
<skip/>
<string name="wifi_details_dns" msgid="8648826607751830768">"DNS"</string>
<!-- no translation found for wifi_details_ipv6_address_header (6734119149106422148) -->
<skip/>
<string name="wifi_saved_access_points_label" msgid="2013409399392285262">"已保存的网络"</string>
<string name="wifi_advanced_not_available" msgid="5823045095444154586">"此用户无法查看或修改 Wi-Fi 网络高级设置"</string>
<string name="wifi_ip_settings_invalid_ip_address" msgid="2513142355364274970">"请输入有效的 IP 地址。"</string>
<string name="wifi_ip_settings_invalid_gateway" msgid="8164264988361096450">"请输入有效的网关地址。"</string>
<string name="wifi_ip_settings_invalid_dns" msgid="8744583948328391047">"请输入有效的 DNS 地址。"</string>
<string name="wifi_ip_settings_invalid_network_prefix_length" msgid="40470058023181052">"输入长度在 0-32 的网络前缀。"</string>
<string name="wifi_dns1" msgid="7344118050720080045">"域名 1"</string>
<string name="wifi_dns2" msgid="1368601006824882659">"域名 2"</string>
<string name="wifi_gateway" msgid="163914742461092086">"网关"</string>
<string name="wifi_network_prefix_length" msgid="3028785234245085998">"网络前缀长度"</string>
<!-- DTS2012061802639 meiqingyun 20120615 begin -->
<string name="wifi_p2p_settings_title" msgid="5444461191435291082">Wi-Fi 直连</string>
<!-- DTS2012061802639 meiqingyun 20120615 end -->
<string name="wifi_p2p_menu_search" msgid="7189970585393813135">"搜索"</string>
<string name="wifi_p2p_menu_searching" msgid="2396704492143633876">"正在搜索…"</string>
<string name="wifi_p2p_remembered_groups" msgid="3847022927914068230">"已保存的群组"</string>
<string name="wifi_p2p_failed_rename_message" msgid="2562182284946936380">"无法重命名设备。"</string>
<string name="wifi_p2p_disconnect_title" msgid="3216846049677448420">"断开连接"</string>
<string name="wifi_p2p_disconnect_message" msgid="8227342771610125771">"如果断开连接,您与 <xliff:g id="PEER_NAME">%1$s</xliff:g> 的连接将中断。"</string>
<string name="wifi_p2p_disconnect_multiple_message" msgid="3283805371034883105">"如果断开连接,您与<xliff:g id="PEER_NAME">%1$s</xliff:g>和另外 <xliff:g id="PEER_COUNT">%2$s</xliff:g> 台设备将中断连接。"</string>
<string name="wifi_p2p_cancel_connect_title" msgid="255267538099324413">"取消邀请"</string>
<string name="wifi_p2p_cancel_connect_message" msgid="7477756213423749402">"是否取消与 <xliff:g id="PEER_NAME">%1$s</xliff:g> 的连接邀请?"</string>
<string name="wifi_p2p_delete_group_message" msgid="834559380069647086">是否放弃保存所选群组?</string>
<string name="wifi_tether_checkbox_text" msgid="1847167643625779136">"便携式 Wi-Fi 热点"</string>
<string name="wifi_tether_enabled_subtext" msgid="8948641212931906143">"便携式热点 <xliff:g id="network_ssid">%1$s</xliff:g> 已开启"</string>
<string name="wifi_tether_configure_ap_text" msgid="3474995108398156258">"配置 Wi-Fi 热点"</string>
<string name="wifi_tether_configure_subtext" msgid="7957547035983257748">"<xliff:g id="network_ssid">%1$s</xliff:g> <xliff:g id="network_security">%2$s</xliff:g> 便携式 Wi-Fi 热点"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Android 热点"</string>
<string name="wifi_calling_settings_title" msgid="4102921303993404577">"Wi-Fi 通话"</string>
<string name="wifi_calling_suggestion_title" msgid="9008010480466359578">"开启 Wi-Fi 通话功能"</string>
<string name="wifi_calling_suggestion_summary" msgid="3765923249566552233">"使用 Wi-Fi 网络(而非移动网络)"</string>
<!-- no translation found for wifi_calling_roaming_mode_summary (8642014873060687717) -->
<skip/>
<string-array name="wifi_calling_mode_choices">
<item msgid="2124257075906188844">"首选 Wi-Fi"</item>
<item msgid="5267397515594230396">"首选移动网络"</item>
<item msgid="3132912693346866895">"仅限 WLAN"</item>
</string-array>
<string-array name="wifi_calling_mode_values">
<item msgid="4799585830102342375">"2"</item>
<item msgid="1171822231056612021">"1"</item>
<item msgid="3194458950573886239">"0"</item>
</string-array>
<string-array name="wifi_calling_mode_values_without_wifi_only">
<item msgid="2339246858001475047">"2"</item>
<item msgid="6200207341126893791">"1"</item>
</string-array>
<string name="wifi_calling_off_explanation" msgid="2597566001655908391" product="tablet">"开启“Wi-Fi 通话”功能后,平板可根据您的偏好设置,通过 Wi-Fi 网络或运营商网络通话 (优先使用信号较强的网络)。开启此功能前,请先向您的运营商咨询收费情况及其他详情。"</string>
<string name="emergency_address_summary" msgid="306028701568728126">"当您使用 WLAN 拨打 911 时,紧急服务会将此地址视为您所在位置的地址"</string>
<string name="display_settings_title" msgid="1708697328627382561">"显示"</string>
<string name="sound_settings" msgid="5534671337768745343">"声音"</string>
<string name="all_volume_title" msgid="4296957391257836961">"音量"</string>
<string name="musicfx_title" msgid="3415566786340790345">"音效"</string>
<string name="incoming_call_volume_title" msgid="8073714801365904099">"铃声"</string>
<string name="home_work_profile_not_supported" msgid="1357721012342357037">"不支持工作资料"</string>
<string name="media_volume_title" msgid="3576565767317118106">"媒体"</string>
<string name="sound_effects_enable_title" msgid="1171590821131077296">"触摸提示音"</string>
<string name="lock_sounds_enable_title" msgid="450098505659399520">"锁屏提示音"</string>
<string name="haptic_feedback_enable_title" msgid="2438293710530828760">"点击时振动"</string>
<string name="volume_media_description" msgid="7949355934788807863">"音乐、视频、游戏和其他媒体"</string>
<string name="volume_ring_description" msgid="5936851631698298989">"铃声和通知"</string>
<string name="volume_notification_description" msgid="5810902320215328321">"通知"</string>
<string name="volume_alarm_description" msgid="8322615148532654841">"闹钟"</string>
<string name="volume_ring_mute" msgid="3018992671608737202">"使铃声和通知静音"</string>
<string name="volume_media_mute" msgid="3399059928695998166">"使音乐和其他媒体静音"</string>
<string name="volume_notification_mute" msgid="7955193480006444159">"使通知静音"</string>
<string name="volume_alarm_mute" msgid="4452239420351035936">"使闹钟静音"</string>
<string name="dock_settings" msgid="1820107306693002541">"底座"</string>
<string name="dock_audio_settings_title" msgid="3324750259959570305">"音频"</string>
<string name="dock_not_found_title" msgid="3290961741828952424">"未找到底座"</string>
<string name="dock_not_found_text" product="tablet" msgid="8405432495282299143">"您需要先将平板电脑插入基座,才能设置基座音频。"</string>
<string name="dock_not_found_text" product="default" msgid="1460497923342627801">"您需要先将手机插入基座,才能设置基座音频。"</string>
<string name="dock_sounds_enable_title" msgid="885839627097024110">"插入基座提示音"</string>
<string name="account_settings" msgid="6403589284618783461">"帐户"</string>
<string name="accessibility_category_work" msgid="4339262969083355720">"工作资料帐户 - <xliff:g id="MANAGED_BY">%s</xliff:g>"</string>
<string name="accessibility_category_personal" msgid="1263518850905945594">"个人资料帐户"</string>
<string name="accessibility_work_account_title" msgid="1231830766637939527">"工作帐户 - <xliff:g id="MANAGED_BY">%s</xliff:g>"</string>
<string name="accessibility_personal_account_title" msgid="2169071663029067826">"个人帐户 - <xliff:g id="MANAGED_BY">%s</xliff:g>"</string>
<string name="search_settings" msgid="1910951467596035063">"搜索"</string>
<string name="display_settings" msgid="7965901687241669598">"显示"</string>
<string name="accelerometer_title" msgid="7854608399547349157">"自动旋转"</string>
<string name="brightness" msgid="8480105032417444275">"亮度"</string>
<string name="brightness_title" msgid="5746272622112982836">"亮度"</string>
<string name="brightness_summary" msgid="838917350127550703">"调整屏幕亮度"</string>
<string name="auto_brightness_title" msgid="6341042882350279391">"自动调节亮度"</string>
<string name="auto_brightness_summary" msgid="1799041158760605375">"根据环境光线情况优化亮度"</string>
<string name="night_display_title" msgid="2626451512200357686">"夜间模式"</string>
<string name="night_display_text" msgid="1837277457033025056">"夜间模式会将您的屏幕色调调节为琥珀色,让您在光线昏暗的环境下可以更舒适地查看屏幕或阅读文字,并可能有助于您入睡。"</string>
<string name="night_display_category_schedule" msgid="2044072617637348966">"定时"</string>
<string name="night_display_category_status" msgid="1952928783124400330">"状态"</string>
<string name="night_display_auto_mode_title" msgid="8046314360381608455">"自动开启"</string>
<string name="night_display_auto_mode_never" msgid="6723636142053240947">"永不"</string>
<string name="night_display_auto_mode_custom" msgid="6012300346981608242">"自定义时间安排"</string>
<string name="night_display_auto_mode_twilight" msgid="2123345097508167094">"日落到日出"</string>
<string name="night_display_start_time_title" msgid="8918016772613689584">"开始时间"</string>
<string name="night_display_end_time_title" msgid="8286061578083519350">"结束时间"</string>
<string name="night_display_summary_off" msgid="7009821232380000786">"关闭。<xliff:g id="ID_1">%1$s</xliff:g>"</string>
<string name="night_display_summary_off_auto_mode_never" msgid="2305501561697289620">"不自动开启"</string>
<string name="night_display_summary_off_auto_mode_custom" msgid="1548073080728058384">"将在 <xliff:g id="ID_1">%1$s</xliff:g> 自动开启"</string>
<string name="night_display_summary_off_auto_mode_twilight" msgid="2737328390752018845">"将在日落时自动开启"</string>
<string name="night_display_summary_on" msgid="6626224414971753417">"开启。<xliff:g id="ID_1">%1$s</xliff:g>"</string>
<string name="night_display_summary_on_auto_mode_never" msgid="5217396859715040056">"不自动关闭"</string>
<string name="night_display_summary_on_auto_mode_custom" msgid="887702685252504739">"将在 <xliff:g id="ID_1">%1$s</xliff:g> 自动关闭"</string>
<string name="night_display_summary_on_auto_mode_twilight" msgid="8574989770628425398">"将在日出时自动关闭"</string>
<string name="screen_timeout" msgid="4351334843529712571">"休眠"</string>
<string name="screen_timeout_summary" msgid="327761329263064327">"无操作 <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>后"</string>
<string name="wallpaper_settings_title" msgid="5449180116365824625">"壁纸"</string>