summaryrefslogtreecommitdiffstats
path: root/res/values/strings.xml
blob: 3b91ef66fbddec395c164a6a39f2f5b8425bc5aa (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
<?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:xliff="urn:oasis:names:tc:xliff:document:1.2">

    <!-- Device Info --> <skip />
    <!-- Device Info screen. Used for a status item's value when the proper value is not known -->
    <string name="device_info_default">Unknown</string>

    <!-- Phone info -->
    <!-- Phone Info screen. Button label to turn on the radio . Only shown in diagnostic screen, so precise translation is not needed. -->
    <string name="turn_on_radio">Turn on radio</string>
    <!-- Phone Info screen. Button label to turn off the radio . Only shown in diagnostic screen, so precise translation is not needed. -->
    <string name="turn_off_radio">Turn off radio</string>
    <!-- Phone Info screen. Button label to turn on the log for QXDM SD . Only shown in diagnostic screen, so precise translation is not needed. -->
    <string name="turn_on_qxdm">Enable QXDM SD log</string>
    <!-- Phone Info screen. Button label to turn off the log for QXDM SD . Only shown in diagnostic screen, so precise translation is not needed. -->
    <string name="turn_off_qxdm">Disable QXDM SD log</string>

    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_viewADN">View SIM address book</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_viewFDN">View Fixed Dialing Numbers</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_viewSDN">View Service Dialing Numbers</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_getPDP">Get PDP list</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_enableData">Enable data connection</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_disableData">Disable data connection</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_enableDataOnBoot">Enable data on boot</string>
    <!-- Phone Info screen. Menu item label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_menu_disableDataOnBoot">Disable data on boot</string>

    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_service_in">In service</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_service_out">Out of service</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_service_emergency">Emergency calls only</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_service_off">Radio off</string>

    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_roaming_in">Roaming</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_roaming_not">Not roaming</string>

    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_phone_idle">Idle</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_phone_ringing">Ringing</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_phone_offhook">Call in progress</string>

    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_data_disconnected">Disconnected</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_data_connecting">Connecting</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_data_connected">Connected</string>
    <!-- Phone Info screen. Status label.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_data_suspended">Suspended</string>

    <!-- Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_unknown">unknown</string>
    <!-- Phone Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_display_packets">pkts</string>
    <!-- Phone Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_display_bytes">bytes</string>
    <!-- Phone Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_display_dbm">dBm</string>
    <!-- Phone Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_display_asu">asu</string>
    <!-- Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_lac">LAC</string>
    <!-- Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radioInfo_cid">CID</string>

    <!-- Used for diagnostic info screens, precise translation isn't needed. Unmounts the SD card from the phone, meaning it will become available for an attached computer  -->
    <string name="sdcard_unmount">Unmount SD card</string>

    <!-- Used for diagnostic info screens, precise translation isn't needed. Formats the SD card in the phone, meaning it will be erased and reformatted -->
    <string name="sdcard_format">Format SD card</string>

    <!-- choice for the font size spinner -->
    <string name="small_font">Small</string>
    <!-- choice for the font size spinner -->
    <string name="medium_font">Medium</string>
    <!-- choice for the font size spinner -->
    <string name="large_font">Large</string>

    <!-- Do not translate. label for font size preview.  Does not need to be translated. -->
    <string name="font_size_preview_text">Servez à ce monsieur une bière et des kiwis.</string>
    <!-- Button. Chosen when they want to save the chosen text size. -->
    <string name="font_size_save">OK</string>

    <!-- Title for a notification shown. -->
    <string name="sdcard_setting">SD card</string>


    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_label">Battery status:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_scale_label">Battery scale:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_level_label">Battery level:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_label">Battery health:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_technology_label">Battery technology:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_voltage_label">Battery voltage:</string>
    <!-- Battery Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_voltage_units">mV</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_temperature_label">Battery temperature:</string>
    <!-- Battery Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_temperature_units">\u00B0 C</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_uptime">Time since boot:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_awake_battery">Awake time on battery:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_awake_plugged">Awake time when charging:</string>
    <!-- Battery Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_screen_on">Screen ON time:</string>
    

    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_unknown">Unknown</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_charging">Charging</string>
    <!-- Battery Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_charging_ac">(AC)</string>
    <!-- Battery Info screen. Units shown after a value.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_charging_usb">(USB)</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_discharging">Discharging</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_not_charging">Not charging</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_status_full">Full</string>

    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_unknown">Unknown</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_good">Good</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_overheat">Overheat</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_dead">Dead</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_over_voltage">Over voltage</string>
    <!-- Battery Info screen. Value for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="battery_info_health_unspecified_failure">Unknown error</string>

    <!-- Used as setting title (for checkbox) on second screen after selecting Bluetooth settings -->
    <string name="bluetooth">Bluetooth</string>
    <!-- Bluetooth settings screen, check box label when the Bluetooth device can be seen by others -->
    <string name="bluetooth_visibility">Discoverable</string>
    <!-- Bluetooth settings screen,  summary after selecting Discoverable check box -->
    <string name="bluetooth_is_discoverable">Discoverable for <xliff:g id="discoverable_time_period">%1$s</xliff:g> seconds\u2026</string>
    <!-- Bluetooth settings screen, Discoverable checkbox summary text -->
    <string name="bluetooth_not_discoverable">Make device discoverable</string>
    <!-- Bluetooth settings screen, heading above the list of nearby bluetooth devices -->
    <string name="bluetooth_devices">Bluetooth devices</string>
    <!-- Bluetooth settings screen, title for the current bluetooth name setting -->
    <string name="bluetooth_device_name">Device name</string>
    <!-- Bluetooth settings screen, summary text when there isn't a name set (for the name setting) -->
    <string name="bluetooth_name_not_set">No name set, using account name</string>
    <!-- Bluetooth settings screen, menu item to scan for nearby bluetooth devices -->
    <string name="bluetooth_scan_for_devices">Scan for devices</string>
    <!-- Bluetooth settings.  Message for disconnecting from a bluetooth device -->
    <string name="bluetooth_disconnect_blank"><xliff:g id="device_name">%1$s</xliff:g> will be disconnected.</string>
    <!-- Bluetooth settings.  Message when cnonected to a device -->
    <string name="bluetooth_connected">Connected</string>
    <!-- Bluetooth settings.  Message when a device is disconnected -->
    <string name="bluetooth_disconnected">Disconnected</string>
    <!-- Bluetooth settings.  Message when disconnecting from a device -->
    <string name="bluetooth_disconnecting">Disconnecting\u2026</string>
    <!-- Bluetooth settings.  Message when connecting to a device -->
    <string name="bluetooth_connecting">Connecting\u2026</string>
    <!-- Bluetooth settings.  Message when the device state is unknown -->
    <string name="bluetooth_unknown"></string>
    <!--Bluetooth settings screen, summary text under individual Bluetooth devices when not paired yet -->
    <string name="bluetooth_not_connected">Pair with this device</string>
    <!--Bluetooth settings screen, summary text under individual Bluetooth devices when pairing -->
    <string name="bluetooth_pairing">Pairing\u2026</string>
    <!--Bluetooth settings screen, summary text under individual Bluetooth devices when paired with one -->
    <string name="bluetooth_paired">Paired but not connected</string>
    <!--Bluetooth settings screen, summary text under individual Bluetooth devices that are hands free or a headset -->
    <string name="bluetooth_device">handsfree/headset</string>
    <!--Bluetooth settings screen, text that appears in heading bar when scanning for devices -->
    <string name="progress_scanning">Scanning</string>
    <!-- Notification ticker text (shown in the status bar) when a Bluetooth device wants to pair with us -->
    <string name="bluetooth_notif_ticker">Bluetooth pairing request</string>
    <!-- Notification title when a Bluetooth device wants to pair with us -->
    <string name="bluetooth_notif_title">Pairing request</string>
    <!-- Notification message when a Bluetooth device wants to pair with us -->
    <string name="bluetooth_notif_message">Select to pair with\u0020</string>


    <!-- Do not translate. Used for diagnostic screens, precise translation is not necessary -->
    <string name="bluetooth_scan_text">Empty button\u2026</string>
    <!-- Do not translate. Used for diagnostic screens, precise translation is not necessary -->
    <string name="bluetooth_settings_text">Empty button\u2026</string>
    <!-- Do not translate. Used for diagnostic screens, precise translation is not necessary -->
    <string name="bluetooth_enable_text">Empty button\u2026</string>

    <!-- Do not translate. Used for diagnostic screens, precise translation is not necessary -->
    <string name="bluetooth_device_info_connectButton_text">Turn on Bluetooth</string>
    <!-- Do not translate. Used for diagnostic screens, precise translation is not necessary -->
    <string name="bluetooth_device_info_deviceInfo_text"></string>

    <!-- Date & time settings screen title -->
    <string name="date_and_time">Date &amp; time settings</string>
    <!-- Date/time settings.  Summary of the checkbox for choosing between 12 hour time or 24 hour time.  Sample of 12-hour time -->
    <string name="date_time_12_hour_sample">1:00 pm</string>
    <!-- Date/time settings.  Summary of the checkbox for choosing between 12 hour time or 24 hour time.  Sample of 24-hour time -->
    <string name="date_time_24_hour_sample">13:00</string>
    <!-- Title of the dialog for setting the time. -->
    <string name="date_time_changeTime_text">Change time</string>
    <!-- Title of the dialog for setting the date. -->
    <string name="date_time_changeDate_text">Date</string>
    <!-- The title of the activity to pick a time zone. -->
    <string name="choose_timezone">Select time zone</string>
    <!-- Do not translate. Used as the value for a setting. -->
    <string name="default_date_format"><xliff:g id="default_date_format">MM/dd/yyyy</xliff:g></string>

    <!-- Label of preview text when tweaking font size -->
    <string name="display_preview_label">Preview:</string>
    <!-- Label for chosen font size -->
    <string name="display_font_size_label">Font size:</string>

    <!-- Used for diagnostic screens, precise translation is not necessary -->
    <string name="intent_sender_data_label"><xliff:g id="data">Data:</xliff:g></string>
    <!-- Used for diagnostic screens, precise translation is not necessary -->
    <string name="intent_sender_sendbroadcast_text">Send <xliff:g id="broadcast">broadcast</xliff:g></string>
    <!-- Used for diagnostic screens, precise translation is not necessary -->
    <string name="intent_sender_action_label"><xliff:g id="action">Action</xliff:g>:</string>
    <!-- Used for diagnostic screens, precise translation is not necessary -->
    <string name="intent_sender_startactivity_text">Start <xliff:g id="activity">activity</xliff:g></string>
    <!-- Used for diagnostic screens, precise translation is not necessary -->
    <string name="intent_sender_resource_label"><xliff:g id="resource">Resource</xliff:g>: </string>
    <!-- Used for diagnostic screens, precise translation is not necessary -->
    <string name="intent_sender_account_label">Account: </string>

    <!-- HTTP proxy settings. Button to clear the proxy box. -->
    <string name="proxy_clear_text">Clear</string>
    <!-- HTTP proxy settings. The port number label. -->
    <string name="proxy_port_label">Port</string>
    <!-- HTTP proxy settings. The button to restore the defaults. -->
    <string name="proxy_defaultView_text">Restore defaults</string>
    <!-- HTTP proxy settings. The button to save. -->
    <string name="proxy_action_text">Save</string>
    <!-- HTTP proxy settings. The text field for the hostname -->
    <string name="proxy_hostname_label">Hostname</string>
    <!-- HTTP proxy settings. Title if there is an error-->
    <string name="proxy_error">Attention</string>
    <!-- HTTP proxy settings. Button to get rid of error box-->
    <string name="proxy_error_dismiss">OK</string>
    <!-- HTTP proxy settings. The error if the hostname is not valid -->
    <string name="proxy_error_invalid_host">The hostname you typed is not valid.</string>
    <!-- HTTP proxy settings. Error msg -->
    <string name="proxy_error_empty_port">You must complete the port field.</string>
    <!-- HTTP proxy settings. Error msg -->
    <string name="proxy_error_empty_host_set_port">The port field must be empty if the host field is empty.</string>
    <!-- HTTP proxy settings. Error msg -->
    <string name="proxy_error_invalid_port">The port you typed is not valid.</string>

    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_signal_location_label">Location:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_neighboring_location_label">Neighboring CID:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_data_attempts_label">Data attempts:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->

    <string name="radio_info_gprs_service_label">GPRS service:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_roaming_label">Roaming:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_imei_label">IMEI:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_call_redirect_label">Call redirect:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_ppp_resets_label">Number of PPP reset since boot:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_gsm_disconnects_label">GSM disconnects:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_current_network_label">Current network:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_data_successes_label">Data successes:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_ppp_received_label">PPP received:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_gsm_service_label">GSM service:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_signal_strength_label">Signal strength:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_call_status_label">Call status:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_ppp_sent_label">PPP sent:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_radio_resets_label">Radio resets:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_message_waiting_label">Message waiting:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_phone_number_label">Phone number:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_band_mode_label">Select radio band</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_network_type_label">Network type:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_set_perferred_label">Set preferred network type:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_ping_ipaddr">Ping IpAddr:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_ping_hostname">Ping Hostname(www.google.com):</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_http_client_test">HTTP Client test:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_toggle_ciph_label">Toggle ciphering</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="ping_test_label">Run ping test</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_smsc_label">SMSC:</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_smsc_update_label">Update</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_smsc_refresh_label">Refresh</string>
    <!-- Radio Info screen. Label for a status item.  Used for diagnostic info screens, precise translation isn't needed -->
    <string name="radio_info_toggle_dns_check_label">Toggle DNS check</string>

    <!-- Band Mode Selection -->
    <!-- Band mode screen.  Title of activity. -->
    <string name="band_mode_title">Set GSM/UMTS band</string>
    <!-- Band mode screen.  Loading message. -->
    <string name="band_mode_loading">Loading band list\u2026</string>
    <!-- Band mode screen. Button caption to set the bandmode. -->
    <string name="band_mode_set">Set</string>
    <!-- Band mode screen. Status message when unsuccessful. -->
    <string name="band_mode_failed">Unsuccessful</string>
    <!-- Band mode screen. Statusm essage when successful. -->
    <string name="band_mode_succeeded">Successful</string>

    <!-- Instructions after the user changes the mass storage settings -->
    <string name="sdcard_changes_instructions">Changes take effect when USB cable is reconnected</string>
    <!-- Enable USB mass storage mode checkbox title -->
    <string name="sdcard_settings_screen_mass_storage_text">Enable USB mass storage</string>
    <!-- The label for total bytes on SD card -->
    <string name="sdcard_settings_total_bytes_label">Total bytes:</string>
    <!-- Message when there is no SD card present -->
    <string name="sdcard_settings_not_present_status">No SD card</string>
    <!-- Th label for the available (free) sapce on the SD card -->
    <string name="sdcard_settings_available_bytes_label">Available bytes:</string>
    <!-- Message when the SD card is being used by the computer as mass storage -->
    <string name="sdcard_settings_mass_storage_status">SD card is being used as a mass storage device</string>
    <!-- Message when it is safe to remove the SD card -->
    <string name="sdcard_settings_unmounted_status">It is now safe to remove the SD card</string>
    <!-- Error message when the SD card was removed without properly unmounting -->
    <string name="sdcard_settings_bad_removal_status">SD card was removed while still in use!</string>
    <!-- Label for used bytes on the SD card -->
    <string name="sdcard_settings_used_bytes_label">Used bytes:</string>
    <!-- Message when it is scanning the SD card for new files -->
    <string name="sdcard_settings_scanning_status">Scanning SD card for media\u2026</string>
    <!-- Message when the SD card is mounted as read only -->
    <string name="sdcard_settings_read_only_status">SD card mounted read-only</string>

    <!-- SetupWizard strings used by DateTimeSettingsSetupWizard.  The button label for going to the next screen. -->
    <string name="next_label">Next</string>

    <!-- LocalePicker -->
    <!-- Title for the locale picker activity -->
    <string name="language_picker_title">Locale</string>
    <!-- Locale picker screen. Label for choosing the locale -->
    <string name="select_your_language">Select your language</string>

    <!-- The title of the dialog to pick an activity.  This is shown when there are multiple activities that can do a particular action.  For example, suppose you click on the "Share" menu item in the Browser.  Since you can share the webpage URL via many communication methods, this dialog would come up with choices like "Email", "IM", etc.  This is a generic message, and the previous example is a single possible scenario (so please don't assume it's for the browser or anything :) ). -->
    <string name="activity_picker_label">Select activity</string>
    <!-- Do not translate. -->
    <string name="debug_intent_sender_label">Debug intent sender</string>
    <!-- The title of the activity to see random device info. -->
    <string name="device_info_label">Device info</string>
    <!-- The title of the activity to see battery info. -->
    <string name="battery_info_label">Battery info</string>
    <!-- The title of the activity to see battery history. -->
    <string name="battery_history_label">Battery history</string>
    <!-- The title of the activity to adjust display settings -->
    <string name="display_label">Display</string>
    <!-- The title of the activity to see phone info -->
    <string name="phone_info_label">Phone info</string>
    <!-- The title of the activity to adjust SD card settings-->
    <string name="sd_card_settings_label">SD card</string>
    <!-- The title of the activity to adjust proxy settings -->
    <string name="proxy_settings_label">Proxy settings</string>

    <!-- ======================================================================================= -->
    <!-- NEW STUFF -->
    <!-- ======================================================================================= -->

    <!-- Button label for generic cancel action -->
    <string name="cancel">Cancel</string>

    <!-- Main Settings screen title -->
    <string name="settings_label">Settings</string>
    <!-- Wireless controls settings screen, setting check box label -->
    <string name="airplane_mode">Airplane mode</string>
    <!-- Wireless controls settings screen, setting option summary text -->
    <string name="airplane_mode_summary">Disable all wireless connections</string>
    <!-- Wireless controls settings screen, setting option summary text as airplane mode is being enabled (so it is disabling all wireless connections)  -->
    <string name="airplane_mode_turning_on">Disabling wireless connections\u2026</string>
    <!-- Wireless controls settings screen, setting option summary text as airplane mode is being disabled (so it is re-enabling all the wireless conenctions) -->
    <string name="airplane_mode_turning_off">Enabling wireless connections\u2026</string>
    <!-- Main Settings screen settings title for things like Wi-Fi, bluetooth, airplane mode.  This will take you to another screen with those settings. -->
    <string name="radio_controls_title">Wireless controls</string>
    <!-- Main Settings screen settings summary text for the "Wireless controls" setting -->
    <string name="radio_controls_summary">Manage Wi-Fi, Bluetooth, airplane mode, &amp; mobile networks</string>


    <!-- mobile network settings screen, setting check box title -->
    <string name="roaming">Data roaming</string>
    <!-- mobile network settings screen, setting option summary text when check box is selected -->
    <string name="roaming_enable">Connect to data services when roaming</string>
    <!-- mobile network settings screen, setting option summary text when check box is clear -->
    <string name="roaming_disable">Connect to data services when roaming</string>
    <!-- mobile network settings screen, dialog message when you are roaming and clear the "Data roaming" check box -->
    <string name="roaming_reenable_message">You have lost data connectivity because you left your home network with data roaming turned off.</string>
    <!-- mobile network settings screen, button on dialog box that appears when you are roaming and clear the "Data roaming" check box -->
    <string name="roaming_turn_it_on_button">Turn it on</string>
    <!-- mobile network settings screen, message in dialog box that appears when you select the "Data roaming" check box -->
    <string name="roaming_warning">Allow data roaming? You may incur significant roaming charges!</string>
    <!-- mobile network settings screen, title of dialog box that appears when you select the "Data roaming" check box -->
    <string name="roaming_reenable_title">Attention</string>
    <!-- mobile network settings screen, setting option name -->
    <string name="networks">Operator selection</string>
    <!-- mobile network settings screen, setting option summary text -->
    <string name="sum_carrier_select">Select a network operator</string>

    <!-- Date and time settings -->
    <!-- Main Settings screen setting option name to go into the date and time settings-->
    <string name="date_and_time_settings_title">Date &amp; time</string>
    <!-- Main Settings screen setting option summary text for the item to go into the date and time settings. -->
    <string name="date_and_time_settings_summary">Set date, time, time zone &amp; formats</string>
    <!-- Date & time setting screen setting check box title if the date and time should be determined automatically -->
    <string name="date_time_auto">Automatic</string>
    <!-- Date & time setting screen setting option summary text when Automatic check box is selected (that is, when date and time should be determined automatically) -->
    <string name="date_time_auto_summaryOn">Use network-provided values</string>
    <!-- Date & time setting screen setting option summary text when Automatic check box is clear -->
    <string name="date_time_auto_summaryOff">Use network-provided values</string>
    <!-- Date & time setting screen setting check box title -->
    <string name="date_time_24hour">Use 24-hour format</string>
    <!-- Date & time setting screen setting option title -->
    <string name="date_time_set_time">Set time</string>
    <!-- Date & time setting screen setting option title -->
    <string name="date_time_set_timezone">Select time zone</string>
    <!-- Date & time setting screen setting option title -->
    <string name="date_time_set_date">Set date</string>
    <!-- Date & time setting screen setting option title.  This setting allows the user to choose how the date should be displayed in apps (what ordering for month and day, etc.) -->
    <string name="date_time_date_format">Select date format</string>
    <!-- Menu item on Select time zone screen -->
    <string name="zone_list_menu_sort_alphabetically">Sort alphabetically</string>
    <!-- Menu item on Select time zone screen -->
    <string name="zone_list_menu_sort_by_timezone">Sort by time zone</string>

    <!-- Main Settings screen setting option title for the item to take you the security and location screen -->
    <string name="security_settings_title">Security &amp; location</string>
    <!-- Main Settings screen setting option summary text for the item tot ake you to the security and location screen -->
    <string name="security_settings_summary">Set My Location, screen unlock, SIM card lock</string>
    <!-- In the security screen, the header title for settings related to  Passwords-->
    <string name="security_passwords_title">Passwords</string>

    <!-- Bluetooth settings -->
    <!-- Bluetooth settings check box title on Main Settings screen -->
    <string name="bluetooth_quick_toggle_title">Bluetooth</string>
    <!-- Bluetooth settings check box summary for turning on bluetooth -->
    <string name="bluetooth_quick_toggle_summary">Turn on Bluetooth</string>
    <!--Used as title on second screen after selecting Bluetooth settings -->
    <string name="bluetooth_settings">Bluetooth settings</string>
    <!--Wireless controls screen, settings title for the item to take you to the bluetooth settings screen -->
    <string name="bluetooth_settings_title">Bluetooth settings</string>
    <!--Wireless controls screen, settings summary for the item tot ake you to the bluetooth settings screen -->
    <string name="bluetooth_settings_summary">Manage connections, set device name &amp; discoverability</string>

    <!-- Title for the dialog to enter PIN.  -->
    <string name="bluetooth_pin_entry">Bluetooth pairing request</string>
    <!-- Title for the bluetooth device info screen. -->
    <string name="bluetooth_device_info">Bluetooth device info</string>
    <!-- Message when bluetooth dialog for pin entry is shwoing -->
    <string name="bluetooth_enter_pin_msg"><xliff:g id="device_name">%1$s</xliff:g>\n\nType PIN to pair.\n(Try 0000 or 1234.)</string>

    <!-- Title for BT error dialogs. -->
    <string name="bluetooth_error_title">Attention</string>
    <!-- Message for the error dialog when BT pairing fails generically. -->
    <string name="bluetooth_pairing_error_message">There was a problem pairing with <xliff:g id="device_name">%1$s</xliff:g>.</string> 
    <!-- Message for the error dialog when BT pairing fails because the PIN entered is incorrect. -->
    <string name="bluetooth_pairing_pin_error_message">There was a problem pairing with <xliff:g id="device_name">%1$s</xliff:g> because the typed PIN is incorrect.</string> 
    <!-- Message for the error dialog when BT pairing fails because the other device is down. -->
    <string name="bluetooth_pairing_device_down_error_message">Cannot establish communication with <xliff:g id="device_name">%1$s</xliff:g>.</string>
    <!-- Message for the error dialog when BT pairing fails because the other device rejected the pairing. -->
    <string name="bluetooth_pairing_rejected_error_message">Pairing rejected by <xliff:g id="device_name">%1$s</xliff:g>.</string>

    <!-- Message for the error dialog when BT connecting operation fails generically. -->
    <string name="bluetooth_connecting_error_message">There was a problem connecting to <xliff:g id="device_name">%1$s</xliff:g>.</string> 

    <!-- Do not translate -->
    <string name="bluetooth_device_info_alias">Device alias</string>
    <!-- Do not translate -->
    <string name="bluetooth_device_info_no_alias">Type alias here\u2026</string>
    <!-- Do not translate -->
    <string name="bluetooth_device_info_delete">Remove this device</string>
    <!-- Do not translate -->
    <string name="bluetooth_device_info_sdp">List supported services</string>

    <!-- Bluetooth settings: The title of the preference (list item) that initiates a scan for devices -->
    <string name="bluetooth_preference_scan_title">Scan for devices</string>
    
    <!-- Bluetooth settings.  Context menu item for a device.  Action will connect to all profiles on the device. -->
    <string name="bluetooth_device_context_connect">Connect</string>
    <!-- Bluetooth settings.  Context menu item for a device.  Action will disconnect from all profiles on the device. -->
    <string name="bluetooth_device_context_disconnect">Disconnect</string>
    <!-- Bluetooth settings.  Context menu item for a device.  Action will first pair, and then connect to all profiles on the device. -->
    <string name="bluetooth_device_context_pair_connect">Pair &amp; connect</string>
    <!-- Bluetooth settings.  Context menu item for a device.  Action will remove pairing with the device. -->
    <string name="bluetooth_device_context_unpair">Unpair</string>
    <!-- Bluetooth settings.  Context menu item for a device.  Action will disconnect and remove pairing with the device. -->
    <string name="bluetooth_device_context_disconnect_unpair">Disconnect &amp; unpair</string>
    <!-- Bluetooth settings.  Context menu item for a device.  Action will take the user to another screen where they can choose exactly which profiles to connect to. -->
    <string name="bluetooth_device_context_connect_advanced">Options\u2026</string>    
    
    <!-- Bluetooth settings.  The title of the screen to pick which profiles to connect to on the device.  For example, headphones may have both A2DP and headset, this allows the user to choose which one he wants to connect to. -->
    <string name="bluetooth_connect_specific_profiles_title">Connect to\u2026</string>

    <!-- Bluetooth settings.  The user-visible string that is used whenever referring to the A2DP profile. -->
    <string name="bluetooth_profile_a2dp">Media</string>
    <!-- Bluetooth settings.  The user-visible string that is used whenever referring to the headset or handsfree profile. -->
    <string name="bluetooth_profile_headset">Phone</string>

    <!-- Bluetooth settings.  The summary string when a device is connected to the A2DP profile. -->
    <string name="bluetooth_summary_connected_to_a2dp">Connected to media audio</string>
    <!-- Bluetooth settings.  The summary string when a device is connected to the headset profile. -->
    <string name="bluetooth_summary_connected_to_headset">Connected to phone audio</string>
    <!-- Bluetooth settings.  The summary string when a device is connected to the A2DP and headset profiles. -->
    <string name="bluetooth_summary_connected_to_a2dp_headset">Connected to phone and media audio</string>

    <!-- Bluetooth settings.  Connection options screen.  The title of the screen. -->
    <string name="bluetooth_device_advanced_title"><xliff:g id="device_name">%1$s</xliff:g> options</string>
    <!-- Bluetooth settings.  Connection options screen.  The title of the checkbox that controls whether the device is in "online" mode or "offline" mode.  This essentially is the checkbox that controls whether any checks / unchecks on a profile should be applied immediately, or next time the device is connected. -->
    <string name="bluetooth_device_advanced_online_mode_title">Connect</string>
    <!-- Bluetooth settings.  Connection options screen.  The summary of the online mode checkbox.  This describes what the setting does in the context of the screen. -->
    <string name="bluetooth_device_advanced_online_mode_summary">Connect to Bluetooth device</string>
    <!-- Bluetooth settings.  Connection options screen.  The title of the header that is above all of the profiles. -->
    <string name="bluetooth_device_advanced_profile_header_title">Profiles</string>
    <!-- Bluetooth settings.  Connection options screen.  The summary for the A2DP checkbox preference when A2DP is connected. -->
    <string name="bluetooth_a2dp_profile_summary_connected">Connected to media audio</string>
    <!-- Bluetooth settings.  Connection options screen.  The summary for the headset checkbox preference when headset is connected. -->
    <string name="bluetooth_headset_profile_summary_connected">Connected to phone audio</string>

    <!-- Bluetooth settings.  Connection options screen.  The summary for the A2DP checkbox preference that describes how checking it will set the A2DP profile as preferred. -->
    <string name="bluetooth_a2dp_profile_summary_use_for">Use for media audio</string>
    <!-- Bluetooth settings.  Connection options screen.  The summary for the headset checkbox preference that describes how checking it will set the headset profile as preferred. -->
    <string name="bluetooth_headset_profile_summary_use_for">Use for phone audio</string>

    <!-- Wi-Fi settings -->
    <!-- Used in the 2nd-level settings screen to turn on Wi-Fi -->
    <string name="wifi">Wi-Fi</string>
    <!-- Used in the 1st-level settings screen to turn on Wi-Fi -->
    <string name="wifi_quick_toggle_title">Wi-Fi</string>
    <!-- Used in the 1st-level settings screen as the turn-on summary -->
    <string name="wifi_quick_toggle_summary">Turn on Wi-Fi</string>
    <!-- Used in the 1st-level settings screen to go to the 2nd-level settings screen -->
    <string name="wifi_settings">Wi-Fi settings</string>
    <!-- Title of the Wi-fi settings screen -->
    <string name="wifi_settings_category">Wi-Fi settings</string>
    <!--Wireless controls setting screen, Wi-Fi settings summary text -->
    <string name="wifi_settings_summary">Set up &amp; manage wireless access points</string>
    <!-- Button caption to forget a wifi network -->
    <string name="forget_network">Forget</string>
    <!-- Label for status of connection -->
    <string name="wifi_status">Status</string>
    <!-- Label for link speed (wifi) -->
    <string name="wifi_link_speed">Speed</string>
    <!-- Verbose wifi signal strength.  This is the best out of 4 levels. -->
    <string name="wifi_signal_3">Excellent</string>
    <!-- Verbose wifi signal strength.  This is the 2nd best out of 4 levels. -->
    <string name="wifi_signal_2">Good</string>
    <!-- Verbose wifi signal strength.  This is the 3rd best out of 4 levels. -->
    <string name="wifi_signal_1">Fair</string>
    <!-- Verbose wifi signal strength.  This is the worst out of 4 levels. -->
    <string name="wifi_signal_0">Poor</string>
    <!-- Label for the security of a wifi network -->
    <string name="security">Security</string>
    <!-- Value for the wifi security.  This means no encryption. -->
    <string name="wifi_security_open">Open</string>
    <!-- Value for the wifi security -->
    <string name="wifi_security_wep">WEP</string>
    <!-- Value for the wifi security -->
    <string name="wifi_security_wpa">WPA</string>
    <!-- Value for the wifi security -->
    <string name="wifi_security_wpa2">WPA2</string>
    <!-- Value for the wifi security -->
    <string name="wifi_security_wpa_eap">WPA-EAP</string>
    <!-- Value for the wifi security -->
    <string name="wifi_security_ieee8021x">IEEE8021X</string>

    <!-- Value for the wifi security when it is unknown -->
    <string name="wifi_security_unknown">Unknown</string>
    <!-- Verbose security type of a wifi network.  Open means no security. -->
    <string name="wifi_security_verbose_open">Open network</string>
    <!-- Verbose security type of a wifi network.  -->
    <string name="wifi_security_verbose_wep">Secured with WEP</string>
    <!-- Verbose security type of a wifi network.  -->
    <string name="wifi_security_verbose_wpa">Secured with WPA</string>
    <!-- Verbose security type of a wifi network.  -->
    <string name="wifi_security_verbose_wpa2">Secured with WPA2</string>
    <!-- Verbose security type of a wifi network.  -->
    <string name="wifi_security_verbose_wpa_eap">Secured with WPA-EAP</string>
    <!-- Verbose security type of a wifi network.  -->
    <string name="wifi_security_verbose_ieee8021x">Secured with IEEE 802.1x</string>
    <!-- Wi-Fi IP addrress label -->    
    <string name="ip_address">IP address</string>
    <!-- Label for the signal strength -->
    <string name="signal">Signal strength</string>
    <!--Wireless controls setting screen, Wi-Fi check box summary text when turning Wi-Fi on -->
    <string name="wifi_starting">Turning on\u2026</string>
    <!--Wireless controls setting screen, Wi-Fi check box summary text when turning Wi-Fi off -->
    <string name="wifi_stopping">Turning off\u2026</string>
    <!-- Generic error message , probably not used-->
    <string name="wifi_error">Error</string>
    <!-- Error message when Wi-Fi can't start -->
    <string name="error_starting">Unable to start Wi-Fi</string>
    <!-- Error message when Wi-Fi can't stop -->
    <string name="error_stopping">Unable to stop Wi-Fi</string>
    <!-- Error message when Wi-Fi can't scan for networks -->
    <string name="error_scanning">Unable to scan for networks</string>
    <!-- Error message when Wi-Fi can't connect -->
    <string name="error_connecting">Unable to connect to the network</string>
    <!-- Error message when Wi-Fi can't save the network -->
    <string name="error_saving">Unable to save the network</string>
    <!-- Button label to connect to a wifi network-->
    <string name="connect">Connect</string>
    <!-- Dialog title for when the user is trying to connect to a particular network-->
    <string name="connect_to_blank">Connect to <xliff:g id="network_name">%1$s</xliff:g></string>
    <!-- Caption for the eap method -->
    <string name="please_select_eap">EAP method</string>
    <!-- Caption for the phase2 -->
    <string name="please_select_phase2">Phase 2 authentication</string>
    <!-- Caption for the identity -->
    <string name="please_type_identity">Identity</string>
    <!-- Caption for the anonymous_identity -->
    <string name="please_type_anonymous_identity">Anonymous identity</string>
    <!-- Caption for the client_certificate -->
    <string name="please_select_client_certificate">Client certificate</string>
    <!-- Caption for the ca certificate -->
    <string name="please_select_ca_certificate">CA certificate</string>
    <!-- Caption for the Private Key -->
    <string name="please_select_private_key">Private key</string>
    <!-- Caption for the private key passwd -->
    <string name="please_type_private_key_passwd">Private key password</string>
    <!-- Caption for the wireless password -->
    <string name="please_type_passphrase">Wireless password</string>
    <!--Wi-Fi settings screen, connect to network dialog box, field label and hint text -->
    <string name="please_type_hex_key">WEP hex key (0-9, A-F)</string>
    <!--Wi-Fi settings screen, connect to network dialog box, check box label -->
    <string name="wifi_show_password">Show password.</string>
    <!--Wi-Fi settings screen menu option -->
    <string name="scan_wifi">Scan</string>
    <!-- Wifi network summary when not in nearby -->
    <string name="summary_not_in_range">Not in range</string>
    <!-- Wifi network summary when the network is configured previously -->
    <string name="summary_remembered">Remembered</string>
    <!-- Wifi network summary when there was an error connecting -->
    <string name="summary_connection_failed">Connection unsuccessful, select to try again</string>
    <!-- Header for the list of wifi networks-->
    <string name="wifi_access_points">Wi-Fi networks</string>
    <!-- Caption for entering the SSID of a wifi network -->
    <string name="wifi_type_ssid">Network SSID</string>
    <!-- The label for security -->
    <string name="wifi_security">Security</string>
    <!-- Button caption to save a configuration wifi -->
    <string name="wifi_save_config">Save</string>
    <!-- An edit field's grayed out value when it has not been modified -->
    <string name="wifi_password_unchanged">(unchanged)</string>
    <!-- Action message to add a wifi network -->
    <string name="wifi_add_other_network">Add Wi-Fi network</string>
    <!-- Checkbox title for option to notify user when open networks are nearby -->
    <string name="wifi_notify_open_networks">Network notification</string>
    <!-- Checkbox summary for option to notify user when open networks are nearby -->
    <string name="wifi_notify_open_networks_summary">Notify me when an open network is available</string>
    <!-- This dialog will use the error_title as the title. -->
    <string name="wifi_password_incorrect_error">The network password you typed is not correct. Please try again.</string>
    <!-- Generic error message -->
    <string name="wifi_generic_connection_error">There is a problem connecting to the network. Please try again.</string>
    <!--Wi-Fi settings screen menu option -->
    <string name="wifi_menu_advanced">Advanced</string>
    <!-- Title of the screen to adjust IP settings -->
    <string name="wifi_ip_settings_titlebar">IP settings</string>
    <!-- Menu ietm to save the IP settings -->
    <string name="wifi_ip_settings_menu_save">Save</string>
    <!-- Menu ietm to cancel the IP settings -->
    <string name="wifi_ip_settings_menu_cancel">Cancel</string>
    <!-- Error message if the IP address is not valid -->
    <string name="wifi_ip_settings_invalid_ip">Please type a valid IP address.</string>
    <!-- Checkbox for whether to use a static IP address -->
    <string name="wifi_use_static_ip">Use static IP</string>
    <!-- Label for the IP address -->
    <string name="wifi_ip_address">IP address</string>
    <!-- Label for the DNS (first one) -->
    <string name="wifi_dns1">DNS 1</string>
    <!-- Label for the DNS (second one)-->
    <string name="wifi_dns2">DNS 2</string>
    <!-- Label for the gateway of the network -->
    <string name="wifi_gateway">Gateway</string>
    <!-- Label for the netmask of the network -->
    <string name="wifi_netmask">Netmask</string>
    <!--Wi-Fi settings screen, network context menu item -->
    <string name="wifi_context_menu_connect">Connect to network</string>
    <!--Wi-Fi settings screen, network context menu item -->
    <string name="wifi_context_menu_forget">Forget network</string>
    <!--Wi-Fi settings screen, network context menu item -->
    <string name="wifi_context_menu_change_password">Change password</string>

    <!-- Wi-Fi settings screen, advanced, settings section.  This is a header shown above advanced wifi settings. -->
    <string name="wifi_advanced_titlebar">Advanced</string>
    <!-- Wi-Fi settings screen, setting title for choosing the number of channels to be used -->
    <string name="wifi_setting_num_channels_title">Regulatory domain</string>
    <!-- Wi-Fi settings screen, setting summary for choosing the number of channels to be used -->
    <string name="wifi_setting_num_channels_summary">Set the number of channels to use</string>
    <!-- Wi-Fi settings screen, generic error message when the regulatory domain could not be set. -->
    <string name="wifi_setting_num_channels_error">There was a problem setting the regulatory domain.</string>
    <!-- Wi-Fi settings screen, label to be appended to the count in displaying the list of valid channel counts -->
    <string name="wifi_setting_num_channels_channel_phrase"><xliff:g id="num_channels">%1$d</xliff:g> channels</string>

    <!-- Wi-Fi settings screen, setting title for setting the wifi sleep policy -->
    <string name="wifi_setting_sleep_policy_title">Wi-Fi sleep policy</string>
    <!-- Wi-Fi settings screen, setting summary for setting the wifi sleep policy -->
    <string name="wifi_setting_sleep_policy_summary">Specify when to switch from Wi-Fi to mobile data</string>
    <!-- Wi-Fi settings screen, generic error message when the sleep policy could not be set. -->
    <string name="wifi_setting_sleep_policy_error">There was a problem setting the sleep policy.</string>
    
    <!-- Wi-Fi settings screen, advanced, title of the item to show the Wi-Fi device's MAC address. -->
    <string name="wifi_advanced_mac_address_title">MAC address</string>

    <!-- Status message of Wi-Fi when it is scanning -->
    <string name="fragment_status_scanning">Scanning\u2026</string>
    <!-- Status message of Wi-Fi when it is connecting to a particular network -->
    <string name="fragment_status_connecting">Connecting to <xliff:g id="network_name">%1$s</xliff:g>\u2026</string>
    <!-- Status message of Wi-Fi when it is authenticating with a network -->
    <string name="fragment_status_authenticating">Authenticating with <xliff:g id="network_name">%1$s</xliff:g>\u2026</string>
    <!-- Status message of Wi-Fi when it is obtaining the IP address from a netwrok -->
    <string name="fragment_status_obtaining_ip">Obtaining IP address from <xliff:g id="network_name">%1$s</xliff:g>\u2026</string>
    <!-- Status message of Wi-Fi when it is connect to a network -->
    <string name="fragment_status_connected">Connected to <xliff:g id="network_name">%1$s</xliff:g></string>
    <!-- Status message of Wi-Fi when it is disconnecting from a network -->
    <string name="fragment_status_disconnecting">Disconnecting from <xliff:g id="network_name">%1$s</xliff:g>\u2026</string>
    <!-- Status message of Wi-Fi when it is disconnected from a network-->
    <string name="fragment_status_disconnected">Disconnected</string>
    <!-- Status message of Wi-Fi when it is a failure (connection) -->
    <string name="fragment_status_failed">Unsuccessful</string>

    <!-- Status message of Wi-Fi when it is scanning -->
    <string name="status_scanning">Scanning\u2026</string>
    <!-- Status message of Wi-Fi when it is connecting (but the network is not known right now) -->
    <string name="status_connecting">Connecting\u2026</string>
    <!-- Status message of Wi-Fi when it is authenticating (but the network is not known right now) -->
    <string name="status_authenticating">Authenticating\u2026</string>
    <!--Wi-Fi settings screen, summary text for network when connecting -->
    <string name="status_obtaining_ip">Obtaining address\u2026</string>
    <!--Wi-Fi settings screen, summary text for network when connected -->
    <string name="status_connected">Connected</string>
    <!-- Status message of Wi-Fi when it is disconnecting (but the network is not known right now) -->
    <string name="status_disconnecting">Disconnecting\u2026</string>
    <!-- Status message of Wi-Fi when it is disconnected (but the network is not known right now) -->
    <string name="status_disconnected">Disconnected</string>
    <!-- Status message of Wi-Fi when it is a failure (but the network is not known right now) -->
    <string name="status_failed">Unsuccessful</string>

    <!-- Sound and alerts settings -->
    <!-- Main Settings screen setting option name to go into the sound and display settings screen -->
    <string name="sound_and_display_settings">Sound &amp; display</string>
    <!-- Sound settings screen heading -->
    <string name="sound_settings">Sound settings</string>
    <!-- Main Settings screen setting option summary text for the item to go into the soudn and display settings screen-->
    <string name="sound_and_display_settings_summary">Set ringtones, notifications, screen brightness</string>
    <!-- Sound settings screen, setting option name checkbox -->
    <string name="silent_mode_title">Silent mode</string>
    <!-- Sound settings screen, setting option summary text when going into silent mode.  Media and alarms sounds WILL NOT be silenced in silent mode. -->
    <string name="silent_mode_summary">All sounds except media &amp; alarms are silenced</string>
    <!-- Sound settings screen, setting option summary text when going into silent mode.  Media WILL NOT be silenced in silent mode, but alarms WILL be silenced. -->
    <string name="silent_mode_incl_alarm_summary">All sounds except media are silenced</string>
    <!-- Sound settings screen, setting option name to pick ringtone (a list dialog comes up)-->
    <string name="ringtone_title">Phone ringtone</string>
    <!-- Sound settings screen, setting option summary text -->
    <string name="ringtone_summary">Set your default incoming call ringtone</string>
    <!-- Sound settings screen, setting option name -->
    <string name="ring_volume_title">Ringer volume</string>
    <!-- Sound settings screen, setting option summary text -->
    <string name="ring_volume_summary">Set volume for incoming calls and notifications</string>
    <!-- Sound settings screen, setting option name checkbox -->
    <string name="vibrate_title">Phone vibrate</string>
    <!-- Sound settings screen, setting option summary text -->
    <string name="vibrate_summary">Vibrate phone for incoming calls</string>
    <!-- Sound settings screen, setting option name -->
    <string name="notification_sound_title">Notification ringtone</string>
    <!-- Sound settings screen, setting option summary text -->
    <string name="notification_sound_summary">Set your default notification ringtone</string>
    <!-- Sound settings screen, the title of the volume bar to adjust the incoming call volume -->
    <string name="incoming_call_volume_title">Incoming call volume</string>
    <!-- Sound settings screen, the title of the volume bar to adjust the notification volume -->
    <string name="notification_volume_title">Notification volume</string>
    <!-- Sound settings screen, the caption of the checkbox for having the notification volume be
         the same as the incoming call volume. -->
    <string name="checkbox_notification_same_as_incoming_call">Use incoming call volume for notifications</string>
    <!-- Sound settings screen, setting option title-->
    <string name="notification_sound_dialog_title">Select notification ringtone</string>
    <!-- Sound settings screen, setting option name -->
    <string name="media_volume_title">Media volume</string>
    <!-- Sound settings screen, setting option summary text -->
    <string name="media_volume_summary">Set volume for music and videos</string>
    <!-- Sound settings screen, setting check box label -->
    <string name="dtmf_tone_enable_title">Audible touch tones</string>
    <!-- Sound settings screen, setting option summary text when check box is selected -->
    <string name="dtmf_tone_enable_summary_on">Play tones when using dial pad</string>
    <!-- Sound settings screen, setting option summary text when check box is clear -->
    <string name="dtmf_tone_enable_summary_off">Play tones when using dial pad</string>
    <!-- Sound settings screen, setting check box label -->
    <string name="sound_effects_enable_title">Audible selection</string>
    <!-- Sound settings screen, setting option summary text when check box is selected -->
    <string name="sound_effects_enable_summary_on">Play sound when making screen selection</string>
    <!-- Sound settings screen, setting option summary text when check box is clear -->
    <string name="sound_effects_enable_summary_off">Play sound when making screen selection</string>
    <!-- Sound settings screen, setting check box label -->
    <string name="play_media_notification_sounds_enable_title">SD card notifications</string>
    <!-- Sound settings screen, setting option summary text when check box is selected -->
    <string name="play_media_notification_sounds_enable_summary_on">Play sound for SD card notifications</string>
    <!-- Sound settings screen, setting option summary text when check box is clear -->
    <string name="play_media_notification_sounds_enable_summary_off">Play sound for SD card notifications</string>

    <!-- Main Settings screen setting option name to go into the screen for data sync settings-->
    <string name="sync_settings">Data synchronization</string>
    <!-- Main Settings screen setting option summary text for the itme to go into the screen with data sync settings-->
    <string name="sync_settings_summary">Select which applications are synchronized</string>

    <!-- Main Settings screen, setting option name to go into search settings -->
    <string name="search_settings">Search</string>
    <!-- Main Settings screen, setting option summary to go into search settings -->
    <string name="search_settings_summary">Manage system search, web search and search history</string>

    <!-- Display settings -->
    <!-- Sound & display settings screen, section header for settings related to display -->
    <string name="display_settings">Display settings</string>
    <!-- Sound & display settings screen, animations check box label -->
    <string name="animations_title">Animation</string>
    <!-- Sound & display settings screen, animations option summary text when check box is selected -->
    <string name="animations_summary_on">Show animation when opening &amp; closing windows</string>
    <!-- Sound & display settings screen, animations option summary text when check box is clear -->
    <string name="animations_summary_off">Show animation when opening &amp; closing windows</string>
    <!-- Sound & display settings screen, accelerometer-based rotation check box label -->
    <string name="accelerometer_title">Orientation</string>
    <!-- Sound & display settings screen, accelerometer-based rotation summary text when check box is selected -->
    <string name="accelerometer_summary_on">Switch orientation automatically when rotating phone</string>
    <!-- Sound & display settings screen, accelerometer-based rotation summary text when check box is clear -->
    <string name="accelerometer_summary_off">Switch orientation automatically when rotating phone</string>
    <!-- Sound & display settings screen, setting option name to change brightness -->
    <string name="brightness">Brightness</string>
    <!-- Sound & display settings screen, setting option summary to change brightness -->
    <string name="brightness_summary">Adjust the brightness of the screen</string>
    <!-- Sound & display settings screen, setting option name to change screen timeout -->
    <string name="screen_timeout">Screen timeout</string>
    <!-- Sound & display settings screen, setting option summary to change screen timeout -->
    <string name="screen_timeout_summary">Adjust the delay before the screen automatically turns off</string>

    <!-- Sound & display settings screen, compatibility mode check box label -->
    <string name="compatibility_mode_title">Compatibility Mode</string>
    <!-- Sound & display settings screen, compatibility mode option summary text when check box is selected -->
    <string name="compatibility_mode_summary_on">Run older apps in Compatibility mode. This require rebooting. </string>
    <!-- Sound & display settings screen, compatibility mode option summary text when check box is clear -->
    <string name="compatibility_mode_summary_off">Run older apps in Compatibility mode. This require rebooting. </string>

    <!-- SIM lock settings title -->
    <string name="sim_lock_settings">SIM card lock settings</string>
    <!-- Security & location settings screen, setting option name -->
    <string name="sim_lock_settings_category">Set up SIM card lock</string>
    <!-- Security & location settings screen, section heading for settings related to sim card locking -->
    <string name="sim_lock_settings_title">SIM card lock</string>
    <!-- SIM card lock settings screen, setting check box label -->
    <string name="sim_pin_toggle">Lock SIM card</string>
    <!-- SIM card lock settings screen, setting option summary text when SIM lock check box is selected -->
    <string name="sim_lock_on">Require PIN to use phone</string>
    <!-- SIM card lock settings screen, setting option summary text when SIM lock check box is clear -->
    <string name="sim_lock_off">Require PIN to use phone</string>
    <!-- SIM card lock settings screen, setting option name to change the SIM PIN -->
    <string name="sim_pin_change">Change SIM PIN</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message instruction -->
    <string name="sim_enter_pin">SIM PIN</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message instruction -->
    <string name="sim_enable_sim_lock">Lock SIM card</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message instruction -->
    <string name="sim_disable_sim_lock">Unlock SIM card</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message instruction -->
    <string name="sim_enter_old">Old SIM PIN</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message instruction -->
    <string name="sim_enter_new">New SIM PIN</string>
    <string name="sim_reenter_new">Re-type new PIN</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message instruction -->
    <string name="sim_change_pin">SIM PIN</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message when wrong PIN is entered -->
    <string name="sim_bad_pin">Incorrect PIN!</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message when PINs don't match -->
    <string name="sim_pins_dont_match">PINs don\'t match!</string>
    <!-- SIM card lock settings screen, toast after not entering correct SIM PIN -->
    <string name="sim_change_failed">Unable to change PIN.\nPossibly incorrect PIN.</string>
    <!-- SIM card lock settings screen, SIM PIN dialog message when the entered PIN is correct-->
    <string name="sim_change_succeeded">SIM PIN changed successfully</string>
    <!-- SIM card lock settings screen, toast after not entering correct SIM PIN -->
    <string name="sim_lock_failed">Unable to change SIM card lock state.\nPossibly incorrect PIN.</string>
    <!-- SIM card lock settings screen, SIM PIN dialog button labels: -->
    <string name="sim_enter_ok">OK</string>
    <!-- SIM card lock settings screen, SIM PIN dialog button labels: -->
    <string name="sim_enter_cancel">Cancel</string>

    <!-- Advanced (used for diagnostics) device info activity title -->
    <string name="device_info_settings">Phone status</string>

    <!-- About phone screen, list item title.  Takes the user to the screen for seeing and installing system updates. -->
    <string name="system_update_settings_list_item_title">System updates</string>
    <!-- About phone screen, list item summary.  Takes the user to the screen for seeing and installing system updates. -->
    <string name="system_update_settings_list_item_summary">Check for system updates</string>

    <!-- About phone screen, status item label -->
    <string name="firmware_version">Firmware version</string>
    <!-- About phone screen, status item label-->
    <string name="model_number">Model number</string>
    <!-- About phone screen,  setting option name-->
    <string name="baseband_version">Baseband version</string>
    <!-- About phone screen,  setting option name-->
    <string name="kernel_version">Kernel version</string>
    <!-- About phone screen,  setting option name-->
    <string name="build_number">Build number</string>

    <!-- About phone screen, show when a value of some status item is unavailable. -->
    <string name="device_info_not_available">Not available</string>
    <!-- About phone screen, phone status screen title -->
    <string name="device_status_activity_title">Status</string>
    <!-- About phone screen, title of the item to go into the Phone status screen -->
    <string name="device_status">Status</string>
    <!-- About phone screen, summary of the item to go into the phone status screen -->
    <string name="device_status_summary">IMEI, phone number, signal, etc.</string>
    <!-- Main settings screen item's title to go into the SD card and storage settings screen-->
    <string name="storage_settings_title">SD card &amp; phone storage</string>
    <!-- Main settings screen item's summary for the SD card and storage settings -->
    <string name="storage_settings_summary">Unmount SD card, view available storage</string>
    <!-- Do not translate. About phone, status item title -->
    <string name="status_imei">IMEI</string>
    <!-- Do not translate. About phone, status item title -->
    <string name="status_imei_sv">IMEI SV</string>
    <!-- About phone, status item title.  The phone number of the current device.-->
    <string name="status_number">Phone number</string>
    <!-- About phone, status item title for the type of data phone network we're connected to, for example 3G or Edge or GPRS -->
    <string name="status_network_type">Mobile network type</string>
    <!-- About phone, status item title. The status of data access.  For example, the value may be "Connected" -->
    <string name="status_data_state">Mobile network state</string>
    <!-- About phone, status item title. The status of whether we have service.  for example, the value may be "In service" -->
    <string name="status_service_state">Service state</string>
    <!-- About phone, status item title. The  current cell tower signal strength -->
    <string name="status_signal_strength">Signal strength</string>
    <!-- About phone, status item title, The status for roaming.  For example, the value might be "Not roaming" -->
    <string name="status_roaming">Roaming</string>
    <!-- About phone, status item title. The cell carrier that the user is connected to.  -->
    <string name="status_operator">Network</string>
    <!-- About phone, status item title.  The MAC address of the Wi-Fi network adapter. -->
    <string name="status_wifi_mac_address">Wi-Fi MAC address</string>
    <!-- About phone, status item title.  The bluetooth adapter's hardware address-->
    <string name="status_bt_address">Bluetooth address</string>
    <!-- About phone, status item value if the actual value is not available. -->
    <string name="status_unavailable">Unavailable</string>
    <!-- About phone, status item title.  How long the device has been running since its last reboot. -->
    <string name="status_up_time">Up time</string>
    <!-- About phone, status item title.  How much time the device has had its main CPU awake. -->
    <string name="status_awake_time">Awake time</string>
    <!-- SD card & phone storage settings screen heading. This is displayed above items that pertain to the phone's internal storage  -->
    <string name="internal_memory">Internal phone storage</string>
    <!-- SD card & phone storage settings screen heading. This is displayed above items that pertain to the SD card -->
    <string name="sd_memory">SD card</string>
    <!-- SD card & phone storage settings title. The amount of free space for some storage partition.  For example, this is listed under both the "Internal phone storage" section and the "SD card" section. -->
    <string name="memory_available">Available space</string>
    <!-- SD card & phone storage settings screen heading.  The total amount of storage space for some storage partition.  For example, this is listed under both the "Internal phone storage" section and the "SD card" section -->
    <string name="memory_size">Total space</string>
    <!-- SD card & phone storage settings item title that will result in the phone unmounting the SD card.  This will be done before the user phyiscally removes the SD card from the phone.  Kind of like the "Safely remove" on some operating systems.   -->
    <string name="sd_eject">Unmount SD card</string>
    <!-- SD card & phone storage settings item title that will result in the phone unmounting the SD card.  This will be done before the user phyiscally removes the SD card from the phone.  Kind of like the "Safely remove" on some operating systems.   -->
    <string name="sd_eject_summary">Unmount the SD card for safe removal</string>
    <!-- SD card & phone storage settings item title that will result in the phone formatting the SD card.   -->
    <string name="sd_format">Format SD card</string>
    <!-- SD card & phone storage settings item title that will result in the phone unmounting the SD card.   -->
    <string name="sd_format_summary">Format (erase) the SD card</string>
    <!-- SD card status when it is not available status -->
    <string name="sd_unavailable">Unavailable</string>
    <!-- SD card status when it is mounted as read only  -->
    <string name="read_only">\u0020(Read-only)</string>
    <!-- Phone info screen, section titles: -->
    <string name="battery_status_title">Battery status</string>
    <!-- Phone info screen, section titles: -->
    <string name="battery_level_title">Battery level</string>

    <!-- APN Settings -->
    <!-- APN settings screen title -->
    <string name="apn_settings">APNs</string>
    <!-- Screen title after user selects APNs setting option -->
    <string name="apn_edit">Edit access point</string>
    <!-- Edit access point label summary text when no value has been set -->
    <string name="apn_not_set">&lt;Not set&gt;</string>
    <!-- Edit access point labels: A label the user can give to the APN to allow him to differentiate it from the others -->
    <string name="apn_name">Name</string>
    <!-- Edit access point labels: The actual access point name-->
    <string name="apn_apn">APN</string>
    <!-- Edit access point labels: The addess of the proxy to use for this APN -->
    <string name="apn_http_proxy">Proxy</string>
    <!-- Edit access point labels: The port number of the proxy to use for this APN -->
    <string name="apn_http_port">Port</string>
    <!-- Edit access point labels: The username that will be used when conencting to this APN-->
    <string name="apn_user">Username</string>
    <!-- Edit access point labels: The password that will be used when connecting to this APN -->
    <string name="apn_password">Password</string>
    <!-- Edit access point labels: The server address to conenct to for this APN -->
    <string name="apn_server">Server</string>
    <!-- Edit access point labels: -->
    <string name="apn_mmsc">MMSC</string>
    <!-- Edit access point labels: The proxy to use for MMS (multimedia messages)-->
    <string name="apn_mms_proxy">MMS proxy</string>
    <!-- Edit access point labels: The port on the proxy used for MMS-->
    <string name="apn_mms_port">MMS port</string>
    <!-- Edit access point labels: -->
    <string name="apn_mcc">MCC</string>
    <!-- Edit access point labels: -->
    <string name="apn_mnc">MNC</string>
    <!-- Edit access point labels: The type of APN -->
    <string name="apn_type">APN type</string>
    <!-- Edit access point screen menu option to delete this APN -->
    <string name="menu_delete">Delete APN</string>
    <!-- APNs screen menu option to create a brand spanking new APN -->
    <string name="menu_new">New APN</string>
    <!-- Edit access point screen menu option to save the user's changes for this APN to the persistent storage -->
    <string name="menu_save">Save</string>
    <!-- Edit access point screen menu option to discard the user's changes for this APN -->
    <string name="menu_cancel">Discard</string>
    <!-- APN error dialog title -->
    <string name="error_title">Attention</string>
    <!-- APN error dialog messages: -->
    <string name="error_name_empty">The Name field cannot be empty.</string>
    <!-- APN error dialog messages: -->
    <string name="error_apn_empty">The APN cannot be empty.</string>
    <!-- APN error dialog messages: -->
    <string name="error_mcc_not3">MCC field must be 3 digits.</string>
    <!-- APN error dialog messages: -->
    <string name="error_mnc_not23">MNC field must be 2 or 3 digits.</string>
    <!-- The message of dialog indicated restoring default APN settings in progress -->
    <string name="restore_default_apn">Restoring default APN settings</string>
    <!-- APNs screen menu option to reset default APN settings --> 
    <string name="menu_restore">Reset to default</string>    
    <!-- APNs screen toast message to inform reset default APN settings is completed -->     
    <string name="restore_default_apn_completed">Reset default APN settings completed</string>    

    <!-- Master Clear -->
    <!-- SD card & phone storage settings screen, setting option name under Internal phone storage heading -->
    <string name="master_clear_title">Factory data reset</string>
    <!-- SD card & phone storage settings screen, setting option summary text under Internal phone storage heading -->
    <string name="master_clear_summary">Erases all data on phone</string>
    <!-- SD card & phone storage settings screen, message on screen after user selects Factory data reset -->
    <string name="master_clear_desc">This action will reset the phone to its initial factory state, erasing all data and downloaded applications!</string>
    <!-- SD card & phone storage settings screen, button on screen after user selects Factory data reset -->
    <string name="master_clear_button_text">Reset phone</string>
    <!-- SD card & phone storage settings screen, message on screen after user selects Reset phone button -->
    <string name="master_clear_final_desc">Reset phone, erasing all your data and applications? Action cannot be reversed!</string>
    <!-- SD card & phone storage settings screen, button on screen after user selects Reset phone button -->
    <string name="master_clear_final_button_text">Erase everything</string>
    <!-- Message to draw an unlock pattern before clearing the device -->
    <string name="master_clear_gesture_prompt">Draw your unlock pattern</string>
    <!-- Explanation of drawing unlockp attern to reset phone -->
    <string name="master_clear_gesture_explanation">You must draw your unlock pattern to confirm a phone reset.</string>
    <!-- Master clear failed message -->
    <string name="master_clear_failed">No reset was performed because the System Clear service is not available.</string>

    <!-- Media Format -->
    <!-- SD card & phone storage settings screen, setting option name under Internal phone storage heading -->
    <string name="media_format_title">Format SD card.</string>
    <!-- SD card & phone storage settings screen, setting option summary text under Internal phone storage heading -->
    <string name="media_format_summary">Erases all data on the SD card</string>
    <!-- SD card & phone storage settings screen, message on screen after user selects Factory data reset -->
    <string name="media_format_desc">This action will erase the SD card in the phone. You will lose ALL data on the card!</string>
    <!-- SD card & phone storage settings screen, button on screen after user selects Factory data reset -->
    <string name="media_format_button_text">Format SD card</string>
    <!-- SD card & phone storage settings screen, message on screen after user selects Format media button -->
    <string name="media_format_final_desc">Format SD card, erasing all your media? Action cannot be reversed!</string>
    <!-- SD card & phone storage settings screen, button on screen after user selects Format media button -->
    <string name="media_format_final_button_text">Erase everything</string>
    <!-- Message to draw an unlock pattern before clearing the device -->
    <string name="media_format_gesture_prompt">Draw your unlock pattern</string>
    <!-- Explanation of drawing unlock pattern to format card -->
    <string name="media_format_gesture_explanation">You must draw your unlock pattern to confirm an SD card format.</string>

    <!-- Main settings screen, Call settings title for item to go into the call settings -->
    <string name="call_settings_title">Call settings</string>
    <!-- Main settings screen, Call settings summary for item to go into call settings -->
    <string name="call_settings_summary">Set up voicemail, call forwarding, call waiting, caller ID</string>

    <!-- Wireless controls, item title to go into the network settings -->
    <string name="network_settings_title">Mobile networks</string>
    <!-- Wireless controls, the item summary for the user to go into the network settings -->
    <string name="network_settings_summary">Set options for roaming, networks, APNs</string>

    <!-- Security & location settings screen, section header for settings relating to location -->
    <string name="location_title">My Location sources</string>
    <!-- Security & location settings screen, setting check box label if the user wants to use wireless network-based positioning (cell ID, wifi, etc.) -->
    <string name="location_network_based">Use wireless networks</string>
    <!-- Security & location settings screen, setting summary when Use wireless networks check box is clear -->
    <string name="location_networks_disabled">See location in applications (such as Maps) using wireless networks</string>
    <!-- Security & location settings screen, setting summary when Use wireless networks check box is selected -->
    <string name="location_neighborhood_level">Location determined by Wi-Fi and/or mobile networks</string>
    <!-- Security & location settings screen, setting check box label if the GPS receiver should be enabled -->
    <string name="location_gps">Enable GPS satellites</string>
    <!-- Security & location settings screen, setting summary when Enable GPS satellites check box is selected -->
    <string name="location_street_level">When locating, accurate to street level (deselect to conserve battery)</string>
    <!-- Security & location settings screen, setting summary when Enable GPS satellites check box is clear -->
    <string name="location_gps_disabled">Locate to street-level (requires more battery plus view of sky)</string>
    <!-- Title of warning dialog to user that location information will be logged -->

    <!-- About -->
    <!-- Main settings screen, setting title for the user to go into the About phone screen -->
    <string name="about_settings">About phone</string>
    <!-- Main settings screen, setting summary for the user to go into the About phone screen-->
    <string name="about_settings_summary">View legal info, phone status, software version</string>
    <!-- About phone settings screen, setting option name to go to dialog that shows legal info -->
    <string name="legal_information">Legal information</string>
    <!-- About phone settings screen, setting option name to see a list of contributors -->
    <string name="contributors_title">Contributors</string>
    <!-- Note: this may be replaced by a more-specific title of the activity that will get launched --> <skip />
    <!-- About phone settings screen, setting option name to see copyright-related info -->
    <string name="copyright_title">Copyright</string>
    <!-- Note: this may be replaced by a more-specific title of the activity that will get launched --> <skip />
    <!-- About phone settings screen, setting option name to see licensing info -->
    <string name="license_title">License</string>
    <!-- Note: this may be replaced by a more-specific title of the activity that will get launched --> <skip />
    <!-- About phone settings screen, setting option name to see terms and conditions -->
    <string name="terms_title">Terms and conditions</string>
    <!-- About phone settings screen, running the System Tutorial -->
    <string name="system_tutorial_list_item_title">System Tutorial</string>
    <!-- About phone settings screen, summary of what System Tutorial does -->
    <string name="system_tutorial_list_item_summary">Learn how to use your phone</string>

    <!-- Title for actual Settings license activity. --> <skip />
    <!-- About phone settings, Legal information setting option name and title of dialog box holding license info -->
    <string name="settings_license_activity_title">Open source licenses</string>
    <!-- About phone settings screen, Open source license dialog message when licenses cannot be loaded -->
    <string name="settings_license_activity_unavailable">There is a problem loading the licenses.</string>
    <!-- About phone settings screen, Open source license dialog title until license is fully loaded -->
    <string name="settings_license_activity_loading">Loading\u2026</string>

    <!-- Lock Pattern settings -->
    <!-- Security & location settings screen, header -->
    <string name="lock_settings_title">Screen unlock pattern</string>
    <!-- Security & location settings screen, setting option name -->
    <string name="lockpattern_change_lock_pattern_label">Change unlock pattern</string>
    <!-- Security & location settings screen, change unlock pattern screen instruction when the user chooses "Change unlock pattern".  We first ask the user toe nter the current pattern, and this is the message seen -->
    <string name="lockpattern_need_to_unlock">Confirm saved pattern</string>
    <!-- Do not translate. -->
    <string name="lockpattern_need_to_unlock_footer"></string>
    <!-- Security & location settings screen, change unlock pattern screen instruction if user draws incorrect pattern -->
    <string name="lockpattern_need_to_unlock_wrong">Sorry, try again:</string>
    <!-- Do not translate. -->
    <string name="lockpattern_need_to_unlock_wrong_footer"></string>
    <!-- Security & location settings screen, change unlock pattern screen instruction on top of screen.  This si when they are supposed to draw a new unlock pattern (for example, if they are changing their unlock patterns)..-->
    <string name="lockpattern_recording_intro_header">Draw an unlock pattern</string>
    <!-- Security & location settings screen, change unlock pattern screen hint on bottom of screen.  We are telling them to press the menu button to see more options or help. -->
    <string name="lockpattern_recording_intro_footer">Press Menu for help.</string>
    <!-- Security & location settings screen, change unlock pattern screen instruction on top of screen while drawing pattern -->
    <string name="lockpattern_recording_inprogress">Release finger when done.</string>
    <!-- Security & location settings screen, change unlock pattern screen instruction on top of screen if user doesn't connect enough dots -->
    <string name="lockpattern_recording_incorrect_too_short">Connect at least <xliff:g id="number">%d</xliff:g> dots. Try again:</string>
    <!-- Security & location settings screen, change unlock pattern screen message on top of screen after drawing pattern -->
    <string name="lockpattern_pattern_entered_header">Pattern recorded!</string>
    <!-- Security & location settings screen, change unlock pattern screen instruction on top of screen to confirm pattern -->
    <string name="lockpattern_need_to_confirm">Draw pattern again to confirm:</string>
    <string name="lockpattern_pattern_confirmed_header">Your new unlock pattern:</string>
    <!-- Security & location settings screen, change unlock pattern screen button, on bottom of screen.  After they draw a pattern and release their finger, we display the pattern so they remember.  When they are ready to draw it once again to confirm it, they press this button. -->
    <string name="lockpattern_confirm_button_text">Confirm</string>
    <!-- Security & location settings screen, change unlock pattern screen button, on bottom of screen.  After they draw a pattern and release their finger, we display the pattern so they remember.  If they are nto satisfied with this pattern, they click this button to redraw the pattern. -->
    <string name="lockpattern_restart_button_text">Redraw</string>
    <!-- Security & location settings screen, change unlock pattern screen button, on bottom of screen. If they are supposed to enter their current pattern before being able to draw another one, and they screw up, they hit this button to try again -->
    <string name="lockpattern_retry_button_text">Retry</string>
    <!-- Security & location settings screen, change unlock pattern screen button, on bottom of screen. Once they draw a new pattern and confirm it by drawing it again, they press this button to exit -->
    <string name="lockpattern_continue_button_text">Continue</string>
    <!-- Security & location settings screen, unlock screen activity title -->
    <string name="lockpattern_settings_title">Unlock pattern</string>
    <!-- Security & location settings screen, setting check box title if the unlock pattern MUST be drawn everytime they turn on the screen -->
    <string name="lockpattern_settings_enable_title">Require pattern</string>
    <!-- Security & location settings screen, setting summary for the checkbox "Require pattern" -->
    <string name="lockpattern_settings_enable_summary">Must draw pattern to unlock screen</string>
    <!-- Security & location settings screen, setting check box title. This setting controls whether a visible green line is drawn as the user moves his finger around while drawing the unlock pattern.  If checked, this line is drawn.  If unchecked, there is nothing drawn so the user does not reveal his pattern while he unlocks the phone.-->
    <string name="lockpattern_settings_enable_visible_pattern_title">Use visible pattern</string>
    <!-- Security & location settings screen, setting check box title. This setting controls whether tactile feedback will be produced when the user draws the pattern.-->
    <string name="lockpattern_settings_enable_tactile_feedback_title">Use tactile feedback</string>
    <!-- Security & location settings screen, setting option name when user has never set an unlock pattern -->
    <string name="lockpattern_settings_choose_lock_pattern">Set unlock pattern</string>
    <!-- Security & location settings screen, setting option name when user has previously set an unlock pattern and wants to change to a new pattern -->
    <string name="lockpattern_settings_change_lock_pattern">Change unlock pattern</string>
    <!-- Security & location settings screen, the help instructions (an animation) caption -->
    <string name="lockpattern_settings_help_how_to_record">How to draw an unlock pattern</string>
    <!-- Security & location settings screen, change unlock pattern screen instruction on top of screen after too many incorrect attempts -->
    <string name="lockpattern_too_many_failed_confirmation_attempts_header">Too many incorrect attempts!</string>
    <!-- Security & location settings screen, change unlock pattern screen countdown hint on bottom of screen after too many incorrect attempts -->
    <string name="lockpattern_too_many_failed_confirmation_attempts_footer">Try again in <xliff:g id="number">%d</xliff:g> seconds.</string>

    <!-- ChooseLockPatternTutorial --> <skip />
    <!-- ChooseLockPatternTutorial, button labels: This is to cancel the tutorial -->
    <string name="skip_button_label">Cancel</string>
    <!-- ChooseLockPatternTutorial, button labels: Continue to the next page of the tutorial -->
    <string name="next_button_label">Next</string>
    <!-- ChooseLockPatternTutorial, tutorial screen title -->
    <string name="lock_title">Securing your phone</string>
    <!-- ChooseLockPatternTutorial, tutorial screen text -->
    <string name="lock_intro_message"><font size="17">Protect your phone from unauthorized use by creating a personal screen unlock pattern.
        \n<font height="17">\n</font><b>1</b>\u00A0 On the next screen, watch while an example pattern is drawn.
        \n<font height="17">\n</font><b>2</b>\u00A0 When ready, draw your own personal unlock pattern. Experiment with different patterns but connect at least four dots.
        \n<font height="17">\n</font><b>3</b>\u00A0 Redraw your pattern to confirm.
        \n<font height="17">\n</font><b>Ready to start? Select \u201CNext\u201D</b>.
        \n<font height="3">\n</font>To leave your phone unprotected, select \u201CCancel\u201D.</font>
    </string>    
        
    <!-- ChooseLockPatternExample --> <skip />
    <!-- ChooseLockPatternExample, screen title that shows an example pattern -->
    <string name="lock_example_title">Example pattern</string>
    <!-- ChooseLockPatternExample, screen hint text at bottom of screen. These are instructions and rules for drawing a good patttern -->
    <string name="lock_example_message">Connect at least four dots.\n
        \nSelect \u201CNext\u201D when you\u2019re ready to draw your own pattern.
    </string>

    <!-- Applications Settings --> <skip />
    <!-- Applications settings screen, setting option name for the user to go to the screen to manage installed applications  -->
    <string name="manageapplications_settings_title">Manage applications</string>
    <!-- Applications settings screen, setting option summary for the user to go to the screen to manage installed applications  -->
    <string name="manageapplications_settings_summary">Manage and remove installed applications</string>
    <!-- Applications settings title, on main settings screen. If clicked, the user is taken to a settings screen full of application settings-->
    <string name="applications_settings">Applications</string>
    <!-- Applications settings summary, on main settings screen. The summary for the "Applications" item on the main settings screen. Describes what settings are accessible from the "Applications" screen. -->
    <string name="applications_settings_summary">Manage applications, set up quick launch shortcuts</string>
    <!-- Applications settings screen heading. The header for the Application settings screen. -->
    <string name="applications_settings_header">Application settings</string>
    <!-- Applications settings screen, setting check box title. If checked, the system allows installation of applications that are downloaded from random places, such as web sites.  -->
    <string name="install_applications">Unknown sources</string>
    <!-- Applications settings screen, setting check box summary.  This is the summary for "Unknown sources" checkbox  -->
    <string name="install_unknown_applications">Allow install of non-Market applications</string>
    <!-- Applications settings screen, message text of alert that appears if user selects the "Unknown sources" check box -->
    <string name="install_all_warning">Your phone and personal data are more vulnerable to attack by applications
 from unknown sources. You agree that you are solely responsible for any
 damage to your phone or loss of data that may result from using
 these applications.</string>
    <!-- Manage applications, individual application info screen title. For example, if they click on "Browser" in "Manage applications", the title of the next screen will be this -->
    <string name="application_info_label">Application info</string>
    <!-- Manage applications, individual application info screen, section heading for stuff relating to an app's storage settings. -->
    <string name="storage_label">Storage</string>
    <!-- Manage applications, individual application info screen,  heading for settings related to controlling whether this app is the default for some actions -->
    <string name="auto_launch_label">Launch by default</string>
    <!-- Manage applications, individual application info screen, heading for settings related to the app's permissions. for example, it may list all the permissions the app has. -->
    <string name="permissions_label">Permissions</string>
    <!-- Manage applications, Header name used for cache information -->
    <string name="cache_header_label">Cache</string>
    <!-- Manage applications, text label for button -->
    <string name="clear_cache_btn_text">Clear cache</string>
    <!-- Manage applications, label that appears next to the cache size -->
    <string name="cache_size_label">Cache</string>
    <!-- Manage applications, Header name used for other controls -->
    <string name="controls_label">Controls</string>
    <!-- Manage applications, text label for button to kill / force stop an application -->
    <string name="force_stop">Force stop</string>
    <!-- Manage applications, individual application info screen,label under Storage heading.  The total storage space taken up by this app. -->
    <string name="total_size_label">Total</string>
    <!-- Manage applications, individual application info screen, label under Storage heading. The amount of space taken up by the application itself (for example, the java compield files and things like that) -->
    <string name="application_size_label">Application</string>
    <!-- Manage applications, individual application info screen, label under Storage heading.  The amount of sapce taken up by the app's data (for example, downloaded emails or something like that) -->
    <string name="data_size_label">Data</string>
    <!-- Manage applications, individual application info screen, button label under Storage heading. Button to remove the application from the system. -->
    <string name="uninstall_text">Uninstall</string>
    <!-- Manage applications, individual application info screen, button label under Storage heading. Button to clear all data associated with tis app (for exampel, remove all cached emails for an Email app) -->
    <string name="clear_user_data_text">Clear data</string>
    <!-- Manage applications, restore updated system application to factory version -->
    <string name="app_factory_reset">Factory reset</string>
    <!-- Manage applications, individual application info screen, screen, message text under Launch by default heading. This is present if the app is set as a default for some actions. -->
    <string name="auto_launch_enable_text">You have selected to launch this application by default for some actions.</string>
    <!-- Manage applications, individual application screen, text under Launch by default heading if the app is NOT a default for actions -->
    <string name="auto_launch_disable_text">No defaults set.</string>
    <!-- Manage applications, individual application screen, button label under Launch by default heading.  This is used to clear any default actions that may be assigned to this app.  -->
    <string name="clear_activities">Clear defaults</string>
    <!-- Manage apps, individual app screen, substituted for the application's label when the app's label CAN NOT be determined.-->
    <string name="unknown">Unknown</string>
    <!-- Manage applications screen, menu item.  Sorts all of the apps in the list alphabetically. -->
    <string name="sort_order_alpha">Sort</string>
    <!-- Manage applications screen, menu item. Sorts all of the apps in the list based on their file size.  This is used to uninstall when space is getting low. -->
    <string name="sort_order_size">Sort by size</string>
    <!-- Manage applications screen, individual app screen, button label when the user wants to manage the space taken up by an app. -->
    <string name="manage_space_text">Manage space</string>
    <!-- Text for menu option in ManageApps screen to present various menu options -->
    <string name="filter">Filter</string>
    <!-- Title of dialog for presenting filter options -->
    <string name="filter_dlg_title">Select filter options</string>
    <!-- Text for filter option in ManageApps screen to display all installed
    applications -->
    <string name="filter_apps_all">All</string>
    <!-- Text for filter option in ManageApps screen to display third party 
    applications only -->
    <string name="filter_apps_third_party">Third-party</string>
    <!-- Text for filter option in ManageApps screen to display list of running
    packages only. -->
    <string name="filter_apps_running">Running</string>
    <string name="loading">Loading\u2026</string>
    <!-- Manage app screen, shown when the activity is busy recomputing the size of each app -->
    <string name="recompute_size">Recomputing size\u2026</string>
    <!-- Manage applications, individual application screen, confirmation dialog title. Displays when user selects to "Clear data". -->
    <string name="clear_data_dlg_title">Delete</string>
    <!-- Manage applications, individual application screen, confirmation dialog message. Displays when user selects to "Clear data". It warns the user of the consequences of clearing the data for an app. -->
    <string name="clear_data_dlg_text">All information you\'ve saved in this application will be deleted permanently.</string>
    <!-- Manage applications, individual application screen, confirmation dialog button. Displays when user selects to "Clear data". Goes through with the clearing of the data. -->
    <string name="dlg_ok">OK</string>
    <!-- Manage applications, individual application screen, confirmation dialog button. Displays when user selects to "Clear data". -->
    <string name="dlg_cancel">Cancel</string>
    <!-- Manage applications, individual application dialog box title. Shown when the user somehow got into a state where it wants to manage some app that isn't found. -->
    <string name="app_not_found_dlg_title">Application not found</string>
    <!-- Manage applications, individual application dialog box message. Shown when the user somehow got into a state where it wants to manage some app that isn't found. -->
    <string name="app_not_found_dlg_text"> The application was not
found in the list of installed applications.</string>
    <!-- Manage applications, individual application dialog box message. Shown when there was an error trying to clear the data. -->
    <string name="clear_data_failed">Unable to clear application data.</string>
    <!-- Manage applications, factory reset dialog title for system applications. -->
    <string name="app_factory_reset_dlg_title">Factory reset system app</string>
    <!-- Manage applications, factory reset option dialog text for system applications. -->
    <string name="app_factory_reset_dlg_text">Do you want to fallback to factory version of system application?</string>
    <!-- Manage applications, title for dialog if clear data fails-->
    <string name="clear_failed_dlg_title">Clear data</string>
    <!-- Manage applications, text for dialog if clear data fails-->
    <string name="clear_failed_dlg_text">Failed clearing data for application</string>
    <!-- Manage applications, individual application info screen, text that appears under the "Permissions" heading. This describes the permissions that the application has. -->
    <string name="security_settings_desc">This application can access the following on your phone:</string>
    <string name="computing_size">Computing\u2026</string>
    <string name="invalid_size_value">Unable to compute package size</string>
    <!-- String displayed when list is empty -->
    <string name="empty_list_msg">You do not have any third-party apps installed.</string>
    <!-- Manage applications, version string displayed in app snippet -->
    <string name="version_text">version <xliff:g id="version_num">%1$s</xliff:g></string>

    <!-- Language Settings --> <skip />
    <!-- Title of setting on main settings screen.  This item will take the user to the screen to tweak settings realted to locale and text -->
    <string name="language_settings">Locale &amp; text</string>
    <!-- Summary of setting on main settings screen.  This item will take the user to the screen to tweak settings realted to locale and text -->
    <string name="language_settings_summary">Set locale (language and region), text input and auto-correction options</string>
    <!-- On Text & language settings screen, heading. Inside the "Locale & text" screen, this is the header for settings that are for locale changes. -->
    <string name="language_category">Locale setting</string>
    <!-- On Text & language settings screen, heading. Inside the "Locale & text" screen, this is the header for settings that relate to text (autotext, autoreplace, autocapitalization). -->
    <string name="text_category">Text settings</string>
    <!-- On Text & language settings screen, setting option name. title of the setting to take the user to a screen to select the locale. -->
    <string name="phone_language">Select locale</string>
    <!-- On Text & language settings screen, setting option name. summary of the setting to take the user to a screen to select the locale. -->
    <string name="phone_language_summary">Select language and region</string>
    <!-- On Text & language settings screen, setting option name. title of the setting to enable autoreplace of entered text. auto replace is a feature that will automatically correct mistyped words. -->
    <string name="auto_replace">Auto-replace</string>
    <!-- On Text & language settings screen, setting summary.  This is the summary for the "Auto-replace" setting. -->
    <string name="auto_replace_summary">Correct mistyped words</string>
    <!-- On Text & language settings screen, setting option name.  title of the setting to enable autocapitalization of entered text.  for example, after the user finishes a sentence, the next letter he types will automatically be capitalizated. -->
    <string name="auto_caps">Auto-cap</string>
    <!-- On Text & language settings screen, setting summary. Summary for the Auto-cap setting. -->
    <string name="auto_caps_summary">Capitalize first letter in sentences</string>
    <!-- On Text & language settings screen, setting option name. title of the setting to enable automatic punctuation of entered text.  for example, it will change an entered "youre" to "you're". -->
    <string name="auto_punctuate">Auto-punctuate</string>
    <!-- On Text & language settings screen, category for physical keyboard text entry options. -->
    <string name="hardkeyboard_category">Physical keyboard settings</string>
    <!-- On Text & language settings screen, setting summary for the Auto-punctuate setting. -->
    <string name="auto_punctuate_summary">Press Space key twice to insert \u0022.\u0022</string>
    <!-- On Security & location settings screen, setting check box name. Title of the checkbox to set whether password edit fields will show the most recent character typed and then hide it, or just hide it right away.  By hide, I mean mask it out. -->
    <string name="show_password">Visible passwords</string>
    <!-- On Security & location settings screen, setting check box summary. Summary for the visible passwords setting. -->
    <string name="show_password_summary">Show password as you type</string>
    <!-- Warning message about security implications of enabling an input method, displayed as a dialog
         message when the user selects to enable an IME. -->
    <string name="ime_security_warning">This input method may be able to collect
    all the text you type, including personal data like passwords and credit
    card numbers.  It comes from the application
    <xliff:g id="ime_application_name">%1$s</xliff:g>.
    Enable this input method?</string>
    
    <!-- User dictionary settings --><skip />
    <!-- User dictionary settings, The titlebar text of the User dictionary settings screen. -->
    <string name="user_dict_settings_titlebar">User dictionary</string>
    <!-- User dictionary settings, The title of the list item to go into the User dictionary settings screen. -->
    <string name="user_dict_settings_title">User dictionary</string>
    <!-- User dictionary settings.  The summary of the listem item to go into the User dictionary settings screen. -->
    <string name="user_dict_settings_summary">Add &amp; remove words from user dictionary</string>
    <!-- User dictionary settings. The title of the menu item to add a new word to the user dictionary. -->
    <string name="user_dict_settings_add_menu_title">Add</string>
    <!-- User dictionary settings. The title of the dialog to add a new word to the user dictionary. -->
    <string name="user_dict_settings_add_dialog_title">Add to dictionary</string>
    <!-- User dictionary settings. The title of the dialog to edit an existing word in the user dictionary. -->
    <string name="user_dict_settings_edit_dialog_title">Edit word</string>
    <!-- User dictionary settings. The title of the context menu item to edit the current word -->
    <string name="user_dict_settings_context_menu_edit_title">Edit</string>
    <!-- User dictionary settings. The title of the context menu item to delete the current word -->
    <string name="user_dict_settings_context_menu_delete_title">Delete</string>
    <!-- User dictionary settings. The text to show when there are no user-defined words in the dictionary -->
    <string name="user_dict_settings_empty_text">You do not have any words in the user dictionary. You can add a word through the menu.</string>

    <!-- This is for diagnostics screen. The title of a screen with various items realted to launching screens that will giev the user info. For example, it contains "Phone information" and "Battery information" -->
    <string name="testing">Testing</string>
    <!-- In the Testing screen.  The item title of the activity that shows a bunch of phone-related information.  -->
    <string name="testing_phone_info">Phone information</string>
    <!-- In the Testing screen. The item title of the activity that shows a bunch of battery-related information.  -->
    <string name="testing_battery_info">Battery information</string>
    <!-- In the Testing screen. The item title of the activity that shows a bunch of historical battery-related information.  -->
    <string name="testing_battery_history">Battery history</string>
    <!-- Do not translate. In the Testing screen. The item title of the activity that shows a bunch of SIM-related operations.  -->
    <string name="testing_sim_toolkit">SIM toolkit</string>

    <!-- The title of the item to go into the Quick launch settings. -->
    <string name="quick_launch_title">Quick launch</string>
    <!-- The summary of the item to go into the Quick launch settings. This is a description of what Quick launch offers. -->
    <string name="quick_launch_summary">Set keyboard shortcuts to launch applications</string>
    <!-- On the Quick launch settings screen, title of the item for shortcut letters that are not assigned to an application yet. Quick launch is assigning a global shortcut to launch a specific app. -->
    <string name="quick_launch_assign_application">Assign application</string>
    <!-- On the Quick launch settings screen, summary text for the item of letters that are not assigned. See the quick launch "Assign application" for a description of quick launch -->
    <string name="quick_launch_no_shortcut">No shortcut</string>
    <!-- On the Quick launch settings screen, summary text under the item for each assigned letter.  -->
    <string name="quick_launch_shortcut">Search + <xliff:g id="shortcut_letter">%1$s</xliff:g></string>
    <!-- On the Quick launch settings screen, title of "Clear shortcut" confirmation dialog. This is reached by longpressing an item for a shortcut letter.  This allows the user to clear the assigned applicatino for that shortcut letter. -->
    <string name="quick_launch_clear_dialog_title">Clear</string>
    <!-- On the Quick launch settings screen, message in the "Clear shortcut" confirmation dialog.  See the title for this dialog for more info. -->
    <string name="quick_launch_clear_dialog_message">Your shortcut for <xliff:g id="shortcut_letter">%1$s</xliff:g> (<xliff:g id="application_name">%2$s</xliff:g>) will be cleared.</string>
    <!-- Clear dialog for quick launch setting box button labels: -->
    <string name="quick_launch_clear_ok_button">OK</string>
    <!-- Clear dialog for quick launch setting box button labels: -->
    <string name="quick_launch_clear_cancel_button">Cancel</string>
    <!-- Quick launch screen, when assigning an app to a shortcut, this menu item to show a list of all applications.  -->
    <string name="quick_launch_display_mode_applications">Applications</string>
    <!-- Quick launch screen, when assigning an app to a shortcut, this menu item to show a list of all shortcutable applications -->
    <string name="quick_launch_display_mode_shortcuts">Shortcuts</string>

    <!-- Input methods Settings -->
    <string name="input_methods_settings_title">Text input</string>
    <string name="input_methods_settings_summary">Manage text input options</string>
    <!-- Input Methods Settings localized format string for generating the appropriate "Foo settings" menu label for the Input Method named "Foo" -->
    <string name="input_methods_settings_label_format"><xliff:g id="ime_name">%1$s</xliff:g> settings</string>
    <!-- Summary for on-screen keyboard settings -->
    <string name="onscreen_keyboard_settings_summary">On-screen keyboard settings</string>
    <!-- Title for built-in keyboard settings -->
    <string name="builtin_keyboard_settings_title">Device keyboard</string>
    <!-- Summary for built-in keyboard settings -->
    <string name="builtin_keyboard_settings_summary">Built-in keyboard settings</string>

    <!-- Development Settings.  the title for the item to take the user to Development settings.  Development settings are settings meant for application developers.  -->
    <string name="development_settings_title">Development</string>
    <!-- Development Settings summary.  The summary of the item to take the user to Development settings.  Development settings are settings meant for application developers. -->
    <string name="development_settings_summary">Set options for application development</string>
    <!-- Setting checkbox title for Whether to enable USB debugging support on the phone. -->
    <string name="enable_adb">USB debugging</string>
    <!-- Setting checkbox summary for Whether to enable USB debugging support on the phone -->
    <string name="enable_adb_summary">Debug mode when USB is connected</string>
    <!-- Setting Checkbox title whether to keep the screen on when plugged in to a power source -->
    <string name="keep_screen_on">Stay awake</string>
    <!-- setting Checkbox summary whether to keep the screen on when plugged in  -->
    <string name="keep_screen_on_summary">Screen will never sleep while charging</string>
    <!-- Setting Checkbox title whether to allow mock locations -->
    <string name="allow_mock_location">Allow mock locations</string>
    <!-- setting Checkbox summary whether to allow mock locations  -->
    <string name="allow_mock_location_summary">Allow mock locations</string>

    <!-- Title for the screen that lets the user choose a gadget to add to the home screen
         (or other screens that can host gadgets).  Note to translators: we're still determining
         the final name for Gadgets/Widgets, so please translate both for now. -->
    <string name="gadget_picker_title">Choose gadget</string>
    <!-- Title for the screen that lets the user choose a widget to add to the home screen
         (or other screens that can host widgets).  Note to translators: we're still determining
         the final name for Gadgets/Widgets, so please translate both for now. -->
    <string name="widget_picker_title">Choose widget</string>

    <!-- Used to display "Details for UID 1234" in BatteryHistory -->
    <string name="battery_history_details_for">Details for UID %d</string>

    <!-- Used to name a set of apps that share a user id in BatteryHistory -->
    <string name="battery_history_uid">UID <xliff:g id="user_id">%1$d</xliff:g></string>

    <!-- Used as a title for the network usage details screen in BatteryHistory -->
    <string name="battery_history_network_usage">Network usage details for <xliff:g id="app_name">%1$s</xliff:g>:</string>

    <!-- Used to show the number of bytes received by an app over the network in BatteryHistory -->
    <string name="battery_history_bytes_received">Bytes received: <xliff:g id="bytes">%1$d</xliff:g></string>

    <!-- Used to show the number of bytes sent by an app over the network in BatteryHistory -->
    <string name="battery_history_bytes_sent">Bytes sent: <xliff:g id="bytes">%1$d</xliff:g></string>

    <!-- Used to show the number of bytes sent and received by an app over the network in BatteryHistory -->
    <string name="battery_history_bytes_total">Total bytes: <xliff:g id="bytes">%1$d</xliff:g></string>

    <!-- Used as a title for the cpu usage details screen in BatteryHistory -->
    <string name="battery_history_cpu_usage">CPU usage details for <xliff:g id="app_name">%1$s</xliff:g>:</string>

    <!-- Used to show the time spent in user code for a given app in BatteryHistory -->
    <string name="battery_history_user_time">User time: </string>

    <!-- Used to show the time spent in system code for a given app in BatteryHistory -->
    <string name="battery_history_system_time">System time: </string>

    <!-- Used to show the time spent in user or system code for a given app in BatteryHistory -->
    <string name="battery_history_total_time">Total time: </string>

    <!-- Used to show the number of times an app has been started in BatteryHistory -->
    <string name="battery_history_starts">Starts: <xliff:g id="starts">%1$d</xliff:g></string>

    <!-- Used to show an amount of time in the form "d days, h hours, m minutes, s seconds" in BatteryHistory -->
    <string name="battery_history_days"><xliff:g id="days">%1$d</xliff:g> d, <xliff:g id="hours">%2$d</xliff:g> h, <xliff:g id="minutes">%3$d</xliff:g> m, <xliff:g id="seconds">%4$d</xliff:g> s</string>

    <!-- Used to show an amount of time in the form "h hours, m minutes, s seconds" in BatteryHistory -->
    <string name="battery_history_hours"><xliff:g id="hours">%1$d</xliff:g> h, <xliff:g id="minutes">%2$d</xliff:g> m, <xliff:g id="seconds">%3$d</xliff:g> s</string>

    <!-- Used to show an amount of time in the form "m minutes, s seconds" in BatteryHistory -->
    <string name="battery_history_minutes"><xliff:g id="minutes">%1$d</xliff:g> m, <xliff:g id="seconds">%2$d</xliff:g> s</string>

    <!-- Used to show an amount of time in the form "s seconds" in BatteryHistory -->
    <string name="battery_history_seconds"><xliff:g id="seconds">%1$d</xliff:g> s</string>

    <!-- Used to head a list of packages that share a given user id BatteryHistory -->
    <string name="battery_history_packages_sharing_this_uid">Packages sharing this UID:</string>
    
    <!-- Used when no battery data available in BatteryHistory -->
    <string name="battery_history_no_data">No battery usage data available</string>
        
    <!-- Used for Sensor detail screen in BatteryHistory -->
    <string name="battery_history_sensor">Sensor:</string>
    
    <!-- Used for Wakelock detail screen in BatteryHistory -->
    <string name="battery_history_wakelock">Partial Wakelock:</string>
    
    <!-- Used for Sensor detail screen in BatteryHistory -->
    <string name="battery_history_used_by_packages">Sensor used by packages:</string>
    
    <!-- Used for Sensor detail screen in BatteryHistory -->
    <string name="battery_history_sensor_usage">Used <xliff:g id="count">%1$d</xliff:g> times by <xliff:g id="package">%2$s</xliff:g></string>
    
    <!-- Used for Sensor detail screen in BatteryHistory -->
    <string name="battery_history_sensor_usage_multi">Used <xliff:g id="count">%1$d</xliff:g> times by one of:</string>
    
    <!-- Used for label of awake bar in BatteryHistory -->
    <string name="battery_history_awake_label">Running</string>
    
    <!-- Used for label of screen on bar in BatteryHistory -->
    <string name="battery_history_screen_on_label">Screen on</string>
    
    <!-- Used for label of phone on bar in BatteryHistory -->
    <string name="battery_history_phone_on_label">Phone on</string>
    
    <!-- Used for awake time message in BatteryHistory -->
    <string name="battery_history_awake">Time spent without sleeping:</string>
    
    <!-- Used for Screen on time message in BatteryHistory -->
    <string name="battery_history_screen_on">Time spent with screen on:</string>
    
    <!-- Used for Phone on time message in BatteryHistory -->
    <string name="battery_history_phone_on">Time spent with phone on:</string>
    
    <!-- Used for Screen on time message in BatteryHistory -->
    <string name="battery_history_screen_on_battery">On battery:</string>
    
    <!-- XXX remove? Used for Screen on time message in BatteryHistory -->
    <string name="battery_history_screen_on_plugged">Plugged in:</string>

    <!-- XXX remove? Strings used for displaying usage statistics -->
    <string name="usage_stats_label">Usage statistics</string>
    
    <!-- In the Testing screen. The item title of the activity that shows usage statistics.  -->
    <string name="testing_usage_stats">Usage statistics</string>
    <!-- label for text to indicate sort options -->
    <string name="display_order_text">Sort by:</string>
    <!-- label for application name -->
    <string name="app_name_label">Application</string>
    <!-- label for launch count -->
    <string name="launch_count_label">Count</string>
    <!-- label for usage time -->
    <string name="usage_time_label">Usage time</string>

    <!-- Accessibility settings -->
    <skip/>

    <!-- Settings title for accessibility settings -->
    <string name="accessibility_settings_title">Accessibility</string>
    <!-- Settings summary for accessibility settings -->
    <string name="accessibility_settings_summary">Manage accessibility options</string>
    <!-- Setting Checkbox title for enabling accessibility -->
    <string name="toggle_accessibility_title">Accessibility</string>
    <!-- Setting accessibility services category -->
    <string name="accessibility_services_category">Accessibility services</string>
    <!-- Message for announcing the lack of installed accessibility services. -->
    <string name="no_accessibility_services_summary">No installed accessibility services.</string>
    <!-- Warning message about security implications of enabling an accessibility service,
         displayed as a dialog message when the user selects to enable an accessibility service. -->
    <string name="accessibility_service_security_warning">This accessibility service may be able to collect
        all the text you type, including personal data credit card numbers except passwords.
        It may also log your user interface interactions. It comes from the application
        <xliff:g id="accessibility_service_name">%1$s</xliff:g>. Enable this accessibility service?</string>
    <!-- Warning about disabling accessibility displayed as a dialog message when the user
         selects to disable accessibility. This avoids accidental disabling. -->
    <string name="accessibility_service_disable_warning">Disable accessibility?</string>

    <!-- App Fuel Gauge strings -->
    <skip/>

    <!-- Activity title for App Fuel Gauge summary -->
    <string name="power_usage_summary_title">Battery usage</string>
    <!-- Battery usage since unplugged -->
    <string name="battery_since_unplugged">Battery usage since unplugged</string>
    <!-- Battery usage since user reset the stats -->
    <string name="battery_since_reset">Battery usage since reset</string>
    <!-- CPU awake time title -->
    <string name="awake">Device awake time</string>
    <!-- Wifi on time -->
    <string name="wifi_on_time">WiFi on time</string>
    <!-- Bluetooth on time -->
    <string name="bluetooth_on_time">WiFi on time</string>
    <!-- Application name and battery usage percentage -->
    <string name="usage_name_percent"><xliff:g id="name">%1$s</xliff:g>" - "
            <xliff:g id="percent">%2$s</xliff:g>"%%"</string>

    <!-- Activity title for battery usage details for an app. or power consumer -->
    <string name="details_title">Battery usage details</string>
    <!-- Subtitle for application/subsystem details -->
    <string name="details_subtitle">Usage details</string>
    <!-- Subtitle for possible options -->
    <string name="controls_subtitle">Controls</string>
    <!-- Subtitle for list of packages -->
    <string name="packages_subtitle">Included packages</string>

    <!-- Label for power consumed by the screen -->
    <string name="power_screen">Screen on</string>
    <!-- Label for power consumed by WiFi -->
    <string name="power_wifi">WiFi</string>
    <!-- Label for power consumed by Bluetooth -->
    <string name="power_bluetooth">Bluetooth</string>
    <!-- Label for power consumed by Cell idle -->
    <string name="power_cell">Cell</string>
    <!-- Label for power consumed by Calling -->
    <string name="power_phone">Voice</string>
    <!-- Label for power consumed when Idle -->
    <string name="power_idle">Standby</string>

    <!-- Label for CPU usage time -->
    <string name="usage_type_cpu">CPU total</string>
    <!-- Label for CPU usage in foreground -->
    <string name="usage_type_cpu_foreground">CPU foreground</string>
    <!-- Label for GPU usage time -->
    <string name="usage_type_gps">GPS</string>
    <!-- Label for Phone usage time -->
    <string name="usage_type_phone">Phone</string>
    <!-- Label for Data sent -->
    <string name="usage_type_data_send">Data sent</string>
    <!-- Label for Data received -->
    <string name="usage_type_data_recv">Data received</string>
    <!-- Label for Audio usage time -->
    <string name="usage_type_audio">Audio</string>
    <!-- Label for Video usage time -->
    <string name="usage_type_video">Video</string>
    <!-- Label for On time -->
    <string name="usage_type_on_time">On time</string>
    <!-- Label for force stop action -->
    <string name="battery_action_stop">Force stop</string>
    <!-- Label for app details action -->
    <string name="battery_action_app_details">App details</string>
    <!-- Label for display settings -->
    <string name="battery_action_display">Display settings</string>
    <!-- Label for wifi settings -->
    <string name="battery_action_wifi">WiFi settings</string>
    <!-- Label for bluetooth settings -->
    <string name="battery_action_bluetooth">Bluetooth settings</string>

    <!-- Menu label for viewing battery usage since unplugged -->
    <string name="menu_stats_unplugged">Usage since unplugged</string>
    <!-- Menu label for viewing battery usage total -->
    <string name="menu_stats_total">Usage totals</string>
    <!-- Menu label for refreshing with latest usage numbers -->
    <string name="menu_stats_refresh">Refresh</string>
    
    <!-- Text-To-Speech (TTS) settings --><skip />
    <!-- Title of setting on main settings screen.  This item will take the user to the screen to tweak settings related to the text-to-speech functionality -->
    <string name="tts_settings">Speech synthesis</string>
    <!-- Summary of setting on main settings screen. This item will take the user to the screen to tweak settings related to the text-to-speech functionality  -->
    <string name="tts_settings_summary">Set text-to-speech options</string>
    <!-- Main TTS Settings screen title -->
    <string name="tts_settings_title">Speech synthesizer controls</string>
    <!-- On main TTS Settings screen, title for toggle used to force use of default TTS settings -->
    <string name="use_default_tts_settings_title">Always use my settings</string>
    <!-- On main TTS Settings screen, summary for toggle used to force use of default TTS settings -->
    <string name="use_default_tts_settings_summary">Default settings below override application settings</string>
    <!-- On main TTS Settings screen, section header for default TTS settings -->
    <string name="tts_default_settings_section">Default settings</string>
    <!-- On main TTS Settings screen, in default settings section, setting default speech rate for synthesized voice -->
    <string name="tts_default_rate_title">Speech rate</string>
    <!-- On main TTS Settings screen, summary for default speech rate for synthesized voice -->
    <string name="tts_default_rate_summary">Speed at which the text is spoken</string>
    <!-- On main TTS Settings screen, in default settings section, setting default pitch for synthesized voice -->
    <string name="tts_default_pitch_title">Pitch</string>
    <!-- On main TTS Settings screen, summary for default pitch for synthesized voice -->
    <string name="tts_default_pitch_summary">Affects the tone of the spoken text</string>
    <!-- On main TTS Settings screen, in default settings section, setting default language for synthesized voice -->
    <string name="tts_default_lang_title">Language</string>
    <!-- On main TTS Settings screen, summary for default language for synthesized voice -->
    <string name="tts_default_lang_summary">Sets the language-specific voice for the spoken text</string>

    <!-- Power Control Widget -->
    <string name="gadget_title">Power Control</string>

    <string name="vpn_settings_activity_title">VPN settings</string>

    <string name="vpn_username_colon">User name:</string>
    <string name="vpn_password_colon">Password:</string>
    <string name="vpn_username">User name</string>
    <string name="vpn_password">Password</string>
    <string name="vpn_you_miss_a_field">You missed a field!</string>
    <string name="vpn_please_fill_up">Please fill up \"%s\".</string>

    <string name="vpn_connect_button">Connect</string>
    <string name="vpn_cancel_button">Cancel</string>
    <string name="vpn_yes_button">Yes</string>
    <string name="vpn_no_button">No</string>
    <string name="vpn_back_button">Back</string>
    <string name="vpn_mistake_button">No, it's a mistake</string>

    <string name="vpn_menu_save">Save</string>
    <!-- Edit VPN screen menu option to discard the user's changes for this VPN -->
    <string name="vpn_menu_cancel">Discard</string>
    <string name="vpn_menu_connect">Connect</string>
    <string name="vpn_menu_disconnect">Disconnect</string>
    <string name="vpn_menu_edit">Edit</string>
    <string name="vpn_menu_delete">Delete</string>

    <!-- VPN error dialog title -->
    <string name="vpn_error_title">Attention</string>
    <string name="vpn_error_name_empty">VPN Name cannot be empty.</string>
    <string name="vpn_error_server_name_empty">The Server Name field cannot be empty.</string>
    <string name="vpn_error_duplicate_name">The VPN Name \'%s\' already exists. Find another name.</string>
    <string name="vpn_error_user_certificate_not_selected">Need to select a user certificate.</string>
    <string name="vpn_error_ca_certificate_not_selected">Need to select a CA certificate.</string>
    <string name="vpn_error_userkey_not_selected">Need to select a userkey.</string>
    <string name="vpn_confirm_profile_cancellation">Are you sure you don\'t want to create this profile?</string>
    <string name="vpn_confirm_reconnect">The previous connection attempt failed. Do you want to try again?</string>

    <string name="vpn_add_new_vpn">Add new VPN</string>
    <string name="vpn_edit_title_add">Add new %s VPN</string>
    <string name="vpn_edit_title_edit">Edit %s VPN</string>
    <string name="vpn_type_title">Select VPN type</string>
    <string name="vpns">VPN networks</string>
    <!-- EditTextPreference summary text when no value has been set -->
    <string name="vpn_not_set">Click to set the value</string>
    <!-- EditTextPreference summary text when VPN is connecting -->
    <string name="vpn_connecting">Connecting...</string>
    <!-- EditTextPreference summary text when VPN is disconnecting -->
    <string name="vpn_disconnecting">Disconnecting...</string>
    <!-- EditTextPreference summary text when VPN is connected -->
    <string name="vpn_connected">Connected</string>
    <!-- EditTextPreference summary text when VPN is not connected -->
    <string name="vpn_connect_hint">Select to connect</string>
    <!-- dialog title when asking for username and password -->
    <string name="vpn_connect_to">Connect to</string>

    <string name="vpn_name">VPN Name</string>
    <string name="vpn_name_summary">Give a name to this VPN;</string>

    <string name="vpn_profile_added">'%s' is added</string>
    <string name="vpn_profile_replaced">Changes are made to '%s'</string>

    <string name="vpn_user_certificate_title">User Certificate</string>
    <string name="vpn_ca_certificate_title">CA Certificate</string>
    <string name="vpn_userkey_title">User Key</string>
    <string name="vpn_server_name_title">Server Name</string>
    <string name="vpn_dns_search_list_title">DNS Search List</string>

    <string name="vpn_settings_category">VPN</string>
    <string name="vpn_settings_title">VPN</string>
    <string name="vpn_settings_summary">Set up and manage VPN configurations, connections</string>
</resources>