summaryrefslogtreecommitdiff
path: root/Settings/res/values/strings.xml
blob: c89af6377fd8f3dd29290798f215e5da8f8a5dac (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
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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">

    <!-- Main app title [CHAR LIMIT=40] -->
    <string name="settings_app_name">Settings</string>

    <!-- Leanback Launcher App Title for main Settings app [CHAR LIMIT=40] -->
    <string name="launcher_settings_app_name">Settings</string>

    <!-- Leanback Launcher App Title for Network settings app [CHAR LIMIT=40] -->
    <string name="launcher_network_app_name">Network</string>

    <!-- Leanback Launcher App Title for Restricted Profile app [CHAR LIMIT=40] -->
    <string name="launcher_restricted_profile_app_name">Restricted Profile</string>

    <!-- General use strings -->
    <skip />
    <!-- General string for items such as buttons for confirmation [CHAR LIMIT=30] -->
    <string name="general_action_yes">Yes</string>
    <!-- General string for items such as buttons for rejection [CHAR LIMIT=30] -->
    <string name="general_action_no">No</string>
    <!-- Title for an action which turns a feature on [CHAR LIMIT=30] -->
    <string name="action_on_title">On</string>
    <!-- Title for an action which turns a feature off [CHAR LIMIT=30] -->
    <string name="action_off_title">Off</string>
    <!-- Title for a status description saying that a feature is on [CHAR LIMIT=30] -->
    <string name="action_on_description">On</string>
    <!-- Title for a status description saying that a feature is off [CHAR LIMIT=30] -->
    <string name="action_off_description">Off</string>
    <!-- Title for action which denotes the user agrees [CHAR LIMIT=50] -->
    <string name="agree">Agree</string>
    <!-- Title for action which denotes the user disagrees [CHAR LIMIT=50] -->
    <string name="disagree">Disagree</string>
    <!-- Title indicating a certain setting is enabled [CHAR LIMIT = 30] -->
    <string name="enabled">Enabled</string>
    <!-- Title indicating a certain setting is disabled [CHAR LIMIT = 30] -->
    <string name="disabled">Disabled</string>
    <!-- Title indicating a certain setting is unavailable [CHAR LIMIT = 30] -->
    <string name="unavailable">Unavailable</string>
    <!-- Strings for Dialog allow button [CHAR LIMIT = 30] -->
    <string name="allow">Allow</string>
    <!-- Strings for Dialog deny button [CHAR LIMIT = 30] -->
    <string name="deny">Deny</string>

    <!-- Top level headers -->
    <skip />

    <!-- Header title for suggestions [CHAR LIMIT=50] -->
    <string name="header_category_suggestions">Suggestions</string>
    <!-- Header title for quick settings [CHAR LIMIT=50] -->
    <string name="header_category_quick_settings">Quick Settings</string>
    <!-- Header title for general settings [CHAR LIMIT=50] -->
    <string name="header_category_general_settings">General Settings</string>
    <!-- The talkback message for dismissing suggestion -->
    <string name="dismiss_suggestion">Dismiss the suggestion</string>

    <!-- Title for main screen preference for hotwording [CHAR LIMIT=50] -->
    <string name="hotwording_title">\"OK Google\" detection</string>
    <!-- Summary for main screen preference for hotwording [CHAR LIMIT=50] -->
    <string name="hotwording_summary">Talk to Google Assistant anytime</string>

    <!-- Header title for device [CHAR LIMIT=50] -->
    <string name="header_category_device">Device</string>
    <!-- Header title for preferences [CHAR LIMIT=50] -->
    <string name="header_category_preferences">Preferences</string>
    <!-- Header title for accessories [CHAR LIMIT=50] -->
    <string name="header_category_accessories">Remote &amp; Accessories</string>
    <!-- Header title for personal [CHAR LIMIT=50] -->
    <string name="header_category_personal">Personal</string>

    <!-- Main Fragment Quick Settings Preferences -->
    <skip />
    <!-- Title for main screen quick settings preference for network [CHAR LIMIT=50] -->
    <string name="connect_to_network">Connect to network</string>
    <!-- Title for main screen quick settings preference for add an account -->
    <string name="add_an_account">Add an account</string>

    <!-- Main Fragment General Settings Preferences -->
    <skip />
    <!-- Title for main screen preference for accounts on device [CHAR LIMIT=50] -->
    <string name="accounts_category_title">Accounts &amp; sign-in</string>
    <!-- Summary for main screen preference for accounts on device indicates no account is signed in[CHAR LIMIT=50] -->
    <string name="accounts_category_summary_no_account">No accounts</string>
    <!-- Summary for main screen preference for accounts on device indicates several accounts are signed in[CHAR LIMIT=50] -->
    <string name="accounts_category_summary"> {count, plural,
        =1    {# account}
        other {# accounts}
        }
    </string>
    <!-- Summary for main screen preference for accounts on device slice [CHAR LIMIT=75] -->
    <string name="accounts_slice_summary">Media services, Assistant, Payments</string>
    <!-- Title for main screen preference for network and Internet [CHAR LIMIT=50] -->
    <string name="connectivity_network_category_title">Network &amp; Internet</string>
    <!-- Title for main screen preference for sound [CHAR LIMIT=50] -->
    <string name="sound_category_title">Sound</string>
    <!-- Title for main screen preference for applications [CHAR LIMIT=50] -->
    <string name="applications_category_title">Apps</string>
    <!-- Title for main screen preference for device [CHAR_LIMIT_50] -->
    <string name="device_pref_category_title">Device Preferences</string>
    <!-- Title for main screen preference for accessibilty [CHAR_LIMIT_50] -->
    <string name="accessibility_category_title">Accessibility</string>
    <!-- Title for main screen preference for remote and accessories [CHAR_LIMIT_50] -->
    <string name="remotes_and_accessories_category_title">Remotes &amp; accessories</string>
    <!-- Title for main screen preference for display & sound [CHAR LIMIT=50] -->
    <string name="display_and_sound_category_title">Display &amp; Sound</string>
    <!-- Title for main screen preference for help and feedback [CHAR LIMIT=50] -->
    <string name="help_and_feedback_category_title">Help &amp; Feedback</string>
    <!-- Title for main screen preference for privacy settings [CHAR LIMIT=50] -->
    <string name="privacy_category_title">Privacy</string>
    <!-- Title for device-related privacy settings category [CHAR LIMIT=50] -->
    <string name="privacy_device_settings_category">Device Settings</string>
    <!-- Title for account-related privacy settings category [CHAR LIMIT=50] -->
    <string name="privacy_account_settings_category">Account Settings</string>
    <!-- Title for Google Assistant privacy settings [CHAR LIMIT=50] -->
    <string name="privacy_assistant_settings_title">Google Assistant</string>
    <!-- Title for purchases-related privacy settings [CHAR LIMIT=50] -->
    <string name="privacy_purchases_settings_title">Payment &amp; Purchases</string>
    <!-- Title for application-related privacy settings category [CHAR LIMIT=50] -->
    <string name="privacy_app_settings_category">App Settings</string>
    <!-- Summary for main screen preference for privacy settings [CHAR LIMIT=75] -->
    <string name="privacy_category_summary">Location, Usage &amp; Diagnostics, Ads</string>

    <!-- Account preferences -->
    <skip />
    <!-- Preference which adds an account [CHAR LIMIT=50] -->
    <string name="add_account">Add account</string>
    <!-- Account not found [CHAR LIMIT=50]-->
    <string name="unknown_account">Unknown Account</string>
    <!-- Header for remove account [CHAR LIMIT=50] -->
    <string name="account_header_remove_account">Remove account</string>
    <!-- Sync item label: control sync settings [CHAR LIMIT=100] -->
    <string name="account_sync">Choose synced apps</string>
    <!-- Label for action to sync now [CHAR LIMIT=50] -->
    <string name="sync_now">Sync now</string>
    <!-- Sync status: in progress [CHAR LIMIT=50]-->
    <string name="sync_in_progress">Syncing\u2026</string>
    <!-- Sync status: last synced [CHAR LIMIT=50]-->
    <string name="last_synced">Last synced <xliff:g id="time">%1$s</xliff:g></string>
    <!-- Sync status: disabled [CHAR LIMIT=50] -->
    <string name="sync_disabled">Disabled</string>
    <!-- Remove account item label: remove the account [CHAR LIMIT=30] -->
    <string name="account_remove">Remove account</string>
    <!-- Message posted if removing the account fails. [CHAR LIMIT=NONE] -->
    <string name="account_remove_failed">Can\'t remove account</string>
    <!-- Formatter in AccountSyncSettings for each application we wish to synchronize, e.g. "Sync Calendar" -->
    <string name="sync_item_title"><xliff:g id="authority" example="Calendar">%s</xliff:g></string>
    <!-- Data synchronization settings screen, summary of a sync provider (for example, Gmail) when autosync is off and the user wants to do a one-time sync. -->
    <string name="sync_one_time_sync">Sync now<xliff:g id="last_sync_time">\n%1$s</xliff:g></string>
    <!-- Image description for the sync failed icon. -->
    <string name="sync_failed">Sync failed</string>
    <!-- Animation description for the sync active icon. -->
    <string name="sync_active">Sync active</string>

    <!-- Connectivity preferences -->
    <skip />
    <!-- Preference which manages wifi settings. [CHAR LIMIT=50] -->
    <string name="connectivity_wifi">Wi-Fi</string>
    <!-- Preference which manages ethernet settings. [CHAR LIMIT=50] -->
    <string name="connectivity_ethernet">Ethernet</string>
    <!-- Summary for preference which indicates ethernet is connected. [CHAR LIMIT=50] -->
    <string name="connectivity_summary_ethernet_connected">Ethernet connected</string>
    <!-- Summary for preference which indicates no network is connected. [CHAR LIMIT=50] -->
    <string name="connectivity_summary_no_network_connected">No network connected</string>
    <!-- Summary for preference which indicates wifi is turned off. [CHAR LIMIT=50] -->
    <string name="connectivity_summary_wifi_disabled">Wi-Fi is turned off</string>
    <!-- Title for always scan wifi. [CHAR LIMIT=50] -->
    <string name="wifi_setting_always_scan">Scanning always available</string>
    <!-- Context help for always scan wifi. [CHAR LIMIT=200] -->
    <string name="wifi_setting_always_scan_context">Let Google\'s location
        service and other apps scan for networks, even when Wi-Fi is off
    </string>
    <!-- Always scan wifi content description for talkback mode with
        comma-separated title (wifi_setting_always_scan) and info text
        (wifi_setting_always_scan_context) [CHAR LIMIT=NONE] -->
    <string name="wifi_setting_always_scan_content_description">Scanning
        always available, Let Google\'s location service and other apps scan
        for networks, even when Wi-Fi is off</string>
    <!-- Title for enable wifi. [CHAR LIMIT=50] -->
    <string name="wifi_setting_enable_wifi">Wi-Fi</string>
    <string name="connectivity_hint_message">Connect to network</string>
    <!-- Launch a connectivity diagnostics tool. [CHAR LIMIT=50] -->
    <string name="connectivity_network_diagnostics">Network diagnostics</string>

    <!-- Application preferences -->
    <skip />
    <!-- Title for a section that lists recently used apps [CHAR_LIMIT=50]-->
    <string name="apps_recently_used_category_title">Recently opened apps</string>
    <!-- An item title on the apps screen. If clicked, the user is taken to a screen listing all apps on the device. [CHAR_LIMIT=50]-->
    <string name="apps_see_all_apps">See all apps</string>
    <!-- Title for a section that lets users modify permissions related app settings. [CHAR_LIMIT=50]-->
    <string name="apps_permissions_category_title">Permissions</string>
    <!-- An item title on the privacy and apps screen. If clicked, the user is taken to screen listing Security options. [CHAR_LIMIT=50]-->
    <string name="overlay_security_slice_title"/>
    <!-- An item title on the privacy and apps screen. If clicked, the user is taken to screen listing Update options. [CHAR_LIMIT=50]-->
    <string name="update_slice_title"/>

    <!-- All application preferences -->
    <skip />
    <!-- Title of a settings screen that lists all applications on the device. [CHAR LIMIT= 50] -->
    <string name="all_apps_title">All apps</string>
    <!-- A settings item on the all applications screen. If clicked, it will show all other apps, including system apps (they had previously been hidden). [CHAR LIMIT= 50] -->
    <string name="all_apps_show_system_apps">Show system apps</string>
    <!-- Browse Header for installed apps under all apps settings screen. [CHAR LIMIT=50] -->
    <string name="all_apps_installed">Installed apps</string>
    <!-- Browse Header for system apps under all apps settings screen. [CHAR LIMIT=50] -->
    <string name="all_apps_other">System apps</string>
    <!-- Browse Header for disabled apps under all apps settings screen. [CHAR LIMIT=50] -->
    <string name="all_apps_disabled">Disabled apps</string>

    <!-- Device preferences -->
    <skip />
    <!-- Preference which changes screen saver settings. [CHAR LIMIT=50] -->
    <string name="device_daydream">Screen saver</string>
    <!-- Preference which changes display settings. [CHAR LIMIT=50] -->
    <string name="device_display">Display</string>
    <!-- Title for preference screen controlling display & sound settings. [CHAR LIMIT=50] -->
    <string name="device_display_sound">Display &amp; Sound</string>
    <!-- Title for preference screen controlling sound settings [CHAR LIMIT=50] -->
    <string name="device_sound">Sound</string>
    <!-- Title for preference which controls surround sound passthrough function [CHAR LIMIT=50] -->
    <string name="device_surround_sound">Surround sound</string>
    <!-- Preference and title which changes system sounds settings. [CHAR LIMIT=50] -->
    <string name="device_sound_effects">System sounds</string>
    <!-- Preference which manages apps. [CHAR LIMIT=50] -->
    <string name="device_apps">Applications</string>
    <!-- Preference which shows storage status. [CHAR LIMIT=50] -->
    <string name="device_storage">Storage</string>
    <!-- Preference which shows reset settings. [CHAR LIMIT=50] -->
    <string name="device_reset">Factory reset</string>
    <!-- Preference which manages backup settings. [CHAR LIMIT=50] -->
    <string name="device_backup_restore">Backup &amp; Restore</string>
    <!-- Preference which shows reset options [CHAR LIMIT=50] -->
    <string name="device_factory_reset">Factory data reset</string>
    <!-- Preference which sets the device's display calibration. [CHAR LIMIT=50] -->
    <string name="device_calibration">Calibration</string>
    <!-- Preference which changes energy saver settings. [CHAR LIMIT=50] -->
    <string name="device_energy_saver">Shut-Off Timer</string>
    <!-- Summary of the preference which changes energy saver settings. [CHAR LIMIT=80] -->
    <string name="device_energy_saver_summary">Set timers to turn TV off and save energy</string>
    <!-- Preference which shows internal settings. [CHAR LIMIT=50] -->
    <string name="overlay_internal_slice_title"/>
    <string name="overlay_internal_slice_uri" translatable="false"/>
    <!-- Preference which shows fastpair settings. [CHAR LIMIT=50] -->
    <string name="device_fastpair">Devices</string>
    <string name="fastpair_slice_uri" translatable="false" />

    <!-- Display and sound screen -->
    <skip />
    <!-- Title for preference which when clicked lets the user select surround sound formats. [CHAR LIMIT=50] -->
    <string name="surround_sound_select_formats">Select formats</string>
    <!-- A category title for the settings related to surround sound. [CHAR LIMIT=50] -->
    <string name="surround_sound_category_title">Surround Sound</string>
    <!-- Name of the AC3 surround sound format that is displayed to the user [CHAR LIMIT=50] -->
    <string name="surround_sound_format_ac3">Dolby Digital</string>
    <!-- Name of the E-AC3 surround sound format that is displayed to the user [CHAR LIMIT=50] -->
    <string name="surround_sound_format_e_ac3">Dolby Digital Plus</string>
    <!-- Name of the DTS surround sound format that is displayed to the user [CHAR LIMIT=50] -->
    <string name="surround_sound_format_dts">DTS</string>
    <!-- Name of the DTS-HD surround sound format that is displayed to the user [CHAR LIMIT=50] -->
    <string name="surround_sound_format_dts_hd">DTS-HD</string>
    <!-- Name of the DTS ultra HD surround sound format that is displayed to the user [CHAR LIMIT=50] -->
    <string name="surround_sound_format_dts_uhd">DTS:X</string>
    <!-- Name of the DOLBY_MAT surround sound format that is displayed to the user
        [CHAR LIMIT=50] -->
    <string name="surround_sound_format_dolby_mat">Dolby Atmos with Dolby TrueHD</string>
    <!-- Name of the DOLBY_TRUEHD surround sound format that is displayed to the user
        [CHAR LIMIT=50] -->
    <string name="surround_sound_format_dolby_truehd">Dolby TrueHD</string>
    <!-- Name of the E_AC3_JOC surround sound format that is displayed to the user
        [CHAR LIMIT=50] -->
    <string name="surround_sound_format_e_ac3_joc">Dolby Atmos with Dolby Digital Plus</string>
    <!-- Name of the Dynamic Resolution Adaption sound format that is displayed to the user [CHAR LIMIT=50] -->
    <string name="surround_sound_format_dra">DRA</string>

    <!-- An informational message displayed in the surround sound settings, explaining to the
        user that the auto setting may sometimes cause issues. [CHAR LIMIT=135]-->
    <string name="surround_sound_auto_info">Note: The Automatic option may not work if your device
        does not report its supported formats correctly.</string>
    <!-- Title for a radio button that if selected will cause the device to automatically select
        an appropriate surround sound format. [CHAR LIMIT=165] -->
    <string name="surround_sound_auto_title">Automatic: Enable only the formats that are supported
        by your audio output device
        "</string>
    <!-- Summary for a radio button that if selected will cause the device to automatically select
        an appropriate surround sound format. [CHAR LIMIT=300] -->
    <string name="surround_sound_auto_summary">When selected, the system will allow apps to select
        any sound format that is supported by your device chain. Apps may choose a format that is
        not the highest-quality format.</string>
    <!-- Title for a radio button that if selected will cause the device to never use a surround
       sound format. [CHAR LIMIT=50] -->
    <string name="surround_sound_none_title">None: Never use surround sound</string>
    <!-- Title for a radio button that if selected will allow the user to manually select surround
        sound formats. [CHAR LIMIT=187] -->
    <string name="surround_sound_manual_title">Manual: Selectively enable or disable each format
        supported by this device, regardless of what is supported by your audio output
        device.</string>
    <!-- Summary for a radio button that if selected will allow the user to manually select surround
        sound formats. [CHAR LIMIT=300] -->
    <string name="surround_sound_manual_summary">When selected, you can manually disable sound
        formats that are supported by your device chain that cause problems with playback. Sound
        formats not supported by your device chain can be enabled. In some cases apps may choose a
        format that is not the highest-quality format.</string>
    <!-- Title for warning dialog that is shown when user enables an unsupported surround sound
        format. [CHAR LIMIT=70]-->
    <string name="surround_sound_enable_unsupported_dialog_title">Enabling unsupported sound
        format?</string>
    <!-- Description for warning dialog that is shown when user enables an unsupported surround
        sound format. [CHAR LIMIT=271]-->
    <string name="surround_sound_enable_unsupported_dialog_desc">Your connected audio device does
            not report support for this format. This may cause unexpected behaviours like loud
            noises or pops from your device.</string>
    <!-- Cancel button title for warning dialog that is shown when user enables an unsupported
        surround sound format. [CHAR LIMIT=30]-->
    <string name="surround_sound_enable_unsupported_dialog_cancel">Cancel</string>
    <!-- Ok button title for warning dialog that is shown when user enables an unsupported surround
        sound format. [CHAR LIMIT=50]-->
    <string name="surround_sound_enable_unsupported_dialog_ok">Change anyway</string>
    <!-- Title for supported surround sound section [CHAR LIMIT=50]-->
    <string name="surround_sound_supported_title">SUPPORTED FORMATS</string>
    <!-- Title for unsupported surround sound section [CHAR LIMIT=50]-->
    <string name="surround_sound_unsupported_title">UNSUPPORTED FORMATS</string>
    <!-- Title for surround sound format info section [CHAR LIMIT=50]-->
    <string name="surround_sound_format_info">FORMAT INFO</string>
    <!-- Title for surround sound show format section [CHAR LIMIT=50]-->
    <string name="surround_sound_show_formats">Show formats</string>
    <!-- Title for surround sound hide format section [CHAR LIMIT=50]-->
    <string name="surround_sound_hide_formats">Hide formats</string>
    <!-- Title for surround sound enabled format section [CHAR LIMIT=50]-->
    <string name="surround_sound_enabled_formats">ENABLED FORMATS</string>
    <!-- Title for surround sound disabled format section [CHAR LIMIT=50]-->
    <string name="surround_sound_disabled_formats">DISABLED FORMATS</string>
    <!-- Summary for toast shown on clicking the disabled format preference in Automatic mode
        [CHAR LIMIT=250]-->
    <string name="surround_sound_disabled_format_info_clicked">To enable, change the
        format selection to Manual.</string>
    <!-- Summary for toast shown on clicking the enabled format preference in Automatic mode
        [CHAR LIMIT=250]-->
    <string name="surround_sound_enabled_format_info_clicked">To disable, change the
        format selection to Manual.</string>

    <!-- A category title for the settings related to display. [CHAR LIMIT=50] -->
    <string name="display_category_title">Display</string>
    <!-- Title for preference which when clicked lets the user configure advanced display settings. [CHAR LIMIT=50] -->
    <string name="advanced_display_settings_title">Advanced display settings</string>
    <!-- Title for HDMI-CEC settings entry. [CHAR LIMIT=20] -->
    <string name="hdmi_cec_settings_title">HDMI-CEC</string>
    <!-- Title for preference which when clicked lets the user configure advanced sound settings. [CHAR LIMIT=50] -->
    <string name="advanced_sound_settings_title">Advanced sound settings</string>
    <!-- Title for preference to allow game mode for display. [CHAR LIMIT=50] -->
    <string name="game_mode_title">Allow game mode</string>
    <!-- Title for preference for disabling/enabling HDR conversion. [CHAR LIMIT=120] -->
    <string name="match_content_dynamic_range_title">Match content dynamic range</string>
    <!-- Summary for preference for disabling/enabling HDR conversion. [CHAR LIMIT=500] -->
    <string name="match_content_dynamic_range_summary">When enabling this option, the system will
        switch between different dynamic range formats to match the content. This may cause a black
        screen during a format switch.\n\nClick Advanced Display settings for more dynamic range
        options.
    </string>
    <!-- Title for preference for HDR conversion. [CHAR LIMIT=120] -->
    <string name="preferred_dynamic_range_title">Preferred dynamic range</string>
    <!-- Title for preference for HDR conversion - System-Preferred/Auto. [CHAR LIMIT=120] -->
    <string name="preferred_dynamic_range_selection_system_title">System-preferred conversion
            </string>
    <!-- Description for preference for HDR conversion - System-Preferred/Auto. [CHAR LIMIT=300] -->
    <string name="preferred_dynamic_range_selection_system_desc">Let\'s the system manage the format
        conversion
    </string>
    <!-- Summary for preference for HDR conversion - System-Preferred/Auto. [CHAR LIMIT=500] -->
    <string name="preferred_dynamic_range_selection_system_summary">When this option is selected,
        the system will determine a suitable dynamic range to be sent to your display and convert
        content to this dynamic range as needed.
    </string>
    <!-- Description for preference for HDR conversion - Passthrough/No conversion. [CHAR LIMIT=300] -->
    <string name="preferred_dynamic_range_selection_passthrough_desc">Always matches content\'s
        format</string>
    <!-- Title for preference for HDR conversion - Force/Manual. [CHAR LIMIT=120] -->
    <string name="preferred_dynamic_range_selection_force_title">Force conversion</string>
    <!-- Description for preference for HDR conversion - Force/Manual. [CHAR LIMIT=300] -->
    <string name="preferred_dynamic_range_selection_force_desc">Forces conversion to preferred
        format</string>
    <!-- Summary for preference for HDR conversion - Force/Manual. [CHAR LIMIT=500] -->
    <string name="preferred_dynamic_range_selection_force_summary">Force conversion to
        a preferred format. Forcing conversion may affect other settings in Display Mode or HDR
        Format.
    </string>
    <!-- Title for preference for SDR conversion in case of force dynamic range. [CHAR LIMIT=120] -->
    <string name="preferred_dynamic_range_selection_force_sdr_title">Always to SDR</string>
    <!-- Title for preference for an HDR conversion in case of force dynamic range. [CHAR LIMIT=120] -->
    <string name="preferred_dynamic_range_selection_force_hdr_title">Always to
        <xliff:g id="hdr_type" example="Dolby Vision">%s</xliff:g></string>
    <!-- Dialog title for HDR conversion in case of force dynamic range. [CHAR LIMIT=120] -->
    <string name="preferred_dynamic_range_force_dialog_title">Do you want to force the HDR
        output?</string>
    <!-- Dialog description for HDR conversion in case of force dynamic range. [CHAR LIMIT=300] -->
    <string name="preferred_dynamic_range_force_dialog_desc">By default the conversion will be
        forced to <xliff:g id="hdr_type" example="Dolby Vision">%s</xliff:g>.</string>
    <!-- Dialog description for HDR conversion in case of force dynamic range. [CHAR LIMIT=300] -->
    <string name="preferred_dynamic_range_force_dialog_desc_4k30_issue">Your display will run at
        1080p 60Hz resolution. This option is not compatible with your display when running at the
        4k 60Hz resolution.</string>
    <!-- Sidebar description indicating that Dolby Vision selection is not allowed because current display mode[CHAR LIMIT=300] -->
    <string name="selection_dolby_vision_not_supported_sidebar">Dolby Vision is not supported at the current
        resolution. If you enable Dolby Vision manually, the resolution of your display will
        be changed to 1080p 60Hz</string>
    <!-- Dialog title for manually enabling Dolby Vision when display does not support it[CHAR LIMIT=300] -->
    <string name="manual_dolby_vision_format_on_4k60_title">Change resolution to 1080p 60Hz?</string>
    <!-- Title for preference for HDR conversion force [CHAR LIMIT=200] -->
    <string name="dynamic_range_selection_force_dv_title">Always force conversion to Dolby Vision
    </string>
    <!-- Summary for preference for HDR conversion force - DV [CHAR LIMIT=500] -->
    <string name="dynamic_range_selection_force_dv_summary">If Dolby Vision is disabled in HDR
        Formats in the Advanced Display Settings, forcing conversion to Dolby Vision will re-enable
        it.
    </string>
    <!-- Title for preference for HDR conversion force - HDR 10[CHAR LIMIT=200] -->
    <string name="dynamic_range_selection_force_hdr10_title">Always force conversion to HDR10
    </string>
    <!-- Summary for preference for HDR conversion force - HDR 10 [CHAR LIMIT=500] -->
    <string name="dynamic_range_selection_force_hdr10_summary">If HDR10 is disabled in HDR
        Formats in the Advanced Display Settings, forcing conversion to HDR10 will re-enable it.
    </string>
    <!-- Title for preference for HDR conversion force - HLG [CHAR LIMIT=200] -->
    <string name="dynamic_range_selection_force_hlg_title">Always force conversion to HLG
    </string>
    <!-- Summary for preference for HDR conversion force - HLG [CHAR LIMIT=500] -->
    <string name="dynamic_range_selection_force_hlg_summary">If HLG is disabled in HDR
        Formats in the Advanced Display Settings, forcing conversion to HLG will re-enable it.
    </string>
    <!-- Title for preference for HDR conversion force - HDR10+ [CHAR LIMIT=200] -->
    <string name="dynamic_range_selection_force_hdr10plus_title">Always force conversion to HDR10+
    </string>
    <!-- Summary for preference for HDR conversion force - DV [CHAR LIMIT=500] -->
    <string name="dynamic_range_selection_force_hdr10plus_summary">If HDR10+ is disabled in HDR
        Formats in the Advanced Display Settings, forcing conversion to HDR10+ will re-enable it.
    </string>
    <!-- Title for preference for HDR conversion force - SDR [CHAR LIMIT=200] -->
    <string name="dynamic_range_selection_force_sdr_title">Always force conversion to SDR
    </string>
    <!-- Summary for preference for HDR conversion force - SRD [CHAR LIMIT=500] -->
    <string name="dynamic_range_selection_force_sdr_summary">Forcing conversion to SDR will disable all
        formats in the HDR Formats in Advanced Display Settings.
    </string>

    <!-- Title for preference for forcing a display's frame
    rate to match the content's frame rate. [CHAR LIMIT=60] -->
    <string name="match_content_frame_rate_title">Match content frame rate</string>
    <!-- Default preference for a display's frame rate to match the content's frame rate. [CHAR LIMIT=80] -->
    <string name="match_content_frame_rate_seamless">Seamless-only</string>
    <!-- Summary for default preference for a display's frame rate to match the content's frame rate. [CHAR LIMIT=250] -->
    <string name="match_content_frame_rate_seamless_summary">If the app requests it, your device
        will match its output to the original frame rate of the content you’re watching,
        ONLY if your TV can perform a seamless transition.  </string>
    <!-- Summary is seamless frame rate switching is not supported on connected display [CHAR LIMIT=250] -->
    <string name="match_content_frame_rate_seamless_not_supported_summary">Your connected display
        does not support seamless refresh rate transitions. This option will have no effect unless
        you change to a display that supports it.</string>
    <!-- Preference to force a display's frame rate to always match the content's frame rate. [CHAR LIMIT=80] -->
    <string name="match_content_frame_rate_non_seamless">Always</string>
    <!-- Summary for preference to force a display's frame rate to always match the content's frame rate. [CHAR LIMIT=250] -->
    <string name="match_content_frame_rate_non_seamless_summary">If the app requests it, your
        device will match its output to the original frame rate of the content you’re watching.
        This may cause your screen to go blank for a second when exiting or entering a video
        playback.</string>
    <!-- Preference to force a display's frame rate to never match the content's frame rate. [CHAR LIMIT=50] -->
    <string name="match_content_frame_rate_never">Never</string>
    <!-- Summary for preference to force a display's frame rate to never match the content's frame rate. [CHAR LIMIT=250] -->
    <string name="match_content_frame_rate_never_summary">Even if the app requests it, your device
        will never try to match its output to the original frame rate of the content you’re
        watching.</string>
    <!-- Title for preference which when clicked lets the user configure text scaling. [CHAR LIMIT=50] -->
    <string name="font_scale_settings_title">Text scaling</string>
    <!-- A title for the section showing the text scaling preview. [CHAR LIMIT=50] -->
    <string name="font_scale_item_detail">Scale to <xliff:g id="scale">%1$d</xliff:g>%%</string>
    <!-- A title for the section showing the text scaling preview. [CHAR LIMIT=50] -->
    <string name="font_scale_sample_text_title">Sample text</string>
    <!-- Title text in sample text used to illustrate how the currently selected font scale will appear to the user. [CHAR LIMIT=50] -->
    <string name="font_scale_preview_text_title"
            translation_description="Translate manually. No not adopt any copyrighted material for translation.">
        The Wonderful Wizard of Oz
    </string>
    <!-- Subtitle for sample text shown in the text scaling preview. [CHAR LIMIT=100] -->
    <string name="font_scale_preview_text_subtitle">Chapter 11: The Wonderful Emerald City of Oz</string>
    <!-- Sample text shown in the text scaling preview. [CHAR LIMIT=NONE] -->
    <string name="font_scale_preview_text_body">
        Even with eyes protected by the green spectacles Dorothy and her friends were at first dazzled by the brilliancy of the wonderful City.
        The streets were lined with beautiful houses all built of green marble and studded everywhere with sparkling emeralds.
        They walked over a pavement of the same green marble, and where the blocks were joined together were rows of emeralds, set closely, and glittering in the brightness of the sun.
        The window panes were of green glass; even the sky above the City had a green tint, and the rays of the sun were green.
        \n\nThere were many people, men, women and children, walking about, and these were all dressed in green clothes and had greenish skins.
        They looked at Dorothy and her strangely assorted company with wondering eyes, and the children all ran away and hid behind their mothers when they saw the Lion; but no one spoke to them.
        Many shops stood in the street, and Dorothy saw that everything in them was green.
        Green candy and green pop-corn were offered for sale, as well as green shoes, green hats and green clothes of all sorts.
        At one place a man was selling green lemonade, and when the children bought it Dorothy could see that they paid for it with green pennies.
        \n\nThere seemed to be no horses nor animals of any kind; the men carried things around in little green carts, which they pushed before them.
        Everyone seemed happy and contented and prosperous.
    </string>

    <!-- Title for preference for HDR format selection. [CHAR LIMIT=50] -->
    <string name="hdr_format_selection_title">Format selection</string>
    <!-- Title for Automatic preference for HDR format selection. [CHAR LIMIT=50] -->
    <string name="hdr_format_selection_auto_title">Automatic</string>
    <!-- Title for Manual preference for HDR format selection. [CHAR LIMIT=50] -->
    <string name="hdr_format_selection_manual_title">Manual</string>
    <!-- Desc for Automatic preference for HDR format selection. [CHAR LIMIT=100] -->
    <string name="hdr_format_selection_auto_desc">Use device reported formats</string>
    <!-- Desc for Manual preference for HDR format selection. [CHAR LIMIT=100] -->
    <string name="hdr_format_selection_manual_desc">Choose formats manually from available
        formats</string>
    <!-- Title for supported HDR format section [CHAR LIMIT=50]-->
    <string name="hdr_format_supported_title">SUPPORTED FORMATS</string>
    <!-- Title for unsupported HDR format [CHAR LIMIT=50]-->
    <string name="hdr_format_unsupported_title">UNSUPPORTED FORMATS</string>
    <!-- Title for HDR format type SDR [CHAR LIMIT=50]-->
    <string name="hdr_format_sdr">SDR</string>
    <!-- Title for HDR format type HDR10 [CHAR LIMIT=50]-->
    <string name="hdr_format_hdr10">HDR10</string>
    <!-- Title for HDR format type HLG [CHAR LIMIT=50]-->
    <string name="hdr_format_hlg">HLG</string>
    <!-- Title for HDR format type HDR10+ [CHAR LIMIT=50]-->
    <string name="hdr_format_hdr10plus">HDR10+</string>
    <!-- Title for HDR format type Dolby Vision [CHAR LIMIT=50]-->
    <string name="hdr_format_dolby_vision">Dolby Vision</string>
    <!-- Summary for a radio button that if selected will cause the device to automatically select
            appropriate HDR formats. [CHAR LIMIT=300] -->
    <string name="hdr_format_selection_auto_summary">When selected, the system will allow apps to
        select any HDR format that is supported by your device chain. Apps may choose a format that
        is not the highest-quality format.</string>
    <!-- Summary for a radio button that if selected will allow the user to manually select HDR
            formats. [CHAR LIMIT=300] -->
    <string name="hdr_format_selection_manual_summary">When selected, you can manually disable HDR
        formats that are supported by your device chain that cause problems with playback. HDR
        formats not supported by your device chain cannot be forcibly enabled. Apps may choose a
        format that is not the highest-quality format.</string>

    <!-- Title for HDR format info section [CHAR LIMIT=50]-->
    <string name="hdr_format_info">FORMAT INFO</string>
    <!-- Title for HDR show format section [CHAR LIMIT=50]-->
    <string name="hdr_show_formats">Show formats</string>
    <!-- Title for HDR hide format section [CHAR LIMIT=50]-->
    <string name="hdr_hide_formats">Hide formats</string>
    <!-- Title for HDR enabled format section [CHAR LIMIT=50]-->
    <string name="hdr_enabled_formats">ENABLED FORMATS</string>
    <!-- Title for HDR disabled format section [CHAR LIMIT=50]-->
    <string name="hdr_disabled_formats">DISABLED FORMATS</string>
    <!-- Summary for toast shown on clicking the enabled format preference in Automatic mode
        [CHAR LIMIT=250]-->
    <string name="hdr_enabled_format_info_clicked">To disable, change the
        format selection to Manual.</string>

    <!-- Title for preference for Resolution selection. [CHAR LIMIT=50] -->
    <string name="resolution_selection_title">Resolution</string>
    <!-- Title for Automatic preference for Resolution selection. [CHAR LIMIT=50] -->
    <string name="resolution_selection_auto_title">Automatic</string>
    <!-- Title for dialog that is shown when user changes the resolution. [CHAR LIMIT=150]-->
    <string name="resolution_selection_dialog_title">Resolution has been changed</string>
    <!-- Title for dialog that is shown when user changes the resolution and Dolby Vision is not
    supported. [CHAR LIMIT=150]-->
    <string name="resolution_selection_with_mode_dialog_title">Change resolution to %1$s?</string>
    <!-- Description for dialog that is shown when user changes the resolution.
        [CHAR LIMIT=300]-->
    <string name="resolution_selection_dialog_desc">Select OK to use %1$s from now on.</string>
    <!-- Description for dialog that is shown when user changes the resolution to a mode that doesn't
        support Dolby Vision.[CHAR LIMIT=300]-->
    <string name="resolution_selection_disabled_dolby_vision_dialog_desc">Dolby Vision is not
        supported at %1$s and will be disabled in \"Advanced Display Settings\"
        </string>
    <!-- Description of resolution mode that is shown on the side panel when user is scrolling
        through resolution modes. It lists all HDR types that this mode supports.
        [CHAR LIMIT=300]-->
    <string name="resolution_hdr_description_info">This mode supports: %1$s\nOn some TVs, you may
        need to turn on Enhanced HDMI to enable more HDR formats. Check your TV settings to see if
        this is supported.</string>
    <!-- Cancel button title for dialog that is shown when user changes the resolution.
        [CHAR LIMIT=30]-->
    <string name="resolution_selection_dialog_cancel">Cancel</string>
    <!-- Ok button title for dialog that is shown when user changes the resolution.
     [CHAR LIMIT=50]-->
    <string name="resolution_selection_dialog_ok">OK</string>
    <!-- Unit of refresh rate Hz. [CHAR LIMIT=15]-->
    <string name="resolution_selection_hz">Hz</string>
    <!-- String for display mode. Example after substitution: 4k (60 Hz) [CHAR LIMIT=100]-->
    <string name="resolution_display_mode">
        <xliff:g id="resolution" example="1080p, 4k etc">%1$s</xliff:g>
        (<xliff:g id="refresh-rate" example="60, 59.94 etc">%2$s</xliff:g> Hz)</string>

    <!-- Title of dialog asking user to confirm before clearing all caches. [CHAR LIMIT=48] -->
    <string name="device_storage_clear_cache_title">Clear cached data?</string>
    <!-- Message of dialog asking user to confirm before clearing all caches. [CHAR LIMIT=48] -->
    <string name="device_storage_clear_cache_message">This will clear cached data for all apps.</string>

    <!-- Title of settings entry for default audio output settings. -->
    <string name="default_audio_output_settings_title" translatable="true"/>
    <string name="default_audio_output_settings_slice_uri" translatable="false"/>

    <!-- Remote and Accessories -->
    <skip />
    <!-- Preference which manages pairing new accessories. [CHAR LIMIT=50] -->
    <string name="accessories_add">Add accessory</string>
    <!-- Device Paring Status: Pairing. [CHAR LIMIT=50] -->
    <string name="accessory_state_pairing">Pairing&#8230;</string>
    <!-- Device Paring Status: Connecting. [CHAR LIMIT=50] -->
    <string name="accessory_state_connecting">Connecting&#8230;</string>
    <!-- Device Paring Status: Error. [CHAR LIMIT=50] -->
    <string name="accessory_state_error">Couldn\'t pair</string>
    <!-- Device Paring Status: Canceled. [CHAR LIMIT=50] -->
    <string name="accessory_state_canceled">Canceled</string>
    <!-- Device Paring Status: Pairing Complete. [CHAR LIMIT=50] -->
    <string name="accessory_state_paired">Paired</string>
    <!-- Preference which manages a single Paired Bluetooth accessory. [CHAR LIMIT=50] -->
    <string name="accessory_options">Accessory</string>
    <!-- Preference for unpairing a Bluetooth accessory[CHAR LIMIT=50] -->
    <string name="accessory_unpair">Unpair</string>
    <!-- Preference for displaying battery level percentage. % symbol if used must be escaped as %% [CHAR LIMIT=150] -->
    <string name="accessory_battery">Battery <xliff:g id="percentage">%1$d</xliff:g>%%</string>
    <!-- Description shown while we are waiting for a device unpair operation to finish[CHAR LIMIT=50] -->
    <string name="accessory_unpairing">Unpairing device&#8230;</string>
    <!-- Description for Connected accessory[CHAR LIMIT=50] -->
    <string name="accessory_connected">Connected</string>
    <!-- Title of preference item for renaming the bluetooth accessory [CHAR LIMIT=50] -->
    <string name="accessory_change_name">Change name</string>
    <!-- Title of dialog for renaming the bluetooth accessory [CHAR LIMIT=50] -->
    <string name="accessory_change_name_title">Enter a new name for this accessory</string>

    <!-- Remote and Accessories -->
    <skip />
    <!-- Title text for new accessories pairing screen used by Talkback. [CHAR LIMIT=50] -->
    <string name="accessories_add_accessibility_title">Bluetooth pairing.</string>
    <!-- Description text for new accessories pairing screen. [CHAR LIMIT=150] -->
    <string name="accessories_add_title">Searching for accessories&#8230;</string>
    <!-- Description text for bluetooth device pairing instructions. [CHAR LIMIT=150] -->
    <string name="accessories_add_bluetooth_inst">Before pairing your Bluetooth devices, make sure they\'re in pairing mode.</string>
    <!-- Extra description text for bluetooth device pairing instructions. It is a placeholder to be overrode. -->
    <string name="accessories_add_bluetooth_inst_extra" translatable="false"/>
    <!-- The extra description is presented with button icons. These two strings can be overrode to be used for describing the pairing buttons for accessibility feature such as Talkback. -->
    <string name="accessories_pairing_button1" translatable="false"/>
    <string name="accessories_pairing_button2" translatable="false"/>
    <!-- Description text for autopairing when the user is in the pairing activity due to pressing the back HW button.  %1 will be replaced with the countdown value. [CHAR LIMIT=150] -->
    <string name="accessories_autopair_msg">A device was found and will automatically pair in <xliff:g id="countdown">%1$s</xliff:g> seconds</string>
    <!-- Error message displayed to the user indicating that a selected action is not supported on this device. [CHAR LIMIT=150] -->
    <string name="error_action_not_supported">This action isn\'t supported</string>

    <!-- Title for the dialog to enter PIN. [CHAR LIMIT=40] -->
    <string name="bluetooth_pairing_request">Bluetooth pairing request</string>
    <!-- Message for confirmation of passkey to complete pairing. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_confirm_passkey_msg">To pair with: &lt;b><xliff:g id="device_name">%1$s</xliff:g>&lt;/b>, make sure it\'s showing this passkey: &lt;b><xliff:g id="passkey">%2$s</xliff:g>&lt;/b></string>
    <!-- Message when bluetooth incoming pairing request for (2.1 devices) dialog is showing [CHAR LIMIT=NONE] -->
    <string name="bluetooth_incoming_pairing_msg">From: &lt;b><xliff:g id="device_name">%1$s</xliff:g>&lt;/b>&lt;br>Pair with this device?</string>
    <!-- Message when bluetooth dialog when passkey or pin needs to be displayed. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_display_passkey_pin_msg">To pair with: &lt;b><xliff:g id="device_name">%1$s</xliff:g>&lt;/b>&lt;br>Type on it: &lt;b><xliff:g id="passkey">%2$s</xliff:g>&lt;/b>, then press Return or Enter.</string>
    <!-- Message when bluetooth dialog for pin entry is showing. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_enter_pin_msg">To pair with: &lt;b><xliff:g id="device_name">%1$s</xliff:g>&lt;/b>, &lt;br>Type the device\'s required PIN:</string>
    <!-- Message when bluetooth dialog for passkey entry is showing. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_enter_passkey_msg">To pair with: &lt;b><xliff:g id="device_name">%1$s</xliff:g>&lt;/b>, &lt;br>Type the device\'s required passkey:</string>
    <!-- Bluetooth PIN hint text (below the text entry box). [CHAR LIMIT=30] -->
    <string name="bluetooth_pin_values_hint">Usually 0000 or 1234</string>

    <!-- Action title for Confirming the Bluetooth secure Pair action [CHAR LIMIT=50] -->
    <string name="bluetooth_pair">Pair</string>
    <!-- Action title for Cancelling the Bluetooth secure Pair action [CHAR LIMIT=50] -->
    <string name="bluetooth_cancel">Cancel</string>

    <!-- Toast message when a bluetooth device is connected. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_device_connected_toast">%1$s connected</string>
    <!-- Toast message when a bluetooth device is disconnected. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_device_disconnected_toast">%1$s disconnected</string>

    <!-- The title for "Remotes & Accessories" Slice [CHAR LIMIT = 50]-->
    <string name="connected_devices_slice_pref_title">Remotes &amp; Accessories</string>
    <!-- The title for the Bluetooth toggle [CHAR LIMIT=20] -->
    <string name="bluetooth_toggle_title">Bluetooth</string>
    <!-- The title for the confirmation dialog when users try to turn off bluetooth.
        [CHAR LIMIT=50]-->
    <string name="bluetooth_toggle_confirmation_dialog_title">Turn off Bluetooth</string>
    <!-- The summary for the confirmation dialog when users try to turn off bluetooth.
        [CHAR LIMIT=240]-->
    <string name="bluetooth_toggle_confirmation_dialog_summary">You will not be able to
        access Google Assistant from your remote while Bluetooth is off.</string>
    <!-- The title on button that starts pairing flow. [CHAR LIMIT=40] -->
    <string name="bluetooth_pair_accessory">Pair accessory</string>
    <!-- The category title for connected/paired accessories. [CHAR LIMIT=30] -->
    <string name="bluetooth_known_devices_category">Accessories</string>
    <!-- Uri to be overlaid by partner to show official remote control settings. -->
    <string name="bluetooth_official_remote_entry_slice_uri" translatable="false" />
    <!-- Category for listing official remote control devices. Can be overlaid by OEM to something
        like "Foobar Remote". -->
    <string name="bluetooth_official_remote_category">Remote Control</string>
    <!-- Title for official remote control settings. Can be overlaid by OEM to something like as
        "Foobar Remote Settings". -->
    <string name="bluetooth_official_remote_entry_title">Remote control settings</string>
    <!-- Uri to be overlaid by partner to show remote control infrared settings. -->
    <string name="bluetooth_ir_entry_slice_uri" translatable="false" />
    <!-- Title for remote control infrared settings. -->
    <string name="bluetooth_ir_entry_title">Set up remote buttons</string>
    <!-- Subtitle for remote control infrared settings. -->
    <string name="bluetooth_ir_entry_subtitle">Control volume, power, input on TVs, receivers and soundbars</string>
    <!-- Text on button that allows users to connect their Bluetooth devices. [CHAR LIMIT=30] -->
    <string name="bluetooth_connect_action_title">Connect</string>
    <!-- Text asking users to confirm connecting their Bluetooth devices. [CHAR LIMIT=40] -->
    <string name="bluetooth_connect_confirm">Connect to %1$s</string>
    <!-- Text on button that allows users to disconnect their Bluetooth devices. [CHAR LIMIT=30] -->
    <string name="bluetooth_disconnect_action_title">Disconnect</string>
    <!-- Text asking users to confirm disconnecting their Bluetooth devices. [CHAR LIMIT=40] -->
    <string name="bluetooth_disconnect_confirm">Disconnect from %1$s</string>
    <!-- Text on button that allows users to rename their Bluetooth devices. [CHAR LIMIT=30] -->
    <string name="bluetooth_rename_action_title">Rename</string>
    <!-- Text shown on Bluetooth devices renaming screen. [CHAR LIMIT=40] -->
    <string name="bluetooth_rename">Rename your connected device</string>
    <!-- Text on button that allows users to forget their Bluetooth devices. [CHAR LIMIT=30] -->
    <string name="bluetooth_forget_action_title">Forget</string>
    <!-- Text asking users to confirm forgetting their Bluetooth devices. [CHAR LIMIT=40] -->
    <string name="bluetooth_forget_confirm">Forget %1$s</string>
    <!-- Text preceded by the bluetooth serial. [CHAR LIMIT=40] -->
    <string name="bluetooth_serial_number_label">Bluetooth address</string>
    <!-- Subtitle showing connected connection status of Bluetooth device. [CHAR LIMIT=40] -->
    <string name="bluetooth_connected_status">Connected</string>
    <!-- Subtitle showing disconnected connection status of Bluetooth device. [CHAR LIMIT=40] -->
    <string name="bluetooth_disconnected_status">Disconnected</string>
    <!-- Bluetooth Settings. text displayed when user has restriction DISALLOW_CONFIG_BLUETOOTH [CHAR LIMIT=NONE]-->
    <string name="bluetooth_empty_list_user_restricted">You don\u2019t have permission to change Bluetooth settings.</string>
    <!-- Text on button that allows users to toggle their Bluetooth device as the active audio output. [CHAR LIMIT=50] -->
    <string name="bluetooth_toggle_active_audio_output_title">Use for TV audio</string>

    <!-- Help and feedback preferences -->
    <skip />
    <!-- Preference which manages sending feedback about an issue. [CHAR LIMIT=50] -->
    <string name="send_feedback">Send feedback</string>
    <!-- Preference which manages launching the help center. [CHAR LIMIT=50] -->
    <string name="launch_help">Help Center</string>

    <!-- System -->
    <skip />
    <!-- Preference which manages cast settings. [CHAR LIMIT=50] -->
    <string name="system_cast">Google Cast</string>
    <!-- Preference which manages date / time settings. [CHAR LIMIT=50] -->
    <string name="system_date_time">Date &amp; Time</string>
    <!-- Preference which manages language settings. [CHAR LIMIT=50] -->
    <string name="system_language">Language</string>
    <!-- Text displayed when user has restriction DISALLOW_CONFIG_LOCALE [CHAR LIMIT=NONE]-->
    <string name="language_empty_list_user_restricted">You don\u2019t have permission to change the device language.</string>
    <!-- Preference which manages input method settings (without autofill), see also system_keyboard_autofill [CHAR LIMIT=50] -->
    <string name="system_keyboard">Keyboard</string>
    <!-- Preference which manages both input method settings and autofill settings. [CHAR LIMIT=50] -->
    <string name="system_keyboard_autofill">Keyboard &amp; autofill</string>
    <!-- Preference which manages autofill Service. [CHAR LIMIT=50] -->
    <string name="system_autofill">Autofill</string>
    <!-- Preference which manages home screen settings. [CHAR LIMIT=50] -->
    <string name="system_home">Home screen</string>
    <!-- Preference which manages search and google now settings. [CHAR LIMIT=50] -->
    <string name="system_search">Search</string>
    <!-- Preference which manages google and assistant settings. [CHAR LIMIT=50] -->
    <string name="system_google">Google</string>
    <!-- Preference which manages security settings. [CHAR LIMIT=50] -->
    <string name="system_security">Security &amp; Restrictions</string>
    <!-- Preference which manages speech recognition settings. [CHAR LIMIT=50] -->
    <string name="system_speech">Speech</string>
    <!-- Preference which manages TV inputs. [CHAR LIMIT=50] -->
    <string name="system_inputs">Inputs</string>
    <!-- Preference which manages TV inputs and devices. [CHAR LIMIT=50] -->
    <string name="system_inputs_devices">Inputs &amp; Devices</string>
    <!-- Preference which manages home theater controls. [CHAR LIMIT=50] -->
    <string name="system_home_theater_control">Home theater control</string>
    <!-- Preference which manages developer options. [CHAR LIMIT=50] -->
    <string name="system_developer_options">Developer options</string>
    <!-- Label for no accessibility color or opacity [CHAR LIMIT=50] -->
    <string name="accessibility_none">None</string>
    <!-- Preference which manages Diagnostic and Usage reporting -->
    <string name="system_diagnostic">Usage &amp; diagnostics</string>
    <string name="cast_settings_title" translatable="false" />
    <string name="cast_settings_slice_uri" translatable="false" />
    <string name="assistant_broadcast_title" translatable="false" />
    <string name="assistant_broadcast_slice_uri" translatable="false" />
    <string name="top_level_assistant_slice_uri" translatable="false" />

    <!-- Message when there are no available device admin apps to display -->
    <string name="no_device_admins">No device admin apps available</string>

    <!-- Summary for settings checkbox to disable widgets when the setting has been disabled by an installed device admin [CHAR LIMIT=50] -->
    <string name="security_enable_widgets_disabled_summary">Disabled by admin</string>

    <!-- Summary for settings preference disabled by administrator [CHAR LIMIT=50] -->
    <string name="disabled_by_administrator_summary">Not available</string>

    <!-- Title of preference to manage device admin apps, which are used by IT admins to manage devices -->
    <string name="manage_device_admin">Device admin apps</string>

    <!-- Summary of preference to manage device admin apps, informing the user that currently no device admin apps are installed and active -->
    <string name="number_of_device_admins_none">No active apps</string>


    <!-- Summary for preference that has been disabled by because of the DevicePolicyAdmin, or because device encryption is enabled, or because there are credentials in the credential storage [CHAR LIMIT=50] -->
    <string name="unlock_set_unlock_disabled_summary">Disabled by admin, encryption policy, or
        credential storage</string>

    <!-- Enterprise Privacy --> <skip />

    <!-- Title of setting on security settings screen. This will take the user to a screen with information about admin powers and their impact on the user's privacy on a managed device. Shown on enterprise-managed devices only. Note: "Device" is singular and refers to the device (e.g. phone or tablet) that the user is holding in their hand. -->
    <string name="enterprise_privacy_settings">Managed device info</string>
    <!-- Summary for Enterprise Privacy settings, explaining what the user can expect to find under it [CHAR LIMIT=NONE]-->
    <string name="enterprise_privacy_settings_summary_generic">Changes &amp; settings managed by your organization</string>
    <!-- Summary for Enterprise Privacy settings, explaining what the user can expect to find under it [CHAR LIMIT=NONE]-->
    <string name="enterprise_privacy_settings_summary_with_name">Changes &amp; settings managed by <xliff:g id="organization_name" example="Foo, Inc.">%s</xliff:g></string>
    <!-- Enterprise Privacy settings activity header, summarizing the powers that the admin has. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_header">To provide access to your work data, your organization may change settings and install software on your device.\n\nFor more details, contact your organization\'s admin.</string>
    <!-- Title for the 'Types of information your organization can see' preference category. [CHAR LIMIT=60] -->
    <string name="enterprise_privacy_exposure_category">Types of information your organization can see</string>
    <!-- Title for the 'Changes made by your organization’s admin' preference category. [CHAR LIMIT=60] -->
    <string name="enterprise_privacy_exposure_changes_category">Changes made by your organization\'s admin</string>
    <!-- Title for the 'Your access to this device' preference category. [CHAR LIMIT=60] -->
    <string name="enterprise_privacy_device_access_category">Your access to this device</string>
    <!-- Label explaining that the admin can see data associated with their work account. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_enterprise_data">Data associated with your work account, such as email and calendar</string>
    <!-- Label explaining that the admin can see apps installed on the device. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_installed_packages">List of apps on your device</string>
    <!-- Label explaining that the admin can see app usage statistics. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_usage_stats">Amount of time and data spent in each app</string>
    <!-- Label explaining that the admin can retrieve network logs on the device. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_network_logs">Most recent network traffic log</string>
    <!-- Label explaining that the admin can request bug reports on the device. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_bug_reports">Most recent bug report</string>
    <!-- Label explaining that the admin can retrieve security on from the device. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_security_logs">Most recent security log</string>
    <!-- Label indicating that the admin never took a given action so far (e.g. did not retrieve security logs or request bug reports). -->
    <string name="enterprise_privacy_none">None</string>
    <!-- Label indicating that the admin installed one or more apps on the device. -->
    <string name="enterprise_privacy_enterprise_installed_packages">Apps installed</string>
    <!-- Label explaining that the number of apps is an estimation. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_apps_count_estimation_info">Number of apps is estimated. It may not include apps installed outside of the Play Store.</string>
    <!-- Summary indicating the number of apps that a label (e.g. installed apps or apps granted a particular permission) refers to. The number shown is a minimum as there may be additional apps we do not know about. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_number_packages_lower_bound"> {count, plural,
        =1    {Minimum # app}
        other {Minimum # apps}
        }
    </string>
    <!-- Label indicating that the admin granted one or more apps access to the device's location. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_location_access">Location permissions</string>
    <!-- Label indicating that the admin granted one or more apps access to the microphone. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_microphone_access">Microphone permissions</string>
    <!-- Label indicating that the admin granted one or more apps access to the camera. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_camera_access">Camera permissions</string>
    <!-- Label indicating that the admin set one or more apps as defaults for common actions (e.g. open browser, send e-mail). [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_enterprise_set_default_apps">Default apps</string>
    <!-- Summary indicating the number of apps that a label (e.g. installed apps or apps granted a particular permission) refers to. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_number_packages"> {count, plural,
        =1    {# app}
        other {# apps}
        }
    </string>
    <!-- Label explaining that the current input method was set by the admin. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_input_method">Default keyboard</string>
    <!-- Summary indicating the input method set by the admin. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_input_method_name">Set to <xliff:g id="app_label" example="Example Keyboard">%s</xliff:g></string>
    <!-- Label explaining that an always-on VPN was set by the admin for the entire device. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_always_on_vpn_device">Always-on VPN turned on</string>
    <!-- Label explaining that an always-on VPN was set by the admin in the personal profile. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_always_on_vpn_personal">Always-on VPN turned on in your personal profile</string>
    <!-- Label explaining that an always-on VPN was set by the admin in the work profile. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_always_on_vpn_work">Always-on VPN turned on in your work profile</string>
    <!-- Label explaining that a global HTTP proxy was set by the admin. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_global_http_proxy">Global HTTP proxy set</string>
    <!-- Label explaining that the admin installed trusted CA certificates for the entire device. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_ca_certs_device">Trusted credentials</string>
    <!-- Label explaining that the admin installed trusted CA certificates in personal profile. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_ca_certs_personal">Trusted credentials in your personal profile</string>
    <!-- Label explaining that the admin installed trusted CA certificates in work profile. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_ca_certs_work">Trusted credentials in your work profile</string>
    <!-- Summary indicating the number of trusted CA certificates installed by the admin. The number shown is a minimum as there may be additional CA certificates we do not know about. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_number_ca_certs"> {count, plural,
        =1    {# CA certificate}
        other {# CA certificates}
        }
    </string>
    <!-- Label explaining that the admin can lock the device and change the user's password. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_lock_device">Admin can lock the device and reset password</string>
    <!-- Label explaining that the admin can wipe the device remotely. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_wipe_device">Admin can delete all device data</string>
    <!-- Label explaining that the admin configured the device to wipe itself when the password is mistyped too many times. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_failed_password_wipe_device">Failed password attempts before deleting all device data</string>
    <!-- Label explaining that the admin configured the work profile to wipe itself when the password is mistyped too many times. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_failed_password_wipe_work">Failed password attempts before deleting work profile data</string>
    <!-- Summary indicating the number of mistyped passwords after which the device or work profile wipes itself. [CHAR LIMIT=NONE] -->
    <string name="enterprise_privacy_number_failed_password_wipe"> {count, plural,
        =1    {# attempt}
        other {# attempts}
        }
    </string>
    <!-- Message indicating that the device is enterprise-managed by a Device Owner [CHAR LIMIT=NONE] -->
    <string name="do_disclosure_generic">This device is managed by your organization.</string>
    <!-- Message indicating that the device is enterprise-managed by a Device Owner [CHAR LIMIT=NONE] -->
    <string name="do_disclosure_with_name">This device is managed by <xliff:g id="organization_name" example="Foo, Inc.">%s</xliff:g>.</string>
    <!-- Message indicating that the device is enterprise-managed: Space that separates the main text and the "learn more" link that follows it. [CHAR LIMIT=NONE] -->
    <string name="do_disclosure_learn_more_separator">" "</string>
    <!-- An HDR capability[CHAR LIMIT=NONE] -->
    <string name="hdr_capability">- %1$s</string>
    <!-- Button label to allow the user to view additional information [CHAR LIMIT=NONE BACKUP_MESSAGE_ID=2416766240581561009] -->
    <string name="learn_more">Learn more</string>

    <!-- Strings for displaying which applications were set as default for specific actions. -->
    <!-- Title for the apps that have been set as default handlers of camera-related intents. [CHAR LIMIT=30] -->
    <string name="default_camera_app_title"> {count, plural,
        =1    {Camera app}
        other {Camera apps}
        }
    </string>
    <!-- Title for the app that has been set as default handler of calendar-related intents. [CHAR LIMIT=30] -->
    <string name="default_calendar_app_title">Calendar app</string>
    <!-- Title for the app that has been set as default handler of contacts-related intents. [CHAR LIMIT=30] -->
    <string name="default_contacts_app_title">Contacts app</string>
    <!-- Title for the apps that have been set as default handlers of new email intents. [CHAR LIMIT=30] -->
    <string name="default_email_app_title"> {count, plural,
        =1    {Email client app}
        other {Email client apps}
        }
    </string>
    <!-- Title for the app that has been set as default handler of geo-related intents. [CHAR LIMIT=30] -->
    <string name="default_map_app_title">Map app</string>
    <!-- Title for the apps that have been set as default handlers of call-related intents. [CHAR LIMIT=30] -->
    <string name="default_phone_app_title"> {count, plural,
        =1    {Phone app}
        other {Phone apps}
        }
    </string>
    <!-- Title for Default Browser settings [CHAR LIMIT=30] -->
    <string name="default_browser_title">Browser app</string>
    <!-- Template for concatenating two app names -->
    <string name="app_names_concatenation_template_2"><xliff:g id="first_app_name">%1$s</xliff:g>, <xliff:g id="second_app_name">%2$s</xliff:g></string>
    <!-- Template for concatenating three app names -->
    <string name="app_names_concatenation_template_3"><xliff:g id="first_app_name">%1$s</xliff:g>, <xliff:g id="second_app_name">%2$s</xliff:g>, <xliff:g id="third_app_name">%3$s</xliff:g></string>

    <!-- About -->
    <skip />
    <!-- Preference which shows feature tutorial tours for this device. [CHAR LIMIT=50] -->
    <string name="tutorials">Tutorials</string>
    <!-- Preference which shows system update status. [CHAR LIMIT=50] -->
    <string name="about_system_update">System update</string>
    <!-- System update info description about what happens if you perform a
        system update [CHAR LIMIT=NONE] -->
    <string name="system_update_description">This will update your system
        software to the most recent version. Your device will restart.</string>
    <!-- System update content description for talkback mode with
        comma-separated title (about_system_update) and info text
        (system_update_description) [CHAR LIMIT=NONE] -->
    <string name="system_update_content_description">System update,
        This will update your system software to the most recent version.
        Your device will restart.</string>
    <!-- Preference which shows about screen with legal info, model, etc. [CHAR LIMIT=50] -->
    <string name="about_preference">About</string>
    <!-- Preference which shows name of device as it will appear when being accessed remotely [CHAR LIMIT=50] -->
    <string name="device_name">Device name</string>
    <!-- Button to reboot the device [CHAR LIMIT=40] -->
    <string name="restart_button_label">Restart</string>
    <!-- Preference which shows legal info. [CHAR LIMIT=50] -->
    <string name="about_legal_info">Legal information</string>
    <!-- Preference which shows open source licenses [CHAR LIMIT=50]-->
    <string name="about_legal_license">Third Party Source</string>
    <!-- Preference which shows terms of service and privacy info [CHAR LIMIT=50]-->
    <string name="about_terms_of_service">Google legal</string>
    <!-- Toast message displayed if the license data is unavailable [CHAR LIMIT=100] -->
    <string name="about_license_activity_unavailable">License data is unavailable</string>
    <!-- Preference which shows model. [CHAR LIMIT=50] -->
    <string name="about_model">Model</string>
    <!-- Preference which shows version. [CHAR LIMIT=50] -->
    <string name="about_version">Android TV OS version</string>
    <!-- Preference which shows serial number. [CHAR LIMIT=50] -->
    <string name="about_serial">Serial number</string>
    <!-- Preference which shows build version. [CHAR LIMIT=50] -->
    <string name="about_build">Android TV OS build</string>
    <!-- Device Info screen. Countdown for user taps to enable development settings [CHAR LIMIT=NONE] -->
    <string name="show_dev_countdown"> {count, plural,
        =1    {You are now # step away from being a developer}
        other {You are now # steps away from being a developer}
        }
    </string>
    <!-- Preference which shows ads settings. [CHAR LIMIT=50] -->
    <string name="about_ads">Ads</string>
    <!-- Ads info description outlining the Ads settings options [CHAR LIMIT=NONE] -->
    <string name="ads_description">Manage your ads settings, such as resetting your advertising ID.</string>
    <!-- Ads content description for talkback mode with comma-separated title
        (about_ads) and info text (ads_description) [CHAR LIMIT=NONE] -->
    <string name="ads_content_description">Ads, Manage your ads settings,
        such as resetting your advertising ID.</string>
    <!-- Device Info screen. Confirmation that developer settings are enabled [CHAR LIMIT=NONE] -->
    <string name="show_dev_on">You are now a developer!</string>
    <!-- Device Info screen. Okay we get it, stop pressing, you already have it on [CHAR LIMIT=NONE] -->
    <string name="show_dev_already">No need, you are already a developer</string>
    <!-- Device Info screen. Used for a status item's value when the proper value is not known -->
    <string name="device_info_default">Unknown</string>
    <!-- About screen,  setting option name  [CHAR LIMIT=40] -->
    <string name="selinux_status">SELinux status</string>
    <!-- These statuses are displayed when a device was built with SE Android supoprt.
    These are displayed by the settings app in the about section. -->
    <string name="selinux_status_disabled">Disabled</string>
    <string name="selinux_status_permissive">Permissive</string>
    <string name="selinux_status_enforcing">Enforcing</string>

    <!-- A menu item in "About phone" that allows the user to update the phone with settings
        from their cell phone carrier. The use of the string is similar to the string
        "system_update_settings_list_item_title" in this project. [CHAR LIMIT=50] -->
    <string name="additional_system_update_settings_list_item_title">Additional system updates</string>

    <!-- Notification of installed CA Certs --> <skip/>

    <!-- Shows up when there is a user SSL CA Cert installed on the
         device.  Indicates to the user that SSL traffic can be intercepted.  [CHAR LIMIT=NONE] -->
    <string name="ssl_ca_cert_warning">Network may be monitored</string>
    <!-- Button to close the SSL CA cert warning dialog box, meaning the user is done reading.  [CHAR LIMIT=NONE] -->
    <string name="done_button">Done</string>
    <!-- Title of Dialog warning users of SSL monitoring. [CHAR LIMIT=NONE] -->
    <string name="sl_ca_cert_dialog_title"> {count, plural,
        =1    {Trust or remove certificate}
        other {Trust or remove certificates}
        }
    </string>

    <!-- About screen, title of the item to go into the device status screen -->
    <string name="device_status">Status</string>
    <!-- About screen, summary of the item that takes you to device status screen -->
    <string name="device_status_summary">Network, serial numbers and other information</string>

    <!-- About settings screen, setting option name to show Manual [CHAR LIMIT=25] -->
    <string name="manual">Manual</string>
    <!-- About settings screen, setting option name to show regulatory information [CHAR LIMIT=25] -->
    <string name="regulatory_information">Regulatory information</string>
    <!-- Feedback on the device [CHAR LIMIT=35] -->
    <string name="device_feedback">Send feedback about this device</string>

    <!-- Full package name of OEM preferred device feedback reporter. [DO NOT TRANSLATE] -->
    <string name="oem_preferred_feedback_reporter" translatable="false" />

    <!-- OEM Unlock strings (duplicated with Settings) -->
    <!-- setting enable OEM unlock Checkbox's summary to explain this Checkbox is disabled because the bootloader has been unlocked [CHAR_LIMIT=60] -->
    <string name="oem_unlock_enable_disabled_summary_bootloader_unlocked">Bootloader is already unlocked</string>
    <!-- setting enable OEM unlock Checkbox's summary to explain this Checkbox is disabled because there is no connectivity. [CHAR_LIMIT=60] -->
    <string name="oem_unlock_enable_disabled_summary_connectivity">Connect to the internet first</string>
    <!-- setting enable OEM unlock Checkbox's summary to explain this Checkbox is disabled because there is no connectivity or the device is locked by the carrier [CHAR_LIMIT=60] -->
    <string name="oem_unlock_enable_disabled_summary_connectivity_or_locked">Connect to the internet or contact your carrier</string>
    <!-- setting enable OEM unlock Checkbox's summary to explain this Checkbox is disabled because this setting is unavailable on sim-locked devices. [CHAR_LIMIT=60] -->
    <string name="oem_unlock_enable_disabled_summary_sim_locked_device">Unavailable on carrier-locked devices</string>
    <!-- Information displayed after user locks OEM lock [Char Limit=None]-->
    <string name="oem_lock_info_message">Please restart the device to enable device protection feature.</string>
    <string name="automatic_storage_manager_freed_bytes"><xliff:g id="size" example="3.25MB">%1$s</xliff:g> total made available\n\nLast ran on <xliff:g id="date" example="Jan 12">%2$s</xliff:g></string>

    <!-- About screen, fcc equipment id label  [CHAR LIMIT=40] -->
    <string name="fcc_equipment_id">Equipment ID</string>
    <!-- About screen,  setting option name  [CHAR LIMIT=40] -->
    <string name="baseband_version">Baseband version</string>
    <!-- About screen,  setting option name  [CHAR LIMIT=40] -->
    <string name="kernel_version">Kernel version</string>

    <!-- Status screen -->
    <!-- About phone, status item value if the actual value is not available. -->
    <string name="status_unavailable">Unavailable</string>
    <!-- About phone screen, phone status screen title -->
    <string name="device_status_title">Status</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>
    <!-- About phone, status item title.  The bluetooth adapter's hardware address-->
    <string name="status_bt_address">Bluetooth address</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>

    <!-- Legal screen -->
    <!-- About phone settings screen, setting option name to go to dialog that shows legal info -->
    <string name="legal_information">Legal information</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>
    <!-- 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 for WebView component. [CHAR LIMIT=35] -->
    <string name="webview_license_title">System WebView License</string>
    <!-- About screen, an item title that displays additional information to the consumer. [CHAR LIMIT=60] -->
    <string name="consumer_information_title">Consumer Information</string>
    <!-- Message about the content found on Android TV [CHAR LIMIT=500]-->
    <string name="consumer_information_message">Content you find on Android TV comes from third-party partners such as app developers and movie studios, as well as from Google itself. For more information, please see <a href="g.co/tv/androidtvinfo">g.co/tv/androidtvinfo</a></string>
    <!-- Ok action button text. [CHAR LIMIT=5]-->
    <string name="consumer_information_button_ok">OK</string>

    <!-- Wifi -->
    <skip />

    <!-- wifi signal strength array [CHAR LIMIT=30] -->
    <string-array name="wifi_signal_strength">
        <item>Poor</item>
        <item>Fair</item>
        <item>Good</item>
        <item>Excellent</item>
    </string-array>

    <!-- titles for connection status -->
    <!-- label device mac address [CHAR LIMIT=50] -->
    <string name="title_mac_address">Device MAC address</string>
    <!-- label randomized mac address [CHAR LIMIT=50] -->
    <string name="title_randomized_mac_address">Randomized MAC address</string>
    <!-- label signal strength [CHAR LIMIT=50] -->
    <string name="title_signal_strength">Signal strength</string>
    <!-- label privacy (randomized MAC address settings) [CHAR LIMIT=20] -->
    <string name="title_random_mac_settings">Privacy</string>
    <!-- Options for randomized MAC address settings [CHAR LIMIT=50] -->
    <string-array name="random_mac_settings_entries">
        <item>Use randomized MAC (default)</item>
        <item>Use device MAC</item>
    </string-array>
    <!-- Values for randomized MAC address settings [DO NOT TRANSLATE] -->
    <string-array name="random_mac_settings_entry_values" translatable="false">
        <item>random</item>
        <item>device</item>
    </string-array>
    <!-- Indicate that Mac address is not available [CHAR LIMIT=50] -->
    <string name="mac_address_not_available">Not available</string>
    <!-- Summary for Wifi MAC randomization option when it is ephemeral network [CHAR LIMIT=50] -->
    <string name="mac_address_ephemeral_summary">Randomized MAC</string>
    <!-- label IP address [CHAR LIMIT=50] -->
    <string name="title_ip_address">IP address</string>
    <!-- label SSID [CHAR LIMIT=50] -->
    <string name="title_ssid">Enter name of Wi-Fi network</string>
    <!-- label internet connection [CHAR LIMIT=50] -->
    <string name="title_internet_connection">Internet connection</string>

    <!-- contents for connection status -->
    <!-- Connected [CHAR LIMIT=50] -->
    <string name="connected">Connected</string>
    <!-- Not connected [CHAR LIMIT=50] -->
    <string name="not_connected">Not connected</string>

    <!-- Wifi setting headers [CHAR LIMIT=50] -->
    <string name="wifi_setting_header_other_options">Other options</string>
    <string name="wifi_setting_see_all">See all</string>
    <string name="wifi_setting_see_fewer">See fewer</string>
    <string name="wifi_setting_available_networks">Available networks</string>

    <!-- Other Options under Wifi Settings headers [CHAR LIMIT=50] -->
    <string name="wifi_setting_other_options_add_network">Add new network</string>
    <string name="wifi_setting_other_options_add_network_via_easyconnect">Quick connect</string>
    <!-- Summary text for EasyConnect [CHAR LIMIT=400]-->
    <string name="wifi_setting_other_options_add_network_via_easyconnect_info_summary">
        Quick connect helps you to quickly connect to your WiFi by scanning QR code on your phone.
    </string>

    <!-- Strings for Add Network under Connectivity Setting -->
    <!-- Security type title on add network form page [CHAR LIMIT=30] -->
    <string name="security_type">Type of security</string>

    <!-- Title for adding hidden network in setup mode [CHAR LIMIT=30] -->
    <string name="other_network">Other network&#8230;</string>

    <!-- Skip configuring a Wi-Fi network during device setup [CHAR LIMIT=30]-->
    <string name="skip_network">Skip</string>

    <!-- Wifi Security type indicating no security [CHAR LIMIT=30] -->
    <string name="wifi_security_type_none">None</string>
    <!-- Wifi Security type indicating WEP security [CHAR LIMIT=30] -->
    <string name="wifi_security_type_wep">WEP</string>
    <!-- Wifi Security type indicating WPA/WPA2 security [CHAR LIMIT=30] -->
    <string name="wifi_security_type_wpa">WPA/WPA2 PSK</string>
    <!-- Wifi Security type indicating EAP security [CHAR LIMIT=30] -->
    <string name="wifi_security_type_eap">802.1x EAP</string>
    <!-- Title to show when no wifi networks are available [CHAR LIMIT=80] -->
    <string name="title_wifi_no_networks_available">Scanning&#8230;</string>
    <!-- Title to show when wifi fails to save [CHAR LIMIT=80] -->
    <string name="title_wifi_could_not_save">Couldn\'t save configuration for <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show when wifi fails to connect [CHAR LIMIT=80] -->
    <string name="title_wifi_could_not_connect">Couldn\'t connect to <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show when wifi fails to connect due to timeout [CHAR LIMIT=80] -->
    <string name="title_wifi_could_not_connect_timeout">Couldn\'t find <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show when wifi fails to connect due to authentication failure [CHAR LIMIT=80] -->
    <string name="title_wifi_could_not_connect_authentication_failure">Wi-Fi password not valid</string>
    <!-- Title to show when the wifi ap rejects the connection [CHAR LIMIT=80] -->
    <string name="title_wifi_could_not_connect_ap_reject">Wi-Fi network didn\'t accept connection</string>
    <!-- Title to show when asking if advanced settings should be used for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_advanced_options">Configure <xliff:g id="ssid">%1$s</xliff:g> Proxy and IP Settings?</string>
    <!-- Title to show when asking if a proxy should be used for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_proxy_settings">Proxy settings</string>
    <!-- Title to show when asking for the proxy hostname for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_proxy_hostname">Proxy hostname:</string>
    <!-- Title to show when asking for the proxy port for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_proxy_port">Proxy port:</string>
    <!-- Title to show when asking for which domains bypass the proxy for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_proxy_bypass">Bypass proxy for:</string>
    <!-- Title to show when asking how an ip should be assigned for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_ip_settings">IP settings</string>
    <!-- Title to show when asking for the static ip address to use for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_ip_address">IP address:</string>
    <!-- Title to show when asking for the gateway's ip address for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_gateway">Gateway:</string>
    <!-- Title to show when asking for the network prefix length for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_network_prefix_length">Network prefix length:</string>
    <!-- Title to show when asking for the first DNS to use for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_dns1">DNS 1:</string>
    <!-- Title to show when asking for the second DNS to use for this wifi connection [CHAR LIMIT=80] -->
    <string name="title_wifi_dns2">DNS 2:</string>
    <!-- Title to show when the proxy settings are invalid [CHAR LIMIT=80] -->
    <string name="title_wifi_proxy_settings_invalid">Proxy settings not valid</string>
    <!-- Title to show when the ip settings are invalid [CHAR LIMIT=80] -->
    <string name="title_wifi_ip_settings_invalid">IP settings not valid</string>
    <!-- Title to show when the ip settings are invalid [CHAR LIMIT=80] -->
    <string name="title_wifi_known_network"><xliff:g id="ssid">%1$s</xliff:g> is a saved network</string>
    <!-- Title to show when presenting a QR code to join a network [CHAR LIMIT=80] -->
    <string name="title_wifi_scan_qr_code">Scan QR code to join</string>
    <!-- Label for action to try to connect to wifi again [CHAR LIMIT=50] -->
    <string name="wifi_action_try_again">Try again</string>
    <!-- Label for action to go back to the list of wifi networks [CHAR LIMIT=50] -->
    <string name="wifi_action_view_available_networks">View available networks</string>
    <!-- Message to show when wifi is connecting [CHAR LIMIT=80] -->
    <string name="wifi_connecting">Connecting to <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Message to show when wifi is saving a new configuration [CHAR LIMIT=80] -->
    <string name="wifi_saving">Saving configuration for <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title for action to connect to the wifi network [CHAR LIMIT=80] -->
    <string name="wifi_connect">Connect</string>
    <!-- Title for action to forget the wifi network configuration [CHAR LIMIT=80] -->
    <string name="wifi_forget_network">Forget network</string>
    <!-- Description for action to forget the wifi network configuration [CHAR LIMIT=100] -->
    <string name="wifi_forget_network_description">This clears information used to connect to this network, including a saved password</string>
    <!-- Description for action to scan a QR code with your phone [CHAR LIMIT=300] -->
    <string name="wifi_scan_qr_code_description">
        Join a Wi-Fi by scanning the QR code from a mobile phone and follow the instructions.\n
        \n
        From an <b>Android Phone</b> go to Settings -> Network &amp; internet -> Wi-Fi -> Select a Wi-Fi -> Advanced -> Add device and then scan the QR code.
    </string>
    <!-- Description for action to scan a QR code [CHAR LIMIT=300] -->
    <string name="wifi_scan_qr_code_back_description">Press the back button to cancel</string>
    <!-- Label for action to accept the currently connected wifi network [CHAR LIMIT=50] -->
    <string name="wifi_action_ok">OK</string>
    <!-- Label for action to continue in network summary screen in setup [CHAR LIMIT=50] -->
    <string name="wifi_setup_action_dont_change_network">Continue</string>
    <!-- Label for action to try to connect to a different wifi network in setup [CHAR LIMIT=50] -->
    <string name="wifi_setup_action_change_network">Change network</string>
    <!-- Label for action to try to connect to a different wifi network [CHAR LIMIT=50] -->
    <string name="wifi_action_change_network">Change</string>
    <!-- Label for action to not try to connect to a different wifi network [CHAR LIMIT=50] -->
    <string name="wifi_action_dont_change_network">Don\'t change</string>
    <!-- Label for action to use advanced settings for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_advanced_yes">OK</string>
    <!-- Label for action to not use advanced settings for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_advanced_no">No (recommended)</string>
    <!-- Label for action to not use a proxy for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_proxy_none">None</string>
    <!-- Label for action to setup a proxy for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_proxy_manual">Manual</string>
    <!-- Label for action to use dhcp to obtain an ip address for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_dhcp">DHCP</string>
    <!-- Label for action to setup static ip information for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_static">Static</string>
    <!-- Title for action to show status information for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_status_info">Status info</string>
    <!-- Title for action to setup advanced options for the wifi connection [CHAR LIMIT=50] -->
    <string name="wifi_action_advanced_options_title">Advanced options</string>
    <!-- Error message if the IP address is not valid [CHAR LIMIT=50]-->
    <string name="wifi_ip_settings_invalid_ip_address">Enter a valid IP address</string>
    <!-- Error message if the gateway is not valid [CHAR LIMIT=50]-->
    <string name="wifi_ip_settings_invalid_gateway">Enter a valid gateway address</string>
    <!-- Error message if the dns is not valid [CHAR LIMIT=50]-->
    <string name="wifi_ip_settings_invalid_dns">Enter a valid DNS address</string>
    <!-- Error message if the network prefix length is not valid [CHAR LIMIT=50]-->
    <string name="wifi_ip_settings_invalid_network_prefix_length">Enter a network prefix length between 0 and 32</string>
    <!-- Description text for the IP address -->
    <string name="wifi_ip_address_description">Enter a valid IP address.\nExample: <xliff:g>192.168.1.128</xliff:g></string>
    <!-- Description text for DNS -->
    <string name="wifi_dns1_description">Enter a valid IP address or leave empty.\nExample: <xliff:g>8.8.8.8</xliff:g></string>
    <!-- Description text for DNS -->
    <string name="wifi_dns2_description">Enter a valid IP address or leave empty.\nExample: <xliff:g>8.8.4.4</xliff:g></string>
    <!-- Description text for the gateway -->
    <string name="wifi_gateway_description">Enter a valid IP address or leave empty.\nExample: <xliff:g>192.168.1.1</xliff:g></string>
    <!-- Description text for network prefix length -->
    <string name="wifi_network_prefix_length_description">Enter a valid network prefix length.\nExample: <xliff:g>24</xliff:g></string>
    <!-- HTTP proxy settings. The error if the hostname is not valid -->
    <string name="proxy_error_invalid_host">Hostname isn\'t valid</string>
    <!-- HTTP proxy settings. The error if the exclusion list is not valid -->
    <string name="proxy_error_invalid_exclusion_list">This exclusion list isn\’t valid. Enter a comma-separated list of excluded domains.</string>
    <!-- HTTP proxy settings. Error msg -->
    <string name="proxy_error_empty_port">Port field can\'t be empty</string>
    <!-- HTTP proxy settings. Error msg -->
    <string name="proxy_error_empty_host_set_port">If the host field is empty, leave the port field empty</string>
    <!-- HTTP proxy settings. Error msg -->
    <string name="proxy_error_invalid_port">Port isn\'t valid</string>
    <!-- HTTP proxy settings. Warning message about limited application support [CHAR LIMIT=100]-->
    <string name="proxy_warning_limited_support">HTTP proxy is used by the browser but may not be used by other apps</string>
    <!-- HTTP proxy settings. The description for proxy server port. -->
    <string name="proxy_port_description">Enter a valid port.\nExample: <xliff:g>8080</xliff:g></string>
    <!-- HTTP proxy settings. The description for proxy exclusion list.-->
    <string name="proxy_exclusionlist_description">Enter a comma-separated list of excluded domains or leave blank.\nExample: <xliff:g>example.com,mycomp.test.com,localhost</xliff:g></string>
    <!-- HTTP proxy settings. The description field for the hostname. -->
    <string name="proxy_hostname_description">Enter a valid hostname.\nExample: <xliff:g>proxy.example.com</xliff:g></string>
    <!-- Title to show when asking the user to choose EAP method [CHAR LIMIT=80] -->
    <string name="title_wifi_eap_method">Choose EAP method for <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show when asking the user to choose Phase2 authentication [CHAR LIMIT=80] -->
    <string name="title_wifi_phase2_authentication">Choose phase2 authentication for <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show when asking the user to input identity [CHAR LIMIT=80] -->
    <string name="title_wifi_identity">Enter identity for <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show when asking the user to input anonymous identity [CHAR LIMIT=80] -->
    <string name="title_wifi_anonymous_identity">Enter anonymous identity for <xliff:g id="ssid">%1$s</xliff:g></string>

    <!-- Title used during setup to indicate the user is connected [CHAR LIMIT=100] -->
    <string name="wifi_setup_summary_title_connected">You\'re connected to <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Title to show indicating the user is connected [CHAR LIMIT=100] -->
    <string name="wifi_summary_title_connected">Network connected</string>
    <!-- Title to show indicating the user is not connected [CHAR LIMIT=100] -->
    <string name="wifi_summary_title_not_connected">Network isn\'t connected</string>
    <!-- Title to show when wifi is already connected [CHAR LIMIT=100] -->
    <string name="wifi_summary_description_connected_to_wifi_network">Already connected to <xliff:g id="ssid">%1$s</xliff:g>. Connect to a different network?</string>
    <!-- Name to use when we don't know the name of the wifi network the device is connected to [CHAR LIMIT=20] -->
    <string name="wifi_summary_unknown_network">an unknown network</string>
    <!-- Wifi Settings. text displayed when user has restriction DISALLOW_CONFIG_WIFI [CHAR LIMIT=NONE]-->
    <string name="wifi_empty_list_user_restricted">You don\u2019t have permission to change the Wi\u2011Fi network.</string>

    <!-- Strings for Ethernet under Connectivity Setting -->
    <!-- Title for OK [CHAR LIMIT=50] -->
    <string name="title_ok">OK</string>
    <!-- Title for DNS 2 [CHAR LIMIT=50] -->
    <string name="title_cancel">Cancel</string>

    <!-- Storage settings screen heading. This is displayed above items that pertain to the phone's internal storage [CHAR LIMIT=50] -->
    <string name="storage_title">Storage</string>
    <!-- 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. [CHAR LIMIT=50] -->
    <string name="storage_available">Available</string>
    <!-- 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 [CHAR LIMIT=50] -->
    <string name="storage_size">Total space: <xliff:g id="total_space">%1$s</xliff:g></string>
    <!-- Storage settings summary. Displayed when the total memory usage is being calculated. Will be replaced with a number like "12.3 GB" when finished calucating. [CHAR LIMIT=30] -->
    <string name="storage_calculating_size">Calculating\u2026</string>
    <!-- Storage settings title. Displayed as a title when showing the total usage of applications installed. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] -->
    <string name="storage_apps_usage">Apps</string>
    <!-- Storage settings title. Displayed as a title when showing the total usage of /sdcard/Download on the device. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] -->
    <string name="storage_downloads_usage">Downloads</string>
    <!-- Storage settings title. Displayed as a title when showing the total usage of all pictures, videos in /sdcard/DCIM, /sdcard/Pictures folders on the device. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] -->
    <string name="storage_dcim_usage">Photos &amp; Videos</string>
    <!-- Storage settings title. Displayed as a title when showing the total usage of audio files in /sdcard on the device. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] -->
    <string name="storage_music_usage">Audio</string>
    <!-- Storage settings title. Displayed as a title when showing the total usage of misc files on the device. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] -->
    <string name="storage_media_misc_usage">Misc.</string>
    <!-- Storage settings title. Displayed as a title when showing the total usage of all cached data on device. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] -->
    <string name="storage_media_cache_usage">Cached data</string>
    <!-- Storage settings eject action [CHAR LIMIT=50] -->
    <string name="storage_eject">Eject</string>
    <!-- Storage settings erase and format action [CHAR LIMIT=50] -->
    <string name="storage_format">Erase &amp; Format</string>
    <!-- Storage settings erase and format action [CHAR LIMIT=50] -->
    <string name="storage_format_as_private">Erase &amp; format as device storage</string>
    <!-- Storage settings erase and format action [CHAR LIMIT=50] -->
    <string name="storage_format_as_public">Erase &amp; format as removable storage</string>
    <!-- Storage settings format for device storage action [CHAR LIMIT=50] -->
    <string name="storage_format_for_private">Format as device storage</string>
    <!-- Description for a storage volume which is not currently connected to the device -->
    <string name="storage_not_connected">Not connected</string>
    <!-- Storage settings migrate primary storage action [CHAR_LIMIT=50] -->
    <string name="storage_migrate">Migrate data to this storage</string>
    <!-- Storage settings migrate primary storage action [CHAR_LIMIT=50] -->
    <string name="storage_migrate_away">Migrate data to different storage</string>
    <!-- Storage settings backup apps empty action [CHAR LIMIT=50] -->
    <string name="storage_no_apps">No apps to back up</string>

    <!-- Storage settings forget action [CHAR_LIMIT=50] -->
    <string name="storage_forget">Forget this device storage</string>
    <!-- Storage settings forget description [CHAR_LIMIT=NONE] -->
    <string name="storage_forget_wall_of_text">To use the apps or data this drive contains, replug it in. Alternatively, you can choose to forget this storage if the drive isn\'t available.\n\nIf you choose Forget, all the data the drive contains will be lost forever.\n\nYou can reinstall the apps later, but the data stored on this drive will be lost.</string>

    <string name="storage_suggestions" translatable="false" />
    <string name="ambient_slice_storage_uri" translatable="false" />
    <!-- Header title for device storage [CHAR_LIMIT=50] -->
    <string name="storage_device_storage_section">Device storage</string>
    <!-- Header title for removable storage [CHAR_LIMIT=50] -->
    <string name="storage_removable_storage_section">Removable storage</string>
    <!-- Header title for device reset [CHAR_LIMIT=50] -->
    <string name="storage_reset_section">Reset</string>

    <!-- Header title for free up storage[CHAR_LIMIT=50] -->
    <string name="storage_free_up">Free up storage</string>
    <!-- Header title for free up storage[CHAR_LIMIT=50] -->
    <string name="storage_free_up_clear_cached_data">Clear cached data</string>
    <!-- Header title for free up storage[CHAR_LIMIT=50] -->
    <string name="storage_free_up_clear_cached_data_summary">Free up <xliff:g id="space" example="100MB">%1$s</xliff:g></string>
    <!-- Header title for free up storage[CHAR_LIMIT=500] -->
    <string name="storage_free_up_clear_cached_data_info">Clears temporary files that take up space. Will not impact saved data like app preferences or offline videos, and you won\'t need to sign in to apps again.</string>
    <!-- Header title for free up storage[CHAR_LIMIT=50] -->
    <string name="storage_free_up_clear_cached_data_confirm_title">Clear cached data?</string>
    <!-- Header title for free up storage[CHAR_LIMIT=50] -->
    <string name="storage_free_up_clear_cached_data_confirm_description">This will clear cached data for all apps.</string>
    <!-- Header title for free up storage[CHAR_LIMIT=50] -->
    <string name="storage_free_up_uninstall_apps">Uninstall apps</string>

    <!-- Toast informing that storage mount operation was successful. [CHAR LIMIT=64]-->
    <string name="storage_mount_success"><xliff:g id="name" example="SD card">%1$s</xliff:g> is mounted</string>
    <!-- Toast informing that storage unmount operation failed. [CHAR LIMIT=64]-->
    <string name="storage_mount_failure">Couldn\'t mount <xliff:g id="name" example="SD card">%1$s</xliff:g></string>

    <!-- Toast shown when the user connects external storage that has been formatted for Android  [CHAR_LIMIT=50] -->
    <string name="storage_mount_adopted">USB storage reconnected</string>

    <!-- Toast informing that storage unmount operation was successful. [CHAR LIMIT=64]-->
    <string name="storage_unmount_success"><xliff:g id="name" example="SD card">%1$s</xliff:g> is safely ejected</string>
    <!-- Toast informing that storage unmount operation failed. [CHAR LIMIT=64]-->
    <string name="storage_unmount_failure">Couldn\'t safely eject <xliff:g id="name" example="SD card">%1$s</xliff:g></string>
    <!-- Toast informing that storage unmount operation failed because the volume couldn't be found. [CHAR LIMIT=64]-->
    <string name="storage_unmount_failure_cant_find">Could\'t find drive to eject</string>

    <!-- Toast informing that storage format operation was successful. [CHAR LIMIT=64]-->
    <string name="storage_format_success"><xliff:g id="name" example="SD card">%1$s</xliff:g> is formatted</string>
    <!-- Toast informing that storage format operation failed. [CHAR LIMIT=64]-->
    <string name="storage_format_failure">Couldn\'t format <xliff:g id="name" example="SD card">%1$s</xliff:g></string>

    <!-- Title for wizard screen for formatting storage as device [CHAR LIMIT=64] -->
    <string name="storage_wizard_format_as_private_title">Format as device storage</string>
    <!-- Description for wizard screen for formatting storage as device [CHAR LIMIT=NONE] -->
    <string name="storage_wizard_format_as_private_description">This requires the USB drive to be formatted to make it secure. After securely formatting, this drive will only work with this device. Formatting erases all data currently stored on the drive. To avoid losing the data, consider backing it up.</string>

    <!-- Title for wizard screen for formatting storage as device [CHAR LIMIT=64] -->
    <string name="storage_wizard_format_as_public_title">Erase &amp; format</string>
    <!-- Description for wizard screen for formatting storage as device [CHAR LIMIT=NONE] -->
    <string name="storage_wizard_format_as_public_description">After formatting, you can use this USB drive in other devices. All data will be erased. Consider backing up first by moving apps to other device storage.</string>

    <!-- Title for wizard progress screen for formatting drive [CHAR_LIMIT=50] -->
    <string name="storage_wizard_format_progress_title">Formatting USB Drive&#8230;</string>
    <!-- Description for wizard progress screen for formatting drive [CHAR_LIMIT=NONE] -->
    <string name="storage_wizard_format_progress_description">This may take a moment. Please don\'t remove the drive.</string>

    <!-- Title for wizard selection screen for migrating data to new drive [CHAR LIMIT=50] -->
    <string name="storage_wizard_migrate_choose_title">Choose storage to migrate data to</string>
    <!-- Title for wizard confirmation screen for migrating data to new drive [CHAR_LIMIT=50] -->
    <string name="storage_wizard_migrate_confirm_title">Move data to <xliff:g id="name" example="SD card">%1$s</xliff:g></string>
    <!-- Description for wizard confirmation screen for migrating data to new drive [CHAR_LIMIT=NONE] -->
    <string name="storage_wizard_migrate_confirm_description">Move your photos, files and app data to <xliff:g id="name" example="SD card">%1$s</xliff:g>. This may take a few minutes. Some apps won\'t work correctly during the move.</string>
    <!-- Positive action for wizard confirmation screen for migrating data to new drive [CHAR_LIMIT=50] -->
    <string name="storage_wizard_migrate_confirm_action_move_now">Move now</string>
    <!-- Negative action for wizard confirmation screen for migrating data to new drive [CHAR_LIMIT=50] -->
    <string name="storage_wizard_migrate_confirm_action_move_later">Move later</string>

    <!-- Success toast for migrating data [CHAR_LIMIT=100] -->
    <string name="storage_wizard_migrate_toast_success">Migrated data to <xliff:g id="name" example="SD card">%1$s</xliff:g></string>
    <!-- Failure toast for migrating data [CHAR_LIMIT=100] -->
    <string name="storage_wizard_migrate_toast_failure">Could not migrate data to <xliff:g id="name" example="SD card">%1$s</xliff:g></string>

    <!-- Title for wizard progress screen for migrating data to new drive [CHAR_LIMIT=50] -->
    <string name="storage_wizard_migrate_progress_title">Moving data to <xliff:g id="name" example="SD card">%1$s</xliff:g>&#8230;</string>
    <!-- Description for wizard progress screen for migrating data to new drive [CHAR_LIMIT=NONE] -->
    <string name="storage_wizard_migrate_progress_description">This may take a moment. Please don\'t remove the drive.\nSome apps won\'t work correctly during the move.</string>

    <!-- Title for warning dialog for slow drives [CHAR_LIMIT=64] -->
    <string name="storage_wizard_format_slow_title">This drive appears to be slow.</string>

    <!-- Summary for warning dialog for slow drives [CHAR_LIMIT=NONE] -->
    <string name="storage_wizard_format_slow_summary">You can continue, but apps moved to this location may stutter and data transfers may take a long time. Consider using a faster drive for better performance.</string>

    <!-- Format action for wizard screen for formatting storage [CHAR LIMIT=50] -->
    <string name="storage_wizard_format_action">Format</string>
    <!-- Back up apps action for wizard screen for formatting storage [CHAR LIMIT=50]-->
    <string name="storage_wizard_backup_apps_action">Back up apps</string>

    <!-- Back up apps title [CHAR LIMIT=50] -->
    <string name="storage_wizard_back_up_apps_title">Apps stored in <xliff:g id="name" example="SD card">%1$s</xliff:g></string>
    <!-- Back up apps title [CHAR LIMIT=50] -->
    <string name="storage_wizard_back_up_apps_and_data_title">Apps and data stored in <xliff:g id="name" example="SD card">%1$s</xliff:g></string>
    <!-- Back up apps storage available description [CHAR_LIMIT=50] -->
    <string name="storage_wizard_back_up_apps_space_available"><xliff:g id="size" example="1.23GB">%1$s</xliff:g> available</string>

    <!-- Title for wizard screen for ejecting device storage [CHAR LIMIT=64] -->
    <string name="storage_wizard_eject_private_title">Eject device storage</string>
    <!-- Description for wizard screen for ejecting device storage [CHAR LIMIT=NONE] -->
    <string name="storage_wizard_eject_private_description">Apps on this device storage will stop working when it\'s ejected. This USB drive is formatted to work on this device only. It won\'t work on any others.</string>

    <!-- Title for wizard progress screen for ejecting a drive [CHAR_LIMIT=64] -->
    <string name="storage_wizard_eject_progress_title">Ejecting <xliff:g id="name" example="SD Card">%1$s</xliff:g>&#8230;</string>

    <!-- Title for wizard screen for moving apps [CHAR_LIMIT=50] -->
    <string name="storage_wizard_move_app_title">Storage used</string>

    <!-- Title for wizard progress screen for moving apps [CHAR_LIMIT=50] -->
    <string name="storage_wizard_move_app_progress_title">Moving <xliff:g id="name" example="YouTube">%1$s</xliff:g>&#8230;</string>
    <!-- Description for wizard progress screen for moving apps [CHAR_LIMIT=NONE] -->
    <string name="storage_wizard_move_app_progress_description">"Don't remove the drive during the move.\nThe <xliff:g id="appname" example="YouTube">%1$s</xliff:g> app on this device won't be available until the move is complete.</string>

    <!-- Title for wizard screen for forgetting private storage [CHAR_LIMIT=50] -->
    <string name="storage_wizard_forget_confirm_title">Forget device storage?</string>
    <!-- Description for wizard screen for forgetting private storage [CHAR_LIMIT=NONE] -->
    <string name="storage_wizard_forget_confirm_description">All your data stored in this drive will be lost forever with \'Forget\'. Would you like to proceed?</string>
    <!-- Action for wizard screen for forgetting private storage [CHAR_LIMIT=50] -->
    <string name="storage_wizard_forget_action">Forget</string>

    <!-- Title for new storage activity [CHAR_LIMIT=50] -->
    <string name="storage_new_title">USB drive connected</string>
    <!-- Browse action for new storage activity [CHAR_LIMIT=50] -->
    <string name="storage_new_action_browse">Browse</string>
    <!-- Adopt action for new storage activity [CHAR_LIMIT=50] -->
    <string name="storage_new_action_adopt">Set up as device storage</string>
    <!-- Format as removable action for new storage activity [CHAR_LIMIT=50] -->
    <string name="storage_new_action_format_public">Set up as removable storage</string>
    <!-- Eject action for new storage activity [CHAR_LIMIT=50] -->
    <string name="storage_new_action_eject">Eject</string>

    <!-- Title for missing storage activity shown when a drive is removed [CHAR_LIMIT=50] -->
    <string name="storage_missing_title"><xliff:g id="name" example="SD Card">%1$s</xliff:g> removed</string>
    <!-- Description for missing storage activity shown when a drive is removed [CHAR_LIMIT=NONE] -->
    <string name="storage_missing_description">Some apps will be unavailable or not function correctly until the drive is reconnected.</string>

    <!-- Manage applications, text for move error messages -->
    <string name="insufficient_storage">Not enough storage space.</string>
    <string name="does_not_exist">App doesn\u2019t exist.</string>
        <string name="invalid_location">Install location isn\u2019t valid.</string>
    <string name="system_package">System updates can\u2019t be installed on external media.</string>
    <!-- Error message shown when trying to move device administrators to external disks, such as SD card [CHAR_LIMIT=none] -->
    <string name="move_error_device_admin">Device Administrator can\u2019t be installed on external media.</string>

    <!-- Learn more action title [CHAR_LIMIT=50] -->
    <string name="learn_more_action">Learn more</string>

    <!-- Title for Date in System Settings Date Time [CHAR LIMIT=50] -->
    <string name="system_date">Date</string>
    <!-- Title for Time in System Settings Date Time [CHAR LIMIT=50] -->
    <string name="system_time">Time</string>
    <!-- Title for Set Date in System Settings Date Time [CHAR LIMIT=50] -->
    <string name="system_set_date">Set date</string>
    <!-- Title for Set Time in System Settings Date Time [CHAR LIMIT=50] -->
    <string name="system_set_time">Set time</string>
    <!-- Title for Set Time Zone in System Settings Date Time [CHAR LIMIT=50] -->
    <string name="system_set_time_zone">Set time zone</string>
    <!-- Format string for displaying the current time zone, eg "GMT-08:00, Pacific Standard Time" [CHAR LIMIT=10] -->
    <string name="desc_set_time_zone"><xliff:g id="offset" example="GMT-08:00">%1$s</xliff:g>, <xliff:g id="name" example="Pacific Standard Time">%2$s</xliff:g></string>
    <!-- Title for Set time format in System Settings Date Time [CHAR LIMIT=50] -->
    <string name="system_set_time_format">Use 24-hour format</string>
    <!-- Format string for displaying the current time format (12/24 hour) [CHAR LIMIT=10] -->
    <string name="desc_set_time_format"><xliff:g id="state" example="Off">%1$s</xliff:g> (<xliff:g id="sample" example="3:14 PM">%2$s</xliff:g>)</string>
    <!-- Title for automatic date & time [CHAR LIMIT = 80] -->
    <string name="system_auto_date_time">Automatic date &amp; time</string>
    <!-- Options for automatic date & time [CHAR LIMIT=100] -->
    <string-array name="auto_date_time_entries">
        <item>Use network-provided time</item>
        <item>Off</item>
    </string-array>
    <!-- Values for automatic date & time [DO NOT TRANSLATE] -->
    <string-array name="auto_date_time_entry_values" translatable="false">
        <item>network</item>
        <item>off</item>
    </string-array>
    <!-- Options for automatic date & time [CHAR LIMIT=100] -->
    <string-array name="auto_date_time_ts_entries">
        <item>Use network-provided time</item>
        <item>Use transport stream-provided time</item>
        <item>Off</item>
    </string-array>
    <!-- Values for automatic date & time [DO NOT TRANSLATE] -->
    <string-array name="auto_date_time_ts_entry_values" translatable="false">
        <item>network</item>
        <item>transport_stream</item>
        <item>off</item>
    </string-array>

    <!-- Subtitle for the camera/microphone toggle [CHAR LIMIT=50] -->
    <string name="sensor_toggle_description">For all apps and services</string>
    <!-- Settings group name that is followed by a list of apps that have recently accessed the sensor [CHAR LIMIT=50] -->
    <string name="recently_accessed_by_category">Recently Accessed By</string>
    <!-- Placeholder that shows when no apps have recently accessed the camera/microphone [CHAR LIMIT=50] -->
    <string name="no_recent_sensor_accesses">No recent accesses</string>
    <!-- Element on which to click when there are more apps in the list that we want to show initially.
    The rest of the apps will be shown when the element is clicked [CHAR LIMIT=50]-->
    <string name="recently_accessed_show_all">See all</string>

    <!-- Title for Microphone settings [CHAR LIMIT=30] -->
    <string name="microphone">Microphone</string>
    <!-- Title of the toggle that enables / disables microphone access for all apps [CHAR LIMIT=30] -->
    <string name="mic_toggle_title">Microphone access</string>
    <!-- Title of the toggle that enables / disables microphone access on the remote [CHAR LIMIT=60] -->
    <string name="mic_remote_toggle_title">Microphone access on your remote</string>
    <!-- Title for setting that opens the microphone permissions overview for all apps [CHAR LIMIT=50]-->
    <string name="open_mic_permissions">App access to microphone</string>
    <!-- Title for info box warning that microphone hardware switch is turned off [CHAR LIMIT=50]-->
    <string name="microphone_physical_privacy_enabled_title">Microphone access blocked</string>
    <!-- Content for info box warning that microphone hardware switch is turned off [CHAR LIMIT=250]-->
    <string name="microphone_physical_privacy_enabled_text">To unblock, move the privacy switch on
        your device to the microphone on position to allow microphone access.</string>
    <!-- Content text for info panel shown when the microphone hardware switch is turned off. [CHAR LIMIT=500]-->
    <string name="microphone_physical_privacy_enabled_panel_text" translatable="false">@string/microphone_physical_privacy_enabled_text</string>

    <!-- Title for Camera settings [CHAR LIMIT=30] -->
    <string name="camera">Camera</string>
    <!-- Title of the toggle that enables / disables camera access for all apps [CHAR LIMIT=30] -->
    <string name="camera_toggle_title">Camera access</string>
    <!-- Title for setting that opens the camera permissions overview for all apps [CHAR LIMIT=50]-->
    <string name="open_camera_permissions">App access to camera</string>

    <!-- Title for info box warning that camera hardware switch is turned off [CHAR LIMIT=50]-->
    <string name="camera_physical_privacy_enabled_title">Camera access blocked</string>
    <!-- Content for info box warning that camera hardware switch is turned off [CHAR LIMIT=250]-->
    <string name="camera_physical_privacy_enabled_text">To unblock, move the privacy switch on your
        device to the camera on position to allow camera access.</string>
    <!-- Content text for info panel shown when the camera hardware switch is turned off. [CHAR LIMIT=500]-->
    <string name="camera_physical_privacy_enabled_panel_text" translatable="false">@string/camera_physical_privacy_enabled_text</string>

    <!-- Title of the info panel that is shown on the side when the microphone toggle is selected.
    The sensor_state is one of the following strings: sensor_toggle_info_on or sensor_toggle_info_off [CHAR LIMIT=30]-->
    <string name="mic_toggle_info_title">Microphone Access:
        <xliff:g id="sensor_state" example="On">%s</xliff:g></string>
    <!-- Message shown in an info panel on the side when the microphone toggle is selected. [CHAR LIMIT=NONE] -->
    <string name="mic_toggle_info_content">When turned on, all apps and services that are allowed to
        use the microphone will be able to access it.\n\nWhen turned off, no apps or services will
        be able to access the microphone. But you may still be able to talk to your Google Assistant
        by pressing the Assistant button on your remote.\n\nAudio devices using custom protocols for
        communicating with the TV may not be affected by this setting.
    </string>

    <!-- Title of the info panel that is shown on the side when the microphone on the remote toggle is selected and enabled. [CHAR LIMIT=60]-->
    <string name="mic_remote_toggle_on_info_title">Microphone enabled on remote</string>
    <!-- Message shown in an info panel on the side when the microphone toggle is selected and enabled. [CHAR LIMIT=NONE] -->
    <string name="mic_remote_toggle_on_info_content">Google Assistant is able to access the
        microphone on your remote. You will be able to talk to your Assistant by pressing the Google
        Assistant button on your remote.
    </string>

    <!-- Title of the info panel that is shown on the side when the microphone on the remote toggle is selected and disabled. [CHAR LIMIT=60]-->
    <string name="mic_remote_toggle_off_info_title">Microphone disabled on remote</string>
    <!-- Message shown in an info panel on the side when the microphone toggle is selected and disabled. [CHAR LIMIT=NONE] -->
    <string name="mic_remote_toggle_off_info_content">You will not be able to talk to your Google
        Assistant using your remote. To be able to use the Google Assistant button, enable
        microphone access.
    </string>

    <!-- Title of the info panel that is shown on the side when the camera toggle is selected.
    The camera_state is one of the following strings: sensor_toggle_info_on or sensor_toggle_info_off [CHAR LIMIT=30]-->
    <string name="camera_toggle_info_title">Camera Access:
        <xliff:g id="sensor_state" example="On">%s</xliff:g></string>
    <!-- Message shown in an info panel on the side when the camera toggle is selected. [CHAR LIMIT=NONE] -->
    <string name="camera_toggle_info_content">When turned on, all apps and services with permission
        can access any camera on this device.\n\nCamera peripherals with a custom protocol will not
        be affected by this setting.
    </string>

    <!-- Camera/Microphone state within mic_toggle_info_title and camera_toggle_info_title [CHAR LIMIT=20] -->
    <string name="sensor_toggle_info_on">On</string>
    <!-- Camera/Microphone state within mic_toggle_info_title and camera_toggle_info_title [CHAR LIMIT=20] -->
    <string name="sensor_toggle_info_off">Off</string>

    <!-- Title for Location in System Settings [CHAR LIMIT=50] -->
    <string name="system_location">Location</string>
    <!-- Summary for Location in System Settings. This shall be an empty string. [DO NOT TRANSLATE] -->
    <string name="system_location_summary"></string>
    <!-- Description for Location in System Settings [CHAR LIMIT=NONE] -->
    <string name="system_desc_location">Let apps that have asked your permission use your location information</string>
    <!-- Title for confirming location consent [CHAR LIMIT=50] -->
    <string name="system_network_location_confirm">Location consent</string>
    <!-- [CHAR LIMIT=30] Location settings screen, setting preference screen box label for location mode -->
    <string name="location_mode_title">Mode</string>
    <!-- [CHAR LIMIT=30] Location settings screen, sub category for recent location requests -->
    <string name="location_category_recent_location_requests">Recent location requests</string>
    <!-- Location settings screen, displayed when there's no recent app accessing location -->
    <string name="location_no_recent_apps">No apps have requested location recently</string>
    <!-- [CHAR LIMIT=30] Location settings screen, recent location requests high battery use-->
    <string name="location_high_battery_use">High battery use</string>
    <!-- [CHAR LIMIT=30] Location settings screen, recent location requests low battery use-->
    <string name="location_low_battery_use">Low battery use</string>
    <!-- [CHAR LIMIT=130] Location mode screen, description for wifi mode -->
    <string name="location_mode_wifi_description">Use Wi\u2011Fi to estimate location</string>

    <!-- [CHAR LIMIT=60] Label for the status of location -->
    <string name="location_status">Location status</string>
    <!-- [CHAR LIMIT=60] Title for location services in locations settings -->
    <string name="location_services">Location services</string>
    <!-- [CHAR LIMIT=20] Title for status on for location services -->
    <string name="on">On</string>
    <!-- [CHAR LIMIT=20] Title for status off for location services -->
    <string name="off">Off</string>
    <!-- [CAR LIMIT=100] Location services screen title for Google location services -->
    <string name="google_location_services_title">Google location services</string>
    <!-- [CAR LIMIT=100] Location services screen title for third party location services -->
    <string name="third_party_location_services_title">3rd party location services</string>
    <!-- [CHAR LIMIT=100] Location services screen, title for Location reporting -->
    <string name="location_reporting">Location Reporting</string>
    <!-- [CHAR LIMIT=100] Location services screen, title for Location history -->
    <string name="location_history">Location History</string>
    <!-- [CHAR LIMIT=300] Location reporting screen, description -->
    <string name="location_reporting_desc">Google uses this feature in products like Google Now and Google Maps. Turning on Location Reporting lets any Google product that uses this feature store and use your device\'s most recent location data in connection with your Google Account.</string>
    <!-- [CHAR LIMIT=500] Location history screen, description -->
    <string name="location_history_desc">When Location History is turned on for this account, Google can store your device\'s location data for use by your apps.\n\nFor example, Google Maps can give you directions, and Google Now can inform you about commute traffic.\n\nYou can turn off Location History at any time, but doing so doesn\'t delete it. To view and manage your Location History, visit maps.google.com/locationhistory.</string>
    <!-- [CHAR LIMIT=100] Location history screen, title for delete location history -->
    <string name="delete_location_history_title">Delete location history</string>
    <!-- [CHAR LIMIT=300] Location history screen, description for delete location history -->
    <string name="delete_location_history_desc">This will delete all Location History has stored from this device for this Google Account. You can\'t undo this deletion. Some apps, including Google Now, will stop working.</string>
    <!-- Title for screen readers preference category in accessibility settings [CHAR LIMIT=50] -->
    <string name="accessibility_screen_readers_category_title">Screen Readers</string>
    <!-- Title for display preference category in accessibility settings [CHAR LIMIT=50] -->
    <string name="accessibility_display_category_title">Display</string>
    <!-- Title for interaction controls preference category in accessibility settings [CHAR LIMIT=50] -->
    <string name="accessibility_interaction_controls_category_title">Interaction Controls</string>
    <!-- Title for audio & onscreen text preference category in accessibility settings [CHAR LIMIT=50] -->
    <string name="accessibility_audio_and_onscreen_text_category_title">Audio &amp; Onscreen Text</string>
    <!-- Title for experimental preference category in accessibility settings [CHAR LIMIT=50] -->
    <string name="accessibility_experimental_category_title">Experimental</string>
    <!-- Title for services preference category in accessibility settings [CHAR LIMIT=50] -->
    <string name="accessibility_services_category_title">Services</string>
    <!-- Title and description for accessibility service setting [CHAR LIMIT=50] -->
    <string name="accessibility_service_settings">Service settings</string>
    <string name="accessibility_screen_reader_flattened_component_name">com.google.android.marvin.talkback/com.google.android.marvin.talkback.TalkBackService</string>
    <!-- Title for the accessibility preference to high contrast text. [CHAR LIMIT=35] -->
    <string name="accessibility_toggle_high_text_contrast_preference_title">High contrast text</string>
    <!-- Title for the accessibility preference to bold text. [CHAR LIMIT=35] -->
    <string name="accessibility_toggle_bold_text_preference_title">Bold text</string>
    <!-- Title for the accessibility preference to color correction. [CHAR LIMIT=35] -->
    <string name="accessibility_color_correction">Color correction</string>
    <!-- Title for the color correction setting. [CHAR LIMIT=35] -->
    <string name="color_correction_usage">Use color correction</string>
    <!-- Description for color mode setting. [CHAR LIMIT=35] -->
    <string name="color_correction_color_mode">Color Mode</string>
    <!-- Title for color correction mode deuteranomaly. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_deuteranomaly">Deuteranomaly</string>
    <!-- Summary for color correction mode deuteranomaly. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_deuteranomaly_summary">Red-green</string>
    <!-- Title for color correction mode protanomaly. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_protanomaly">Protanomaly</string>
    <!-- Summary for color correction mode protanomaly. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_protanomaly_summary">Red-green</string>
    <!-- Title for color correction mode tritanomaly. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_tritanomaly">Tritanomaly</string>
    <!-- Summary for color correction mode tritanomaly. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_tritanomaly_summary">Blue-yellow</string>
    <!-- Title for color correction mode grayscale. [CHAR LIMIT=35] -->
    <string name="color_correction_mode_grayscale">Grayscale</string>
    <!-- Label for the color red of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_red">Red</string>
    <!-- Label for the color orange of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_orange">Orange</string>
    <!-- Label for the color yellow of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_yellow">Yellow</string>
    <!-- Label for the color green of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_green">Green</string>
    <!-- Label for the color cyan of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_cyan">Cyan</string>
    <!-- Label for the color blue of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_blue">Blue</string>
    <!-- Label for the color purple of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_purple">Purple</string>
    <!-- Label for the color gray of the palette. [CHAR LIMIT=35] -->
    <string name="palette_color_gray">Gray</string>
    <!-- Title for accessibility shortcut preference and screen [CHAR LIMIT=50] -->
    <string name="accessibility_shortcut">Accessibility shortcut</string>
    <!-- Title for accessibility shortcut toggle [CHAR LIMIT=50] -->
    <string name="accessibility_shortcut_enable">Enable accessibility shortcut</string>
    <!-- Title for accessibility shortcut service choice preference [CHAR LIMIT=50}-->
    <string name="accessibility_shortcut_service">Shortcut service</string>
    <!-- Description for the accessibility shortcut [CHAR LIMIT=NONE] -->
    <string name="accessibility_shortcut_description">When the shortcut is on, you can press both the back and down buttons for 3 seconds to start an accessibility feature.</string>
    <!-- Title and description for accessibility captions setting [CHAR LIMIT=50] -->
    <string name="accessibility_captions">Captions</string>
    <!-- Title and description for accessibility captions description [CHAR LIMIT=NONE] -->
    <string name="accessibility_captions_description">Settings for closed captioning text overlay on video</string>
    <!-- Title for captions display setting [CHAR LIMIT=50] -->
    <string name="captions_display">Display</string>
    <!-- Subtext used under the captions_display string to denote that captions will be shown. [CHAR LIMIT=50] -->
    <string name="captions_display_on">On</string>
    <!-- Subtext used under the captions_display string to denote that captions will NOT be shown. [CHAR LIMIT=50] -->
    <string name="captions_display_off">Off</string>
    <!-- Description for captions display setting [CHAR LIMIT=100] -->
    <string name="display_options">Display options</string>
    <!-- Title for captions configure setting [CHAR LIMIT=50] -->
    <string name="captions_configure">Configure</string>
    <!-- Title for captions language setting [CHAR LIMIT=50] -->
    <string name="captions_language">Language</string>
    <!-- Entry for "default" selection for captions language [CHAR LIMOIT=50] -->
    <string name="captions_language_default">Default</string>
    <!-- Title for captions text size setting [CHAR LIMIT=50] -->
    <string name="captions_textsize">Text size</string>
    <!-- Title for captions style setting [CHAR LIMIT=50] -->
    <string name="captions_captionstyle">Caption style</string>
    <!-- Title for custom captions settings [CHAR LIMIT=50] -->
    <string name="captions_customoptions">Custom options</string>
    <!-- Title for captions font family setting [CHAR LIMIT=50] -->
    <string name="captions_fontfamily">Font family</string>
    <!-- Title for captions text color setting [CHAR LIMIT=50] -->
    <string name="captions_textcolor">Text color</string>
    <!-- Title for captions edge type setting [CHAR LIMIT=50] -->
    <string name="captions_edgetype">Edge type</string>
    <!-- Title for captions edge color setting [CHAR LIMIT=50] -->
    <string name="captions_edgecolor">Edge color</string>
    <!-- Title for captions background display setting [CHAR LIMIT=50] -->
    <string name="captions_backgroundshow">Show background</string>
    <!-- Title for captions background color setting [CHAR LIMIT=50] -->
    <string name="captions_backgroundcolor">Background color</string>
    <!-- Title for captions bacground opacity setting [CHAR LIMIT=50] -->
    <string name="captions_backgroundopacity">Background opacity</string>
    <!-- Sample text for previewing video caption preferences. [CHAR LIMIT=NONE] -->
    <string name="captioning_preview_text">Captions will look like this</string>
    <!-- Title for captions text opacity setting [CHAR LIMIT=50] -->
    <string name="captions_textopacity">Text opacity</string>
    <!-- Title for captions window display setting [CHAR LIMIT=50] -->
    <string name="captions_windowshow">Show window</string>
    <!-- Title for captions window color setting [CHAR LIMIT=50] -->
    <string name="captions_windowcolor">Window color</string>
    <!-- Title for captions window opacity setting [CHAR LIMIT=50] -->
    <string name="captions_windowopacity">Window opacity</string>

    <!-- Title for caption style 0 [CHAR LIMIT=50] -->
    <string name="captions_style_0">White on black</string>
    <!-- Title for caption style 1 [CHAR LIMIT=50] -->
    <string name="captions_style_1">Black on white</string>
    <!-- Title for caption style 2 [CHAR LIMIT=50] -->
    <string name="captions_style_2">Yellow on black</string>
    <!-- Title for caption style 3 [CHAR LIMIT=50] -->
    <string name="captions_style_3">Yellow on blue</string>
    <!-- Title for customized caption style [CHAR LIMIT=50] -->
    <string name="captions_style_custom">Custom</string>

    <!-- Label for the color white. [CHAR LIMIT=35] -->
    <string name="color_white">White</string>
    <!-- Label for the color black. [CHAR LIMIT=35] -->
    <string name="color_black">Black</string>
    <!-- Label for the color red. [CHAR LIMIT=35] -->
    <string name="color_red">Red</string>
    <!-- Label for the color green. [CHAR LIMIT=35] -->
    <string name="color_green">Green</string>
    <!-- Label for the color blue. [CHAR LIMIT=35] -->
    <string name="color_blue">Blue</string>
    <!-- Label for the color cyan. [CHAR LIMIT=35] -->
    <string name="color_cyan">Cyan</string>
    <!-- Label for the color yellow. [CHAR LIMIT=35] -->
    <string name="color_yellow">Yellow</string>
    <!-- Label for the color magenta. [CHAR LIMIT=35] -->
    <string name="color_magenta">Magenta</string>

    <!-- Title for the accessibility preference to audio description. [CHAR LIMIT=35] -->
    <string name="accessibility_toggle_audio_description_preference_title">Audio description</string>
    <!-- Summary for the accessibility preference to audio description. [CHAR LIMIT=150] -->
    <string name="accessibility_audio_description_summary">Hear a description of what\u2019s happening on screen in supported movies and shows</string>

    <!-- Title for accessibility service status [CHAR LIMIT=50] -->
    <string name="system_accessibility_status">Enable</string>
    <!-- Title for accessibility service configuration [CHAR LIMIT=50] -->
    <string name="system_accessibility_config">Configuration</string>
    <!-- Title for confirmation screen when turning ON accessibility service[CHAR LIMIT=20] -->
    <string name="system_accessibility_service_on_confirm_title">Use <xliff:g id="service" example="TalkBack">%1$s</xliff:g>?</string>
    <!-- Description for confirmation screen when turning ON accessibility service[[CHAR LIMIT=NONE] -->
    <string name="system_accessibility_service_on_confirm_desc"><xliff:g id="service" example="TalkBack">%1$s</xliff:g> will be able to read your screen, display content over other apps, track your interactions with apps or hardware sensors, and interact with apps on your behalf.</string>
    <!-- Title for confirmation screen when turning OFF accessibility service[CHAR LIMIT=50] -->
    <string name="system_accessibility_service_off_confirm_title">Stop <xliff:g id="service" example="TalkBack">%1$s</xliff:g>?</string>
    <!-- Description for confirmation screen when turning OFF accessibility service[[CHAR LIMIT=NONE] -->
    <string name="system_accessibility_service_off_confirm_desc">Selecting OK will stop <xliff:g id="service" example="TalkBack">%1$s</xliff:g>.</string>
    <!-- Title for text to speech output in accessibility settings [CHAR LIMIT=50] -->
    <string name="system_accessibility_tts_output">Text to speech</string>
    <!-- Title for text to speech engine configuration in accessibility settings [CHAR LIMIT=50] -->
    <string name="system_accessibility_tts_engine_config">Engine configuration</string>
    <!-- Title for Set Speak passwords in System Settings Accessibility [CHAR LIMIT=50] -->
    <string name="system_speak_passwords">Speak passwords</string>
    <!-- Title for Set Preferred engine in System Settings Accessibility [CHAR LIMIT=50] -->
    <string name="system_preferred_engine">Preferred engine</string>
    <!-- Title for Set Speech rate in System Settings Accessibility [CHAR LIMIT=50] -->
    <string name="system_speech_rate">Speech rate</string>
    <!-- Title for Set Play sample in System Settings Accessibility [CHAR LIMIT=50] -->
    <string name="system_play_sample">Play sample</string>
    <!-- Title for Set Install voice data in System Settings Accessibility [CHAR LIMIT=50] -->
    <string name="system_install_voice_data">Install voice data</string>
    <!-- Title for Set General in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_general">General</string>
    <!-- Title for Set Debugging in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_debugging">Debugging</string>
    <!-- Title for Set Input in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_input">Input</string>
    <!-- Title for Set Drawing in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_drawing">Drawing</string>
    <!-- Title for Set Monitoring in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_monitoring">Monitoring</string>
    <!-- Title for Set Apps in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_apps">Apps</string>
    <!-- Title for Set Stay awake in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_stay_awake">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</string>
    <!-- Title for Set HDCP checking in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_hdcp_checking">HDCP checking</string>
    <!-- Title for HDMI optimization in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_hdmi_optimization">HDMI optimization</string>
    <!-- Title for reboot confirmation in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_reboot_confirm">Restart now?</string>
    <!-- Description for reboot confirmation in System Settings Developer options [CHAR LIMIT=150] -->
    <string name="system_desc_reboot_confirm">To update this setting, your device needs to be restarted</string>
    <!-- Title for HDCP checking option in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_never_check">Never check</string>
    <!-- Title for HDCP checking option in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_check_for_drm_content_only">Check for DRM content only</string>
    <!-- Title for HDCP checking option in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_always_check">Always check</string>
    <!-- Title for Bluetooth HCI logging Developer option [CHAR LIMIT=50] -->
    <string name="system_bt_hci_log">Bluetooth HCI logging</string>
    <!-- Title for Set Email address in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_email_address">Email address</string>
    <!-- Title for Set USB debugging in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_usb_debugging">USB debugging</string>
    <!-- Title for Set Allow mock locations in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_allow_mock_locations">Allow mock locations</string>
    <!-- Title for Set Select debug app in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_select_debug_app">Select debug app</string>
    <!-- Title for Set Wait for debugger in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_wait_for_debugger">Wait for debugger</string>
    <!-- Title for Set Verify apps over USB in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_verify_apps_over_usb">Verify apps over USB</string>
    <!-- Description for Set verify apps over USB in system settings develop opetions [CHAR LIMIT=150] -->
    <string name="system_desc_verify_apps_over_usb">Check apps installed via ADB/ADT for harmful behavior</string>
    <!-- Title for WiFi Verbose Logging in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_wifi_verbose_logging">Wi-Fi verbose logging</string>
    <!-- Description for Wifi Verbose Logging in system settings develop opetions [CHAR LIMIT=150] -->
    <string name="system_desc_wifi_verbose_logging">Enable Wi-Fi verbose logging</string>
    <!-- Title for Set Show touches in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_touches">Show touches</string>
    <!-- Title for Set Pointer location in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_pointer_location">Pointer location</string>
    <!-- Title for Set Show layout bounds in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_layout_bounds">Show layout bounds</string>
    <!-- Title for Set Show GPU view updates in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_gpu_view_updates">Show GPU view updates</string>
    <!-- Title for Set Show hardware layer in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_hardware_layer">Show hardware layer</string>
    <!-- Title for Set Show GPU overdraw in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_gpu_overdraw">Show GPU overdraw</string>
    <!-- Title for Set Show surface updates in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_surface_updates">Show surface updates</string>
    <!-- Title for Set Window animation scale in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_window_animation_scale">Window animation scale</string>
    <!-- Title for Set Transition animation scale in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_transition_animation_scale">Transition animation scale</string>
    <!-- Title for Set Animator duration scale in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_animator_duration_scale">Animator duration scale</string>
    <!-- Title for Set Strict mode enabled in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_strict_mode_enabled">Strict mode enabled</string>
    <!-- Title for Set Profile GPU rendering in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_profile_gpu_rendering">Profile GPU rendering</string>
    <!-- Title for Set Enable traces in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_enable_traces">Enable traces</string>
    <!-- Title for Set Don't keep activities in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_dont_keep_activities">Don\'t keep activities</string>
    <!-- Title for Set Background process limit in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_background_process_limit">Background process limit</string>
    <!-- Title for Set Show all ANRs in System Settings Developer options [CHAR LIMIT=50] -->
    <string name="system_show_all_anrs">Show all ANRs</string>

    <!-- Description for stay awake System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_stay_awake">Disable sleep</string>
    <!-- Description for hdcp checking System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_hdcp_checking">Use for DRM content only</string>
    <!-- Description for HDMI optimization System Settings Developer options [CHAR LIMIT=200] -->
    <string name="system_desc_hdmi_optimization">Optimize display for maximum resolution or maximum framerate. This only affects Ultra HD displays. Changing this setting will restart your device.</string>
    <!-- Description for Bluetooth HCI Logging Developer option [CHAR LIMIT=100] -->
    <string name="system_desc_bt_hci_log">Enable Bluetooth HCI snoop logging</string>
    <!-- Description for usb debugging in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_usb_debugging">Debug mode when USB connected</string>
    <!-- Description for wait for debugger in System Settings Developer options [CHAR LIMIT=120] -->
    <string name="system_desc_wait_for_debugger">Debugged application waits for debugger to attach before executing</string>
    <!-- Description for show layout bounds in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_show_layout_bounds">Show clip bounds, margins, etc.</string>
    <!-- Description for show GPU view updates in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_show_gpu_view_updates">Flash views inside windows when drawn with the GPU</string>
    <!-- Description for show hardware layer in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_show_hardware_layer">Flash hardware layers green when they update</string>
    <!-- Description for show gpu overdraw in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_show_gpu_overdraw">From best to worst: blue, green, light red, red</string>
    <!-- Description for show surface updates in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_show_surface_updates">Flash entire window surfaces when they update</string>
    <!-- Description for strict mode enabled in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_strict_mode_enabled">Flash screen when apps do long operations on main thread</string>
    <!-- Description for profile GPU rendering in System Settings Developer options [CHAR LIMIT=100] -->
    <string name="system_desc_profile_gpu_rendering">Measure rendering time in adb shell dumpsys gfxinfo</string>

    <!-- Security -->
    <skip />
    <!-- Title for action to allow installation of applications from unknown sources [CHAR LIMIT=50]-->
    <string name="security_unknown_sources_title">Unknown sources</string>
    <!-- Description for action to allow installation of applications from unknown sources [CHAR LIMIT=NONE]-->
    <string name="security_unknown_sources_desc">Allow installation of apps from sources other than the Play Store</string>
    <!-- Title for confirmation dialog to allow installation of applications from unknown sources [CHAR LIMIT=50]-->
    <string name="security_unknown_sources_confirm_title">Allow unknown sources</string>
    <!-- Description for confirmation to allow installation of applications from unknown sources [CHAR LIMIT=NONE]-->
    <string name="security_unknown_sources_confirm_desc">Your device and personal data are more vulnerable to attack by apps from unknown sources. You agree that you are solely responsible for any damage to your device or loss of data that may result from using these apps.</string>

    <!-- Summary for HDCP checking preference. [CHAR LIMIT=100]-->
    <string name="system_hdcp_checking_never">Never</string>
    <!-- Summary for HDCP checking preference. [CHAR LIMIT=100]-->
    <string name="system_hdcp_checking_drm">For DRM content</string>
    <!-- Summary for HDCP checking preference. [CHAR LIMIT=100]-->
    <string name="system_hdcp_checking_always">Always</string>

    <!-- Title for HDMI optimization preference value [CHAR LIMIT=60] -->
    <string name="system_hdmi_optimization_best_resolution">Best resolution</string>
    <!-- Title for HDMI optimization preference value [CHAR LIMIT=60] -->
    <string name="system_hdmi_optimization_best_framerate">Best framerate</string>

    <!-- Title for debug overdraw preference. [CHAR LIMIT=35] -->
    <string name="system_hw_overdraw_off">Off</string>
    <!-- Title for debug overdraw preference. [CHAR LIMIT=35] -->
    <string name="system_hw_overdraw_areas">Show overdraw areas</string>
    <!-- Title for debug overdraw preference. [CHAR LIMIT=35] -->
    <string name="system_hw_overdraw_counter">Show overdraw counter</string>


    <!-- UI debug setting: label for app picker to select no application [CHAR LIMIT=50] -->
    <string name="no_application">Nothing</string>

    <!-- Title for OpenGL traces preference. [CHAR LIMIT=35] -->
    <string name="enable_opengl_traces_none">None</string>
    <!-- Title for OpenGL traces preference. Do not translate "Logcat" [CHAR LIMIT=35] -->
    <string name="enable_opengl_traces_logcat">Logcat</string>
    <!-- Title for OpenGL traces preference. Do not translate "Systrace" [CHAR LIMIT=35] -->
    <string name="enable_opengl_traces_systrace">Systrace (Graphics)</string>
    <!-- Title for OpenGL traces preference. "Call stack" is a developer term. Do not translate "glGetError" [CHAR LIMIT=35] -->
    <string name="enable_opengl_traces_error">Call stack on glGetError</string>

    <!-- Titles for window animation scale preference. [CHAR LIMIT=35] -->
    <string-array name="animation_scale_entries">
        <item>Animation off</item>
        <item>Animation scale .5x</item>
        <item>Animation scale 1x</item>
        <item>Animation scale 1.5x</item>
        <item>Animation scale 2x</item>
        <item>Animation scale 5x</item>
        <item>Animation scale 10x</item>
    </string-array>

    <!-- Values for window animation scale preference. -->
    <string-array name="animation_scale_values" translatable="false" >
        <item>0</item>
        <item>.5</item>
        <item>1</item>
        <item>1.5</item>
        <item>2</item>
        <item>5</item>
        <item>10</item>
    </string-array>

    <!-- Title for frame time tracking preference. [CHAR LIMIT=35] -->
    <string name="track_frame_time_off">Off</string>
    <!-- Title for frame time tracking preference. [CHAR LIMIT=35] -->
    <string name="track_frame_time_bars">On screen as bars</string>
    <!-- Title for frame time tracking preference. Do not translate "adb shell dumpsys gfxinfo" [CHAR LIMIT=35] -->
    <string name="track_frame_time_gfxinfo">In adb shell dumpsys gfxinfo</string>

    <!-- Title for app process limit preference. [CHAR LIMIT=35] -->
    <string name="app_process_limit_standard">Standard limit</string>
    <!-- Title for app process limit preference. [CHAR LIMIT=35] -->
    <string name="app_process_limit_zero">No background processes</string>
    <!-- Title for app process limit preference. [CHAR LIMIT=35] -->
    <string name="app_process_limit_one">At most 1 process</string>
    <!-- Title for app process limit preference. [CHAR LIMIT=35] -->
    <string name="app_process_limit_two">At most 2 processes</string>
    <!-- Title for app process limit preference. [CHAR LIMIT=35] -->
    <string name="app_process_limit_three">At most 3 processes</string>
    <!-- Title for app process limit preference. [CHAR LIMIT=35] -->
    <string name="app_process_limit_four">At most 4 processes</string>

    <!--  Description for the preference screen to enable the global gesture that turns on accessibility. [CHAR LIMIT=none] -->

    <!-- TTS settings -->

    <!-- Text-to-speech speech rate choice [CHAR LIMIT=30] -->
    <string name="tts_rate_very_slow">Very slow</string>
    <!-- Text-to-speech speech rate choice [CHAR LIMIT=30] -->
    <string name="tts_rate_slow">Slow</string>
    <!-- Text-to-speech speech rate choice [CHAR LIMIT=30] -->
    <string name="tts_rate_normal">Normal</string>
    <!-- Text-to-speech speech rate choice [CHAR LIMIT=30] -->
    <string name="tts_rate_fast">Fast</string>
    <!-- Text-to-speech speech rate choice [CHAR LIMIT=30] -->
    <string name="tts_rate_very_fast">Very fast</string>

    <!-- Keyboard Settings -->
    <!-- Title for launch settings Intent for IME or Autofill.[CHAR LIMIT=80] -->
    <string name="title_settings"><xliff:g id="name" example="Gboard">%1$s</xliff:g> Settings</string>
    <!-- Title for Current Keyboard [CHAR LIMIT=80] -->
    <string name="title_current_keyboard">Current keyboard</string>
    <!-- Title for configure current keyboard [CHAR LIMIT=80] -->
    <string name="title_configure">Configure</string>
    <!-- Description for configure current keyboard [CHAR LIMIT=100] -->
    <string name="desc_configure_keyboard">Keyboard options</string>

    <!-- Title for Current Autofill Service [CHAR LIMIT=80] -->
    <string name="title_current_autofill_service">Current Autofill Service</string>
    <!-- Dialog title for Select Autofill Service [CHAR LIMIT=80] -->
    <string name="title_select_autofill_service">Select Autofill Service</string>
    <!-- Option to select no Autofill Service [CHAR LIMIT=80] -->
    <string name="autofill_none">None</string>

    <!-- Message of the warning dialog for setting the auto-fill app. [CHAR_LIMIT=NONE] -->
    <string name="autofill_confirmation_message">
        <![CDATA[
        <b>Make sure you trust this app</b>
        <br/>
        <br/>
        <xliff:g id="app_name" example="Password service">%1$s</xliff:g> uses what\'s on
        your screen to determine what can be autofilled.
        ]]>
    </string>

    <!-- String shown when computing the total size of an application's cache or data files. [CHAR LIMIT=30] -->
    <string name="computing_size">Computing\u2026</string>

    <!-- Title for selecting wifi network [CHAR LIMIT=150] -->
    <string name="title_select_wifi_network">Select your Wi-Fi network</string>

    <!-- Action option which allows the change of the name this device is known by other wifi display devices [CHAR LIMIT=40] -->
    <string name="accessories_wifi_display_rename_device">Rename</string>

    <!-- Action option which allows the enabling or disabling of wifi display [CHAR LIMIT=40] -->
    <string name="accessories_wifi_display_enable">Wi-Fi Display</string>

    <!-- Action option which allows the enabling or disabling the PIN requirement of wifi display [CHAR LIMIT=40] -->
    <string name="accessories_wifi_display_pin_required">PIN required</string>

    <!-- Disambiguation Activity-->
    <!-- Title of intent resolver activity when selecting an application to run. [CHAR LIMIT=50]-->
    <string name="whichApplication">Complete action using</string>
    <!-- Quetsion about always using the selected application resolution in the future. See the "Complete action using" dialog title [CHAR LIMIT=50]-->
    <string name="alwaysUseQuestion">Always use this option for this action?</string>
    <!-- Option to always use the selected application resolution in the future. See the "Complete action using" dialog title [CHAR LIMIT=50]-->
    <string name="alwaysUseOption">Always use</string>
    <!-- Option to only use the selected option this time. See the "Complete action using" dialog title [CHAR LIMIT=50]-->
    <string name="justOnceOption">Just once</string>
    <!-- Text to display when there are no activities found to display in the activity chooser. See the whichApplication title.[CHAR LIMIT=50] -->
    <string name="noApplications">No apps can perform this action.</string>
    <!-- Action to go back to the previous screen, when no apps have been found to perform the requested action. [CHAR LIMIT=50]-->
    <string name="noAppsGoBack">Back</string>

    <!-- TV input settings row -->
    <string name="inputs_inputs">Inputs</string>
    <!-- Header of HDMI CEC device control [CHAR LIMIT=50] -->
    <string name="inputs_header_cec">Consumer Electronic Control (CEC)</string>
    <!-- Title of CEC device settings [CHAR LIMIT=30] -->
    <string name="inputs_cec_settings">Device control settings</string>
    <!-- Name of predefined name for TV input (Blu-ray player) [CHAR LIMIT=30] -->
    <string name="inputs_blu_ray">Blu-ray</string>
    <!-- Name of predefined name for TV input (Cable TV) [CHAR LIMIT=30] -->
    <string name="inputs_cable">Cable</string>
    <!-- Name of predefined name for TV input (DVD player) [CHAR LIMIT=30] -->
    <string name="inputs_dvd">DVD</string>
    <!-- Name of predefined name for TV input (Gaming device) [CHAR LIMIT=30] -->
    <string name="inputs_game">Game console</string>
    <!-- Name of predefined name for TV input (Aux) [CHAR LIMIT=30] -->
    <string name="inputs_aux">Aux</string>
    <!-- Title of using customized name for a TV input [CHAR LIMIT=30] -->
    <string name="inputs_custom_name">Custom name</string>
    <!-- Description for action of setting a custom name for a TV input [CHAR LIMIT=200] -->
    <string name="inputs_custom_name_description_fmt">Enter a name for the <xliff:g id="input" example="HDMI">%1$s</xliff:g> input.</string>
    <!-- Title of option to hide. It will describe current state of the inputs instead of the action [CHAR LIMIT=30] -->
    <string name="inputs_hide">Hidden</string>
    <!-- Title of option to show this input while switching.[CHAR LIMIT=50] -->
    <string name="inputs_show">Show this input</string>
    <!-- Header for input name options [CHAR LIMIT=50] -->
    <string name="input_header_names">Name</string>
    <!-- Option to enable HDMI control [CHAR LIMIT=30] -->
    <string name="inputs_hdmi_control">HDMI control</string>
    <!-- Description of HDMI control option [CHAR LIMIT=50] -->
    <string name="inputs_hdmi_control_desc">Allow the TV to control HDMI devices</string>
    <!-- Option to enable device auto power off [CHAR LIMIT=30] -->
    <string name="inputs_device_auto_off">Device auto power off</string>
    <!-- Description of device auto power off option [CHAR LIMIT=50] -->
    <string name="inputs_device_auto_off_desc">Power off HDMI devices with the TV</string>
    <!-- Option to enable TV auto power on [CHAR LIMIT=30] -->
    <string name="inputs_tv_auto_on">TV auto power on</string>
    <!-- Description of TV auto power on [CHAR LIMIT=50] -->
    <string name="inputs_tv_auto_on_desc">Power on the TV with HDMI device</string>
    <!-- Header for connected TV input(s) [CHAR LIMIT=30] -->
    <string name="inputs_header_connected_input"> {count, plural,
        =1    {Connected Input}
        other {Connected Inputs}
        }
    </string>
    <!-- Header for standby TV input(s) [CHAR LIMIT=30] -->
    <string name="inputs_header_standby_input"> {count, plural,
        =1    {Standby Input}
        other {Standby Inputs}
        }
    </string>
    <!-- Header for disconnected TV input(s) [CHAR LIMIT=30] -->
    <string name="inputs_header_disconnected_input"> {count, plural,
        =1    {Not Connected Input}
        other {Not Connected Inputs}
        }
    </string>

    <!-- Summary for add restricted profile entry in the choice dialog [CHAR LIMIT=none] -->
    <string name="user_add_profile_item_summary">Restrict access to apps and other content in your account</string>
    <!-- User details new restricted profile name [CHAR LIMIT=30] -->
    <string name="user_new_profile_name">Restricted Profile</string>
    <!-- Summary for app entries that are controlled by another entry [CHAR LIMIT=none] -->
    <string name="user_restrictions_controlled_by">Controlled by <xliff:g id="app">%1$s</xliff:g></string>
    <!-- Summary for apps that aren't supported in limited users [CHAR LIMIT=none] -->
    <string name="app_not_supported_in_limited">This app is not supported in restricted profiles</string>
    <!-- Summary text for apps that are allowed to access accounts from the primary user [CHAR LIMIT=none] -->
    <string name="app_sees_restricted_accounts">This app can access your accounts</string>
    <!-- Restrictions title for allowing location sharing [CHAR LIMIT=35] -->
    <string name="restriction_location_enable_title">Location</string>
    <!-- Restrictions summary for allowing location sharing [CHAR LIMIT=100] -->
    <string name="restriction_location_enable_summary" >Let apps use your location information</string>
    <!-- Action to switch to a restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_switch_to" >Enter restricted profile</string>
    <!-- Action to switch out of a restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_switch_out" >Exit restricted profile</string>
    <!-- Title for action to delete a restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_delete_title" >Delete restricted profile</string>
    <!-- Title for action to create a restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_create_title">Create restricted profile</string>
    <!-- Title for action to configure a restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_configure_title" >Settings</string>
    <!-- Title for action to configure apps for a restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_configure_apps_title" >Allowed apps</string>
    <!-- An action label indicating the package will be or is allowed [CHAR LIMIT=100] -->
    <string name="restricted_profile_allowed" >Allowed</string>
    <!-- An action label indicating the package will be or is not allowed [CHAR LIMIT=100] -->
    <string name="restricted_profile_not_allowed" >Not allowed</string>
    <!-- Action to customize restrictions for a package [CHAR LIMIT=100] -->
    <string name="restricted_profile_customize_restrictions" >Customize restrictions</string>
    <!-- Description for action to configure apps for a restricted profile indicating the number of allow apps [CHAR LIMIT=100] -->
    <string name="restricted_profile_configure_apps_description_loading" >One moment\u2026</string>
    <!-- Title for action to change the PIN code to use when exiting restricted profile [CHAR LIMIT=100] -->
    <string name="restricted_profile_change_password_title" >Change pin</string>

    <!-- Title of preference screen to create a restricted profile. [CHAR LIMIT=30] -->
    <string name="restricted_profile_create_preference_screen">Create restricted profile?</string>
    <!-- Placeholder to indicate that restricted profile is already created. [CHAR LIMIT=30] -->
    <string name="restricted_profile_already_created_placeholder">Already Created</string>
    <!-- Action to skip creating a restricted profile. [CHAR LIMIT=30] -->
    <string name="restricted_profile_skip_action">Skip</string>
    <!-- Action to create pin for a restricted profile. [CHAR LIMIT=30] -->
    <string name="restricted_profile_create_pin_action">Create PIN</string>

    <!-- Title of preference screen to create a restricted profile. [CHAR LIMIT=30] -->
    <string name="restricted_profile_enter_preference_screen">Enter restricted profile?</string>
    <!-- Placeholder to indicated restricted profile is not found. [CHAR LIMIT=30] -->
    <string name="restricted_profile_enter_not_found_placeholder">No restricted profile</string>
    <!-- Placeholder to indicated restricted profile is already entered. [CHAR LIMIT=30] -->
    <string name="restricted_profile_enter_already_entered_placeholder">Already entered</string>

    <!-- Description for action to configure an application's restriction [CHAR LIMIT=200] -->
    <string name="restriction_description" ><xliff:g id="description">%1$s</xliff:g>\n<xliff:g id="value">%2$s</xliff:g></string>
    <!-- Summary for a case when app entries that are controlled by another entry and app can access user accounts [CHAR LIMIT=none] -->
    <string name="app_sees_restricted_accounts_and_controlled_by">This app can access your accounts. Controlled by <xliff:g id="app">%1$s</xliff:g></string>
    <!-- PIN UX -->
    <eat-comment />
    <string name="font" translatable="false">sans-serif</string>
    <string name="light_font" translatable="false">sans-serif-light</string>
    <!-- Title of PIN dialog when an user is asked to enter PIN to unlock channel.
         [CHAR LIMIT=50] -->
    <string name="pin_enter_unlock_channel">Enter PIN to watch this channel</string>
    <!-- Title of PIN dialog when an user is asked to enter PIN to unlock program.
         [CHAR LIMIT=50] -->
    <string name="pin_enter_unlock_program">Enter PIN to watch this program</string>
    <!-- Title of PIN dialog when an user tries to change Parental control setting.
         [CHAR LIMIT=50] -->
    <string name="pin_enter_pin">Enter PIN</string>
    <!-- Title of PIN dialog when an user is asked to set a PIN for the first time.
         [CHAR LIMIT=50] -->
    <string name="pin_enter_new_pin">Set a new PIN</string>
    <!-- Title of PIN dialog when an user is asked to set a PIN. [CHAR LIMIT=50] -->
    <string name="pin_enter_again">Re-enter new PIN</string>
    <!-- Title of PIN dialog when an user is about to change older PIN. [CHAR LIMIT=50] -->
    <string name="pin_enter_old_pin">Enter old PIN</string>
    <!-- Message shown in the dialog when the user entered the wrong. [CHAR LIMIT=128] -->
    <string name="pin_enter_wrong_seconds">You entered the wrong PIN 5 times.\nTry again in <xliff:g id="relative_time_span" example="60">%1$d</xliff:g> seconds.</string>
    <!-- Toast message when an user entered wrong PIN. [CHAR LIMIT=128] -->
    <string name="pin_toast_wrong">Wrong PIN, try again</string>
    <!-- Toast message when an user couldn't pass the PIN confirmation. [CHAR LIMIT=128] -->
    <string name="pin_toast_not_match">Try again, PIN doesn\'t match</string>

    <!-- Message displayed to prompt the user to input the network password, ^1 will be replaced with the name of the network and should be a possive form related to password [CHAR LIMIT=NONE] -->
    <string name="wifi_setup_input_password">Enter password for <xliff:g id="ssid">%1$s</xliff:g></string>
    <!-- Summary displayed to explain next steps for user to submit network password, ^1 be replaced with keyboard icon to be selected [CHAR LIMIT=NONE] -->
    <string name="wifi_setup_description">Select <xliff:g id="wifi_submit_icon">%1$s</xliff:g> to continue.</string>
    <!-- The subtitle wifi setup description presents an action done icon to match the action done keyboard icon. This string, therefore, should match the content description of action done on the keyboard [CHAR LIMIT=NONE]-->
    <string name="label_done_key">Done</string>
    <!-- Message displayed when the selected Wi-Fi network has been connected to [CHAR LIMIT=40] -->
    <string name="wifi_setup_connection_success">Connected successfully</string>
    <!-- Message displayed when the Wi-Fi network's configuration has been saved [CHAR LIMIT=40] -->
    <string name="wifi_setup_save_success">Saved successfully</string>

    <!-- Application management application version label [CHAR LIMIT=NONE] -->
    <string name="device_apps_app_management_version">Version <xliff:g id="app_version">%1$s</xliff:g></string>
    <!-- Application management description for opening the application [CHAR LIMIT=NONE] -->
    <string name="device_apps_app_management_open">Open</string>
    <!-- Application management choice for force stopping the application [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_force_stop">Force stop</string>
    <!-- Application management description for force stopping the application [CHAR LIMIT=NONE] -->
    <string name="device_apps_app_management_force_stop_desc">If you force stop an app, it may misbehave.</string>
    <!-- Application management choice for uninstalling the application [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_uninstall">Uninstall</string>
    <!-- Application management choice for uninstalling updates for the application [CHAR_LIMIT=40] -->
    <string name="device_apps_app_management_uninstall_updates">Uninstall updates</string>
    <!-- Application management description for uninstalling updates for the application [CHAR_LIMIT=NONE] -->
    <string name="device_apps_app_management_uninstall_updates_desc">All updates to this Android system app will be uninstalled.</string>
    <!-- Application management choice for disabling the application [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_disable">Disable</string>
    <!-- Application management description for disabling the application [CHAR LIMIT=NONE] -->
    <string name="device_apps_app_management_disable_desc">Do you want to disable this app?</string>
    <!-- Application management choice for enabling the application [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_enable">Enable</string>
    <!-- Application management description for enabling the application [CHAR LIMIT=NONE] -->
    <string name="device_apps_app_management_enable_desc">Do you want to enable this app?</string>
    <!-- Application management choice for displaying the application's size [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_storage_used">Storage used</string>
    <!-- Application management description for displaying the applicantion's size [CHAR_LIMIT=NONE] -->
    <string name="device_apps_app_management_storage_used_desc"><xliff:g id="size" example="30.2MB">%1$s</xliff:g> used in <xliff:g id="volume" example="internal storage">%2$s</xliff:g></string>
    <!-- Application management choice for clearing the application's data [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_clear_data">Clear data</string>
    <!-- Application management description for clearing the application's data [CHAR LIMIT=NONE] -->
    <string name="device_apps_app_management_clear_data_desc">All this app’s data will be deleted permanently.\nThis includes all files, settings, accounts, databases, etc.</string>
    <!-- Application management choice for clearing the application's default actions [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_clear_default">Clear defaults</string>
    <!-- Application management description for defaults are set for the application [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_clear_default_set">Set to launch this app for some actions</string>
    <!-- Application management description for defaults aren't set for the application [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_clear_default_none">No defaults set</string>
    <!-- Application management choice for clearing the application's cache [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_clear_cache">Clear cache</string>
    <!-- Application management choice for changing the application's notifications option [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_notifications">Notifications</string>
    <!-- Application management choice for displaying the application's open source licenses [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_licenses">Third Party Source</string>
    <!-- Application management choice for displaying the application's permissions [CHAR LIMIT=40] -->
    <string name="device_apps_app_management_permissions">Permissions</string>
    <!-- Application management toast message when an app cannot be launched [CHAR LIMIT=100]-->
    <string name="device_apps_app_management_not_available">Application unavailable</string>
    <!-- Label for showing apps that have not been used for months. [CHAR LIMIT=40]-->
    <string name="unused_apps">Unused apps</string>
    <!-- General settings choice for agreeing to the displayed action [CHAR LIMIT=40] -->
    <string name="settings_ok">OK</string>
    <!-- General settings choice for confirming the displayed action [CHAR LIMIT=40] -->
    <string name="settings_confirm">Confirm</string>
    <!-- General settings choice for disagreeing with the displayed action [CHAR LIMIT=40] -->
    <string name="settings_cancel">Cancel</string>
    <!-- General settings choice for on [CHAR LIMIT=40] -->
    <string name="settings_on">On</string>
    <!-- General settings choice for off [CHAR LIMIT=40] -->
    <string name="settings_off">Off</string>
    <!-- Screen saver choice for not having a screen saver [CHAR LIMIT=40] -->
    <string name="device_daydreams_none">Turn screen off</string>
    <!-- Screen saver choice for selecting a different screen saver [CHAR LIMIT=40] -->
    <string name="device_daydreams_select">Screen saver</string>
    <!-- Screen saver choice for testing the selected screen saver [CHAR LIMIT=40] -->
    <string name="device_daydreams_test">Start now</string>
    <!-- Screen saver choice for configuring the time before the device goes to sleep [CHAR LIMIT=40] -->
    <string name="device_daydreams_sleep">When to start</string>
    <!-- Screen saver description for configuring the time before the device goes to sleep [CHAR LIMIT=NONE] -->
    <string name="device_daydreams_sleep_description">Screen saver begins after this period of inactivity. If no screen saver is selected, the display turns off.</string>
    <!-- Screen saver summary for displaying the time before the device goes to sleep -->
    <string name="device_daydreams_sleep_summary">After <xliff:g id="sleep_description" example="3 minutes">%1$s</xliff:g> of inactivity</string>
    <!-- Energy saver choice for configuring the time before the device's screen goes off after dreaming [CHAR LIMIT=30] -->
    <string name="device_energy_saver_screen_off">Turn off display</string>
    <!-- Energy saver summary for configuring the time before the device's screen goes off after dreaming [CHAR LIMIT=NONE] -->
    <string name="device_energy_saver_timeout_description"><xliff:g id="sleep_description" example="4 hours">%1$s</xliff:g></string>
    <!-- The title of dialog asking users to confirm long screen off delay. [CHAR LIMIT =70] -->
    <string name="device_energy_saver_confirmation_title">Confirm Power &amp; Energy setting</string>
    <!-- The description of dialog asking users to confirm long screen off delay. [CHAR LIMIT=250] -->
    <string name="device_energy_saver_confirmation_message">Leaving your TV on for a long period of time may increase energy use</string>
    <!-- The title of dialog asking users to confirm disabling turning the screen off during media playback. [CHAR LIMIT=70] -->
    <string name="device_energy_saver_disable_allow_turning_screen_off_title">Disable energy saver setting</string>
    <!-- The description of dialog asking users to confirm disabling turning the screen off during media playback. [CHAR LIMIT=250] -->
    <string name="device_energy_saver_disable_allow_turning_screen_off_text">Please confirm to prevent the display from turning off while watching, which has the potential for increased energy use.</string>
    <!-- Energy saver choice for configuring the time before the device goes to full sleep after a period of inactivity. [CHAR LIMIT=60] -->
    <string name="device_energy_saver_sleep_timeout">When inactive</string>
    <!-- Energy saver choice for configuring the time before the device goes to full sleep due to user inattentiveness even if the system is holding wakelocks. [CHAR LIMIT=60] -->
    <string name="device_energy_saver_attentive_timeout">When watching</string>
    <!-- Energy saver settings screen category [CHAR LIMIT=100] -->
    <string name="device_energy_saver_category_title">Automatically turn off</string>
    <!-- Energy saver dialog title for configuring the time before the device goes to full sleep after a period of inactivity. [CHAR LIMIT=NONE] -->
    <string name="device_energy_saver_sleep_timeout_dialog_title">Automatically turn off when inactive</string>
    <!-- Energy saver dialog title for configuring the time before the device goes to full even if system is holding wakelocks. [CHAR LIMIT=NONE] -->
    <string name="device_energy_saver_attentive_timeout_dialog_title">Automatically turn off when watching</string>
    <!-- Energy saver dialog confirmation error message when sleep timer is longer than inattentive timer. [CHAR LIMIT=NONE] -->
    <string name="device_energy_saver_validation_sleep">\"When inactive\" timer must be shorter than \"When watching\" timer</string>
    <!-- Energy saver dialog confirmation error message when inattentive timer is shorter than sleep timer. [CHAR LIMIT=NONE] -->
    <string name="device_energy_saver_validation_attentive">\"When watching\" timer must be longer than \"When inactive\" timer</string>
    <!-- The title of the "Limit network connection in standby" toggle. [CHAR LIMIT=40] -->
    <string name="limit_network_in_standby_toggle_title">Limit network connection in standby</string>
    <!-- The subtitle of the "Limit network connection in standby" toggle. [CHAR LIMIT=60] -->
    <string name="limit_network_in_standby_toggle_summary">Uses less energy in standby mode</string>
    <!-- The info text for the "Limit network connection in standby" toggle. [CHAR LIMIT=NONE] -->
    <string name="limit_network_in_standby_toggle_info">Your TV will be disconnected from your network when in standby mode, except to receive automatic updates. This may decrease your TV’s energy use, though it also means you may not be able to use functions like Cast and Google Assistant while in standby.</string>
    <!-- The title of the confirmation dialog when disabling "Limit network connection in standby". [CHAR LIMIT=60] -->
    <string name="limit_network_in_standby_confirm_title">Allow network connection in standby</string>
    <!-- The message of the confirmation dialog when disabling "Limit network connection in standby". [CHAR LIMIT=NONE] -->
    <string name="limit_network_in_standby_confirm_message">Allowing network connection in standby will increase standby energy use.</string>
    <!-- Default summary text of the "Configure backup account" setting [CHAR LIMIT=80] -->
    <string name="backup_configure_account_default_summary">No account is currently storing backed up data</string>
    <!-- Dialog title for confirmation to erase backup data from server -->
    <string name="backup_erase_dialog_title"></string>
    <!-- Dialog title for confirmation to erase backup data from server -->
    <string name="backup_erase_dialog_message">Stop backing up your Wi-Fi passwords, bookmarks, other settings, and app data, and erase all copies on Google servers?</string>
    <!-- Privacy choice for configuring backing up data [CHAR LIMIT=40] -->
    <string name="privacy_backup_data">Back up my data</string>
    <!-- Privacy choice for choosing which account to backup [CHAR LIMIT=40] -->
    <string name="privacy_backup_account">Backup account</string>
    <!-- Privacy choice for configuring automatic restore [CHAR LIMIT=40] -->
    <string name="privacy_automatic_restore">Automatic restore</string>
    <!-- Factory reset choice for initiating a factory reset [CHAR LIMIT=40] -->
    <string name="factory_reset_device">Reset device</string>
    <!-- Factory reset info description about what happens when
        you perform a factory reset [CHAR LIMIT=NONE] -->
    <string name="factory_reset_description">This will restore your device
        to default settings and erase all data, accounts, files,
        and downloaded apps.</string>
    <!-- Factory reset info description about what happens when
        you perform a factory reset [CHAR LIMIT=NONE] -->
    <string name="factory_reset_info_description">This will restore your device
        to default settings and erase all data, accounts, files,
        and downloaded apps.</string>
    <!-- Factory reset content description for talkback mode with
        comma-separated title (device_reset) and info text
        (factory_reset_description) [CHAR LIMIT=NONE] -->
    <string name="factory_reset_content_description">Factory Reset, This will
        restore your device to default settings and erase all data, accounts,
        files, and downloaded apps.</string>
    <!-- Factory reset screen, message on screen after user selects Reset phone button -->
    <string name="confirm_factory_reset_description">Erase all your personal information and downloaded apps on this device? You can\'t reverse this action!</string>
    <!-- Factory reset screen, button on screen after user selects Reset phone button -->
    <string name="confirm_factory_reset_device">Erase everything</string>


    <!-- Title for screen where user selects a name for their device [CHAR LIMIT=NONE] -->
    <string name="select_device_name_title">Choose a name for your <xliff:g id="devicemodel" example="Nexus Player">%1$s</xliff:g></string>
    <!-- Description for screen where user selects a name for their device [CHAR LIMIT=NONE] -->
    <string name="select_device_name_description">Give your device a name to help identify it when casting or connecting to it from other devices.</string>
    <!-- Rooms where a user's device might be placed [CHAR LIMIT=40] -->
    <string-array name="rooms">
        <!-- [CHAR LIMIT=40] -->
        <item>Android TV</item>
        <!-- [CHAR LIMIT=40] -->
        <item>Living Room TV</item>
        <!-- [CHAR LIMIT=40] -->
        <item>Family Room TV</item>
        <!-- [CHAR LIMIT=40] -->
        <item>Bedroom TV</item>
    </string-array>
    <!-- String displayed for option where user will type in a room name rather than selecting from the list of defaults [CHAR LIMIT=40] -->
    <string name="custom_room">Enter custom name&#8230;</string>
    <!-- Title of settings summary/status screen [CHAR LIMIT=100] -->
    <string name="device_rename_title">Rename this <xliff:g id="devicemodel" example="Nexus Player">%1$s</xliff:g></string>
    <!-- Description on summary/status screen that tells you what the name of your device is [CHAR LIMIT=NONE] -->
    <string name="device_rename_description">This <xliff:g id="devicemodel" example="Nexus Player">%1$s</xliff:g> is currently named \"<xliff:g id="devicename" example="Living Room Player">%2$s</xliff:g>\"</string>
    <!-- The title of the suggestion to notify the user to name the device [CHART LIMIT = 50] -->
    <string name="device_name_suggestion_title">Set your device name</string>
    <!-- The summary of the suggestion to notify the user to name the device [CHAR LIMIT = 100] -->
    <string name="device_name_suggestion_summary">Use this name when casting photos, videos, and more from your phone</string>
    <!-- The 'yes' or 'edit' equivalent in a yes/no choice circumstance [CHAR LIMIT=30] -->
    <string name="change_setting">Change</string>
    <!-- The 'no' or  'keep the same' equivalent in a yes/no choice circumstance [CHAR LIMIT=30]-->
    <string name="keep_settings">Don\'t change</string>

    <!-- Group header for app permissions [CHAR LIMIT=20] -->
    <string name="apps_permissions">Permissions</string>
    <!-- Item title for app permissions [CHAR LIMIT=20] -->
    <string name="device_apps_permissions">App permissions</string>
    <!-- Summary of number of apps currently granted a single permission [CHAR LIMIT=45] -->
    <string name="app_permissions_group_summary"><xliff:g id="count" example="10">%1$d</xliff:g> of <xliff:g id="count" example="10">%2$d</xliff:g> apps allowed</string>

    <!-- Strings for dialog title when asking to the user whether to allow an app to enable discovery mode -->
    <string name="bluetooth_permission_request">"Bluetooth permission request"</string>

    <!-- About phone screen, status item label  [CHAR LIMIT=60] -->
    <string name="security_patch">Android TV OS security patch level</string>

    <!-- App picker screen title -->
    <string name="choose_application">Choose application</string>

    <!-- Summary Title for saying that the preference is experimental and will evolve over time due to User feedback. [CHAR LIMIT=NONE] -->
    <string name="experimental_preference">(Experimental)</string>

    <!-- Title of button to confirm rebooting into safe mode. [CHAR LIMIT=50] -->
    <string name="reboot_safemode_action">Reboot to safe mode</string>

    <!-- Shutdown Confirmation Dialog.  Message in the confirmation dialog
         when the user asks to reboot into safe mode. [CHAR LIMIT=50] -->
    <string name="reboot_safemode_confirm">Do you want to reboot into safe mode?</string>
    <!-- Shutdown Confirmation Dialog. Detailed message in the confirmation dialog when the user asks to reboot into safe mode [CHAR LIMIT=NONE] -->
    <string name="reboot_safemode_desc">This will disable all third party applications you have installed. They will be restored when you reboot again.</string>

    <!-- Toast shown when the user triggers the capture of a bugreport [CHAR LIMIT=50] -->
    <string name="capturing_bugreport">Capturing bug report</string>

    <!-- Title for the 'available virtual keyboards' preference sub-screen. [CHAR LIMIT=50] -->
    <string name="available_virtual_keyboard_category">Available virtual keyboards</string>
    <!-- Title for the preference entry for managing keyboards [CHAR LIMIT=50] -->
    <string name="manage_keyboards">Manage keyboards</string>

    <!-- Preference summary text for an app when it is allowed for a permission. [CHAR LIMIT=45] -->
    <string name="app_permission_summary_allowed">Allowed</string>
    <!-- Preference summary text for an app when it is disallowed for a permission. [CHAR LIMIT=45] -->
    <string name="app_permission_summary_not_allowed">Not allowed</string>

    <!-- Title of usage access screen [CHAR LIMIT=30] -->
    <string name="usage_access">Usage access</string>
    <!-- Description of the usage access setting [CHAR LIMIT=NONE] -->
    <string name="usage_access_description">Usage access allows an app to track what other apps you\u2019re using and how often, as well as your carrier, language settings, and other details.</string>

    <!-- Title of high power app settings page [CHAR LIMIT=30] -->
    <string name="high_power_apps">Energy optimization</string>
    <!-- Description of the high power app settings page [CHAR LIMIT=NONE] -->
    <string name="high_power_apps_description">Optimize energy use of apps</string>
    <!-- Empty state when no apps are found for optimizing -->
    <string name="high_power_apps_empty">No apps need optimizing</string>
    <!-- Summary of app allowed to use a lot of power [CHAR LIMIT=60] -->
    <string name="high_power_on">Not optimized</string>
    <!-- Summary of app not allowed to use a lot of power [CHAR LIMIT=60] -->
    <string name="high_power_off">Optimizing energy use</string>
    <!-- Summary of app which doesn't have a battery optimization setting [CHAR LIMIT=60] -->
    <string name="high_power_system">Energy optimization not available</string>

    <!-- Title for managing notification listeners option. [CHAR LIMIT=30] -->
    <string name="manage_notification_access_title">Notification access</string>
    <!-- String to show in the list of notification listeners, when none is installed -->
    <string name="no_notification_listeners">No installed apps have requested notification access.</string>
    <!-- Summary for a warning message about security implications of enabling a notification
          listener, displayed as a dialog message. [CHAR LIMIT=NONE] -->
    <string name="notification_listener_security_warning_summary">
        These apps will be able to read all notifications,
        including personal information such as contact names and the text of messages you receive.
        They will also be able to dismiss notifications or trigger action buttons they contain.
    </string>
    <!-- Summary to explain why the notification access setting is disabled for some apps. -->
    <string name="default_notification_access_package_summary">Required by system</string>

    <!-- Title of directory access screen in settings [CHAR LIMIT=30] -->
    <string name="directory_access">Directory access</string>
    <!-- Description of the directory access setting [CHAR LIMIT=NONE] -->
    <string name="directory_access_description">These apps have permission to access certain directories.</string>
    <!-- String used to describe the name of a directory in a volume; it must show both names, with the directory name wrapped in parenthesis -->
    <string name="directory_on_volume"><xliff:g id="volume" example="SD Card">%1$s</xliff:g> (<xliff:g id="directory" example="Movies">%2$s</xliff:g>)</string>

    <!-- Settings title in main settings screen for SYSTEM_ALERT_WINDOW [CHAR LIMIT=45] -->
    <string name="system_alert_window_settings">Display over other apps</string>
    <!-- Label for setting which controls whether app can display over other apps [CHAR LIMIT=45] -->
    <string name="permit_draw_overlay">Allow display over other apps</string>
    <!-- Description of allowing overlay setting [CHAR LIMIT=NONE] -->
    <string name="allow_overlay_description">Allow an app to display on top of other apps you\u2019re using. It may interfere with your use of those apps or change the way they seem to appear or behave.</string>

    <!-- Main settings screen item's title to go into the write system settings screen [CHAR LIMIT=30] -->
    <string name="write_system_settings">Modify system settings</string>
    <!-- Title for the apps that are allowed to write system settings [CHAR LIMIT=60] -->
    <string name="write_settings_title">Can modify system settings</string>
    <!-- Description of the write system settings [CHAR LIMIT=NONE] -->
    <string name="write_settings_description">This permission allows an app to modify system settings.</string>
    <!-- Summary of app allowed to write system settings [CHAR LIMIT=45] -->
    <string name="write_settings_on">Yes</string>
    <!-- Summary of app not allowed to write system settings [CHAR LIMIT=45] -->
    <string name="write_settings_off">No</string>

    <!-- Manage External Storage settings title [CHAR LIMIT=40] -->
    <string name="manage_external_storage_title">All files access</string>
    <!-- Label for a setting which controls whether an app can manage external storage [CHAR LIMIT=45] -->
    <string name="permit_manage_external_storage">Allow access to manage all files</string>
    <!-- Description for a setting which controls whether an app can manage external storage
         [CHAR LIMIT=NONE] -->
    <string name="allow_manage_external_storage_description">Allow this app to read, modify and delete all files on this device or any connected storage volumes. If granted, app may access files without your explicit knowledge.</string>

    <!-- Special access > Title for managing Picture-in-picture settings. [CHAR LIMIT=50] -->
    <string name="picture_in_picture_title">Picture-in-picture</string>
    <!-- Apps > App Details > Picture-in-picture > Switch title. [CHAR LIMIT=NONE] -->
    <string name="picture_in_picture_app_detail_switch">Allow picture-in-picture</string>
    <!-- Special access > Picture-in-picture > Text to display when the list is empty. [CHAR LIMIT=NONE] -->
    <string name="picture_in_picture_empty_text">No installed apps support Picture-in-picture</string>
    <!-- Apps > App Details > Picture-in-picture > Description. [CHAR LIMIT=NONE] -->
    <string name="picture_in_picture_app_detail_summary">Allow apps to create a picture-in-picture window while the app is open or after you leave it (for example, to continue watching a video).  This window displays on top of other apps you\'re using.</string>

    <!-- Apps > App Details > Alarms & Reminders > Description. [CHAR LIMIT=NONE] -->
    <string name="alarms_and_reminders_description">
        Allow apps to set alarms and schedule time-sensitive actions.
        This lets the apps run in the background, which may use more power.\n\nIf this permission
        is off, existing alarms and time-based events scheduled by the app won\u2019t work.
    </string>

    <!-- Special access > Title for managing turn screen on settings. [CHAR LIMIT=50] -->
    <string name="turn_screen_on_title">Turn screen on</string>
    <!-- Label for a setting which controls whether an app can turn the screen on [CHAR LIMIT=45] -->
    <string name="allow_turn_screen_on">Allow turning the screen on</string>
    <!-- Description for a setting which controls whether an app can turn the screen on
         [CHAR LIMIT=NONE] -->
    <string name="allow_turn_screen_on_description">Allow an app to turn the screen on. If granted, the app may turn on the screen at any time without your explicit intent.</string>

    <!-- [CHAR_LIMIT=60] Label for special access screen -->
    <string name="special_access">Special app access</string>

    <!-- concat two strings, e.g. "Android Keyboard, My Pass" [CHAR LIMIT=NONE] -->
    <string name="string_concat"><xliff:g id="part1">%1$s</xliff:g>, <xliff:g id="part2">%2$s</xliff:g></string>

    <!-- Group header for the audio category in developer options. [CHAR LIMIT=50] -->
    <string name="audio_category">Audio</string>

    <!-- Title for the preference to toggle audio recording. [CHAR LIMIT=40] -->
    <string name="record_audio">Record audio</string>
    <!-- Summary for the preference to toggle audio recording when enabled. [CHAR LIMIT=50] -->
    <string name="record_audio_summary_on">Disable to stop recording audio</string>
    <!-- Summary for the preference to toggle audio recording when disabled. [CHAR LIMIT=50] -->
    <string name="record_audio_summary_off">Enable to immediately start recording audio</string>

    <!-- Title of the preference for playing recorded audio. [CHAR LIMIT=50] -->
    <string name="play_recorded_audio_title">Play recorded audio</string>

    <!-- Title of the preference for saving recorded audio. [CHAR LIMIT=50] -->
    <string name="save_recorded_audio_title">Save recorded audio</string>

    <!-- Title of the preference displaying the amount of time before reading audio. [CHAR LIMIT=50] -->
    <string name="time_to_start_read_title">Time to start reading</string>

    <!-- Title of the preference displaying the amount of time before recording audio. [CHAR LIMIT=50] -->
    <string name="time_to_valid_audio_title">Time to valid audio data</string>

    <!-- Title of the preference displaying the duration of empty audio received. [CHAR LIMIT=50] -->
    <string name="empty_audio_duration_title">Duration of empty audio</string>

    <!-- Title of the preference for reporting the recorded audio source. [CHAR LIMIT=50] -->
    <string name="record_audio_source_title">Recorded audio source</string>

    <!-- Title of the preference for selecting the recorded audio source. [CHAR LIMIT=50] -->
    <string name="record_audio_source_dialog_title">Select recorded audio source for next recording</string>

    <!-- Title of the preference for displaying the microphone(s) [CHAR LIMIT=50] -->
    <string name="recorded_microphones_title">Recorded microphone(s)</string>

    <!-- Notification that audio recording failed to start. [CHAR LIMIT=100] -->
    <string name="show_audio_recording_start_failed">Failed to start recording audio.</string>

    <!-- Notification that audio recording failed. [CHAR LIMIT=100] -->
    <string name="show_audio_recording_failed"> Audio recording failed.</string>

    <!-- Title of the preference displaying data saver setting. [CHAR LIMIT=50] -->
    <string name="title_data_saver">Data Saver</string>

    <!-- Summary of the preference displaying data saver setting. [CHAR LIMIT=80] -->
    <string name="summary_data_saver">Automatically adjust video quality to use less mobile data</string>

    <!-- Title of the preference displaying data usages and alerts setting. [CHAR LIMIT=50] -->
    <string name="title_data_alert">Data usage and alerts</string>

    <!-- Header info to educate users that they can connect to the internet via Wi-Fi, Ethernet, and phone's hotspot. [CHAR LIMIT=NONE] -->
    <string name="data_saver_header_info">You can connect to the internet with Wi-Fi, Ethernet, or your phone\'s hotspot."</string>

    <!-- Title of dialog shown to the user whether to allow an app to enable discovery mode. [CHAR LIMIT=100] -->
    <string name="bluetooth_ask_discovery_title">Make visible to other Bluetooth devices?</string>
    <!-- Message of dialog shown to the user whether to allow an app to enable discovery mode. [CHAR LIMIT=NONE] -->
    <string name="bluetooth_ask_discovery_message">An app wants to make your TV visible to other Bluetooth devices for <xliff:g id="timeout">%1$d</xliff:g> seconds.</string>

    <!-- Package name of slice rendering app -->
    <string name="slice_rendering_app" translatable="false"/>

    <!-- Slice uri for "Accounts & Sign in" -->
    <string name="account_slice_uri" translatable="false"/>
    <!-- Slice uri and title for manange user services settings -->
    <string name="manage_user_services_slice_uri" translatable="false" />
    <string name="manage_user_services_slice_title" translatable="false" />

    <!-- Title of preference for help center [CHAR LIMIT=60] -->
    <string name="help_center_title" translatable="true"/>
    <string name="help_center_link" translatable="false"/>

    <!-- Slice uri for "Privacy" -->
    <string name="privacy_assistant_slice_uri" translatable="false"/>
    <string name="privacy_purchases_slice_uri" translatable="false"/>

    <!-- Slice uri and title for "Ambient mode" -->
    <string name="ambient_slice_uri" translatable="false" />
    <string name="ambient_settings_title" translatable="false" />

    <!-- Slice uri for "Channels & Inputs" -->
    <string name="channels_and_inputs_slice_uri" translatable="false"/>

    <!-- Slice uri for "Connected devices" -->
    <string name="connected_devices_slice_uri" translatable="false"/>
    <string name="cec_settings_slice_uri" translatable="false"/>

    <string name="storage_summary_fragment_name" translatable="false"/>
    <!-- Slice uri for hdr fomat selection -->
    <string name="resolution_slice_uri" translatable="false"/>
    <!-- Slice uri for hdr and color format -->
    <string name="hdr_and_color_format_slice_uri" translatable="false"/>
    <!-- Slice uri for Color format in Advanced display settings -->
    <string name="advanced_color_format_slice_uri" translatable="false"/>
    <!-- Slice uri for Dolby Vision Mode in Advanced display settings -->
    <string name="advanced_dolby_vision_mode_slice_uri" translatable="false"/>

    <!-- Slice uri for general information -->
    <string name="general_info_slice_uri" translatable="false"/>

    <!-- Top level uri for settings slices -->
    <string name="top_level_settings_slice_uri" translatable="false"/>

    <!-- Slice uri for update settings -->
    <string name="update_slice_uri" translatable="false"/>

    <!-- Slice uri for overlay security settings -->
    <string name="overlay_security_slice_uri" translatable="false"/>

    <!-- Title for dialog displayed when user selects on a setting locked by an admin [CHAR LIMIT=30 BACKUP_MESSAGE_ID:4867639270211833535] -->
    <string name="disabled_by_policy_title">Action not allowed</string>
    <!-- Title for dialog displayed to tell user that changing volume was disallowed by an admin [CHAR LIMIT=50] -->
    <string name="disabled_by_policy_title_adjust_volume">Can’t change volume</string>
    <!-- Title for dialog displayed to tell user that outgoing calls were disabled by an admin [CHAR LIMIT=50] -->
    <string name="disabled_by_policy_title_outgoing_calls">Calling not allowed</string>
    <!-- Title for dialog displayed to tell user that sending SMS were disabled by an admin [CHAR LIMIT=50] -->
    <string name="disabled_by_policy_title_sms">SMS not allowed</string>
    <!-- Title for dialog displayed to tell user that the camera was disabled by an admin [CHAR LIMIT=50] -->
    <string name="disabled_by_policy_title_camera">Camera not allowed</string>
    <!-- Title for dialog displayed to tell user that screenshots are disabled by an admin [CHAR LIMIT=50] -->
    <string name="disabled_by_policy_title_screen_capture">Screenshot not allowed</string>
    <!-- Title for dialog displayed to tell user that the app was suspended by an admin [CHAR LIMIT=50] -->
    <string name="disabled_by_policy_title_suspend_packages">Can’t open this app</string>

    <string name="default_admin_support_msg">If you have questions, contact your IT admin</string>
    <!-- Shown in dialog to allow user to see more information about the device admin [CHAR LIMIT=30] -->
    <string name="admin_support_more_info">More details</string>
    <!-- Shown in admin details page to warn user about policies the admin can set in a work profile. [CHAR LIMIT=NONE] -->
    <string name="admin_profile_owner_message">Your admin can monitor and manage apps and data
        associated with your work profile, including settings, permissions, corporate access,
        network activity, and the device\'s location information.</string>
    <!-- Shown in admin details page to warn user about policies the admin can set on a user. [CHAR LIMIT=NONE] -->
    <string name="admin_profile_owner_user_message">Your admin can monitor and manage apps and data
        associated with this user, including settings, permissions, corporate access,
        network activity, and the device\'s location information.</string>
    <!-- Shown in admin details page to warn user about policies the admin can set on a device. [CHAR LIMIT=NONE] -->
    <string name="admin_device_owner_message">Your admin can monitor and manage apps and data
        associated with this device, including settings, permissions, corporate access,
        network activity, and the device\'s location information.</string>

    <!-- Button label to remove the work profile [CHAR LIMIT=35] -->
    <string name="remove_managed_profile_label">Remove work profile</string>
    <!-- Label for screen showing the active device admin apps -->
    <string name="active_device_admin_msg">Device admin app</string>
    <!-- Label for button to remove the active device admin app [CHAR LIMIT=80] -->
    <string name="remove_device_admin">Deactivate this device admin app</string>
    <!-- Label for button to uninstall the device admin app [CHAR LIMIT=80] -->
    <string name="uninstall_device_admin">Uninstall app</string>
    <!-- Label for button to deactivate and uninstall the device admin app [CHAR_LIMIT=50]-->
    <string name="remove_and_uninstall_device_admin">Deactivate &amp; uninstall</string>
    <!-- Label for screen showing to select device admin apps -->
    <string name="select_device_admin_msg">Device admin apps</string>
    <!-- Title for screen to add a device admin app [CHAR LIMIT=40] -->
    <string name="add_device_admin_msg">Activate device admin app?</string>
    <!-- Label for button to set the active device admin [CHAR_LIMIT=80] -->
    <string name="add_device_admin">Activate this device admin app</string>
    <!-- Device admin warning message about policies an admin can use -->
    <string name="device_admin_warning">Activating this admin app will allow
        the app <xliff:g id="app_name">%1$s</xliff:g> to perform the
        following operations:</string>
    <!-- Simplified device admin warning message [CHAR LIMIT=NONE]-->
    <string name="device_admin_warning_simplified">This device will be managed and monitored by
        <xliff:g id="app_name" example="Example Supervisor">%1$s</xliff:g>.</string>
    <!-- Device admin warning message about policies an admin can use -->
    <string name="device_admin_status">This admin app is active and allows
        the app <xliff:g id="app_name">%1$s</xliff:g> to perform the
        following operations:</string>
    <!-- Warning when trying to add a profile owner admin after setup has completed. [CHAR LIMIT=none] -->
    <string name="adding_profile_owner_warning">By proceeding, your user will be managed by your
        admin which may also be able to store associated data, in addition to your personal
        data.\n\nYour admin has the ability to monitor and manage settings, access, apps,
        and data associated with this user, including network activity and your device\'s location
        information.</string>

    <!-- Title of dialog shown to ask for user consent for sharing a bugreport that was requested remotely by the IT administrator. -->
    <string name="share_remote_bugreport_dialog_title">Share bug report?</string>
    <!-- Message of a dialog shown to ask for user consent for sharing a bugreport that was requested remotely by the IT administrator. -->
    <string name="share_remote_bugreport_dialog_message_finished">Your IT admin requested a bug report to help troubleshoot this device. Apps and data may be shared.</string>
    <!-- Message of a dialog shown to ask for user consent for sharing a bugreport that was requested remotely by the IT administrator and it's still being taken. -->
    <string name="share_remote_bugreport_dialog_message">Your IT admin requested a bug report to help troubleshoot this device. Apps and data may be shared, and your device may temporarily slow down.</string>
    <!-- Message of a dialog shown to inform that the remote bugreport that was requested remotely by the IT administrator is still being taken and will be shared when finished. -->
    <string name="sharing_remote_bugreport_dialog_message">This bug report is being shared with your IT admin. Contact them for more details.</string>
    <!-- Acceptance label of dialog shown to ask for user consent for sharing the remote bugreport. -->
    <string name="share_remote_bugreport_action">Share</string>
    <!-- Decline label of dialog shown to ask for user consent for sharing the remote bugreport. -->
    <string name="decline_remote_bugreport_action">Decline</string>

    <!-- Title for Network connection request Dialog [CHAR LIMIT=60] -->
    <string name="network_connection_request_dialog_title">Device to use with <xliff:g id="appName" example="ThirdPartyAppName">%1$s</xliff:g></string>
    <!-- Message for Network connection timeout Dialog [CHAR LIMIT=NONE] -->
    <string name="network_connection_timeout_dialog_message">No devices found. Make sure devices are turned on and available to connect.</string>
    <!-- OK button for Network connection timeout Dialog [CHAR LIMIT=30] -->
    <string name="network_connection_timeout_dialog_ok">Try again</string>
    <!-- Message for Network connection error state Dialog [CHAR LIMIT=NONE] -->
    <string name="network_connection_errorstate_dialog_message">Something came up. The application has cancelled the request to choose a device.</string>
    <!-- Toast message when connection is successful [CHAR LIMIT=30] -->
    <string name="network_connection_connect_successful">Connection successful</string>
    <!-- Neutral button for Network connection request Dialog [CHAR LIMIT=30] -->
    <string name="network_connection_request_dialog_showall">Show all</string>
    <!-- Bluetooth settings screen, text that appears in heading bar when scanning for devices -->
    <string name="progress_scanning">Searching</string>

    <!-- Message of a dialog shown to inform that the account intent is not available. [CHAR LIMIT=100] -->
    <string name="add_account_intent_not_available_dialog_message">Failed to retrieve add account intent from authenticator.</string>
    <!-- Message of a dialog shown to inform that the account type is not available or failed to add account. [CHAR LIMIT=100] -->
    <string name="add_account_failed_dialog_message">Failed to add account or the account type is not available.</string>

    <!-- Placeholder font for compiling. The real font will be provided by RRO. -->
    <string name="preference_title_text_font" translatable="false" />

    <!-- Start up verification -->
    <string name="startup_verification_action" translatable="false" />
    <string name="startup_verification_package" translatable="false" />

    <!-- Basic mode -->
    <string name="basic_mode_provider_uri" translatable="false" />
    <string name="basic_mode_exit_package" translatable="false" />
    <string name="basic_mode_exit_component" translatable="false" />
    <string name="basic_mode_exit_data" translatable="false" />
    <string name="basic_mode_suggestion_category_title" translatable="false" />
    <string name="basic_mode_exit_preference_title" translatable="false" />
    <string name="basic_mode_exit_preference_subtitle" translatable="false" />
    <string name="basic_mode_exit_info_title" translatable="false" />
    <string name="basic_mode_exit_info_summary" translatable="false" />
    <string name="basic_mode_accounts_and_sign_in_info_summary" translatable="false" />

    <!-- Vendor & Samples -->
    <string name="vendor_activity_title" translatable="false">Vendor sample activity</string>
    <string name="vendor_sample_settings_summary" translatable="false">(Subtitle is suggested to give further information)</string>
    <!-- Title for "Channels & Inputs" settings [CHAR LIMIT=60] -->
    <string name="channels_and_inputs_title">Channels &amp; Inputs</string>
    <!-- Summary for "Channels & Inputs" settings [CHAR LIMIT=60] -->
    <string name="channels_and_inputs_summary">Channels, external inputs</string>
    <!-- Title for "Channels" settings [CHAR LIMIT=60] -->
    <string name="channels_settings_title">Channels</string>
    <!-- Title for "External inputs" settings [CHAR LIMIT=60] -->
    <string name="external_inputs_settings_title">External inputs</string>
    <!-- Summary for vendor sample "Display & Sound" settings [CHAR LIMIT=60] -->
    <string name="display_and_sound_vendor_summary">Picture, screen, sound</string>
    <!-- Title for "Picture" settings [CHAR LIMIT=60] -->
    <string name="picture_settings_title">Picture</string>
    <!-- Intent action for vendor picture activity -->
    <string name="picture_settings_vendor_action" translatable="false"/>
    <!-- Title for "Screen" settings [CHAR LIMIT=60] -->
    <string name="screen_settings_title">Screen</string>
    <!-- Title for "Sound" settings [CHAR LIMIT=60] -->
    <string name="sound_settings_title">Sound</string>
    <!-- Intent action for vendor sound activity -->
    <string name="sound_settings_vendor_action" translatable="false"/>
    <!-- Title of power and energy page [CHAR LIMIT=60] -->
    <string name="power_and_energy">Power &amp; Energy</string>
    <!-- Title of power on behavior item [CHAR LIMIT=60] -->
    <string name="power_on_behavior">Power on behavior</string>
    <string name="power_boot_resume_slice_uri" translatable="false" />
    <!-- Title of the Reset section, which lets user select from factory reset or other reset related operations. [CHAR LIMIT=60] -->
    <string name="reset_options_title">Reset</string>

    <string name="font_sans_serif" translatable="false">sans-serif</string>
    <string name="font_sans_serif_light" translatable="false">sans-serif-light</string>
    <string name="font_sans_serif_thin" translatable="false">sans-serif-thin</string>
    <string name="font_sans_serif_condensed" translatable="false">sans-serif-condensed</string>

    <!-- Adb wireless pairing device dialog ethernet pairing code label [CHAR LIMIT=60] -->
    <string name="adb_pairing_device_dialog_ethernet_pairing_code_label">Ethernet pairing code</string>

    <!-- Title for energy modes preference -->
    <string name="energy_modes">Energy Modes</string>
    <!-- Title for energy mode selection confirmation dialog -->
    <string name="energy_modes_summary">Improve energy efficiency when TV is not in use</string>
    <!-- Header for list of features enabled in the selected energy mode -->
    <string name="energy_mode_enables">Enables:</string>
    <!-- Warning that selecting a higher energy mode may increase power consumption -->
    <string name="energy_mode_eco_hint">Note that this mode may increase the power consumption of the device.</string>
    <!-- Title for energy mode selection confirmation dialog -->
    <string name="energy_modes_confirmation_title">Enable \"<xliff:g id="energyModeName" example="Essential network features">%s</xliff:g>\"</string>

    <!-- Title for find my remote preference -->
    <string name="settings_find_my_remote_title">Find my remote</string>
    <!-- Description for find my remote preference -->
    <string name="settings_find_my_remote_description">Play a sound to locate your Google TV remote if it\'s misplaced</string>
    <string name="find_my_remote_slice_description">Press the button at the back of your Google TV to play a sound on your remote for 30 seconds. This only works with supported Google TV remote controls.\n\nTo stop the sound, press any button on your remote.</string>
    <string name="find_my_remote_integration_title" translatable="false">@string/settings_find_my_remote_title</string>
    <string name="find_my_remote_integration_hint">When Find my remote is enabled, you can play a sound to locate your Google TV remote if it\'s misplaced.</string>
    <string name="find_my_remote_play_sound">Play sound</string>
</resources>