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
|
<?xml version="1.0" ?>
<!DOCTYPE translationbundle>
<translationbundle lang="en-GB">
<translation id="101438888985615157">Rotate screen by 180 degrees</translation>
<translation id="1017967144265860778">Power management on the login screen</translation>
<translation id="1019101089073227242">Set user data directory</translation>
<translation id="1022361784792428773">Extension IDs the user should be prevented from installing (or * for all)</translation>
<translation id="102492767056134033">Set default state of the on-screen keyboard on the login screen</translation>
<translation id="1044878202534415707">Report hardware statistics such as CPU/RAM usage.
If the policy is set to false, the statistics will not be reported.
If set to true or left unset, statistics will be reported.</translation>
<translation id="1046484220783400299">Enable deprecated web platform features for a limited time</translation>
<translation id="1047128214168693844">Do not allow any site to track the users' physical location</translation>
<translation id="1057535219415338480">Enables network prediction in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
This controls not only DNS prefetching but also TCP and SSL preconnection and prerendering of web pages. The policy name refers to DNS prefetching for historical reasons.
If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this policy is left not set, this will be enabled but the user will be able to change it.</translation>
<translation id="1062011392452772310">Enable remote attestation for the device</translation>
<translation id="108735515923160176">Configures the type of the default home page in <ph name="PRODUCT_NAME" /> and prevents users from changing home page preferences. The home page can either be set to a URL you specify or set to the New Tab Page.
If you enable this setting, the New Tab Page is always used for the home page and the home page URL location is ignored.
If you disable this setting, the user's homepage will never be the New Tab Page, unless its URL is set to 'chrome://newtab'.
If you enable or disable this setting, users cannot change their homepage type in <ph name="PRODUCT_NAME" />.
Leaving this policy not set will allow the user to choose whether the new tab page is his home page on his own.
This policy is not available on Windows instances that are not joined
to an Active Directory domain.</translation>
<translation id="1090892140761957285">URL for validating remote access client authentication token.
If this policy is set, the remote access host will use this URL to validate authentication tokens from remote access clients, in order to accept connections. Must be used in conjunction with RemoteAccessHostTokenUrl.
This feature is currently disabled server-side.</translation>
<translation id="1096105751829466145">Default search provider</translation>
<translation id="1103860406762205913">Enables the old web-based signin</translation>
<translation id="1138294736309071213">This policy is active in retail mode only.
Determines the duration before the screen saver is shown on the sign-in screen for devices in retail mode.
The policy value should be specified in milliseconds.</translation>
<translation id="1151353063931113432">Allow images on these sites</translation>
<translation id="1152117524387175066">Report the state of the device's dev switch at boot.
If the policy is set to false, the state of the dev switch will not be reported.</translation>
<translation id="1160939557934457296">Disable proceeding from the Safe Browsing warning page</translation>
<translation id="1198465924256827162">How frequently device status uploads are sent, in milliseconds.
If this policy is unset, the default frequency is 3 hours. The minimum
allowed frequency is 60 seconds.</translation>
<translation id="1213523811751486361">Specifies the URL of the search engine used to provide search suggestions. The URL should contain the string '<ph name="SEARCH_TERM_MARKER" />', which will be replaced at query time by the text that the user has entered so far.
This policy is optional. If not set, no suggest URL will be used.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="1221359380862872747">Load specified URLs on demo login</translation>
<translation id="1240643596769627465">Specifies the URL of the search engine used to provide instant results. The URL should contain the string <ph name="SEARCH_TERM_MARKER" />, which will be replaced at query time by the text that the user has entered so far.
This policy is optional. If not set, no instant search results will be provided.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="1265053460044691532">Limit the time for which a user authenticated via SAML can log in offline</translation>
<translation id="1291880496936992484">Warning: RC4 will be completely removed from <ph name="PRODUCT_NAME" /> after version 52 (around September 2016) and this policy will stop working then.
If the policy is not set, or is set to false, then RC4 cipher suites in TLS will not be enabled. Otherwise it may be set to true to retain compatibility with an outdated server. This is a stopgap measure and the server should be reconfigured.</translation>
<translation id="1297182715641689552">Use a .pac proxy script</translation>
<translation id="1300635491585192248">Predict network actions on any network that is not cellular</translation>
<translation id="1304973015437969093">Extension/App IDs and update URLs to be silently installed</translation>
<translation id="1310699457130669094">You can specify a URL to a proxy .pac file here.
This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
You should leave this policy unset if you have selected any other mode for setting proxy policies.
For detailed examples, visit:
<ph name="PROXY_HELP_URL" /></translation>
<translation id="1313457536529613143">Specifies the percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off.
If this policy is set, it specifies the percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off. When the dim delay is scaled, the screen off, screen lock and idle delays get adjusted to maintain the same distances from the screen dim delay as originally configured.
If this policy is unset, a default scale factor is used.
The scale factor must be 100% or more.</translation>
<translation id="131353325527891113">Show usernames on login screen</translation>
<translation id="1327466551276625742">Enable network configuration prompt when offline</translation>
<translation id="1330145147221172764">Enable on-screen keyboard</translation>
<translation id="1330985749576490863">Disables Google Drive over mobile connections in the <ph name="PRODUCT_OS_NAME" /> Files app</translation>
<translation id="13356285923490863">Policy Name</translation>
<translation id="1353966721814789986">Startup pages:</translation>
<translation id="1359553908012294236">If this policy is set to true or not configured, <ph name="PRODUCT_NAME" /> will enable guest logins. Guest logins are <ph name="PRODUCT_NAME" /> profiles where all windows are in incognito mode.
If this policy is set to false, <ph name="PRODUCT_NAME" /> will not allow guest profiles to be started.</translation>
<translation id="1397855852561539316">Default search provider suggest URL</translation>
<translation id="1398889361882383850">Allows you to set whether websites are allowed to automatically run plugins. Automatically running plugins can be either allowed for all websites or denied for all websites.
Click to play allows plugins to run but the user must click them to start their execution.
If this policy is left not set, 'AllowPlugins' will be used and the user will be able to change it.</translation>
<translation id="1426410128494586442">Yes</translation>
<translation id="1427655258943162134">Address or URL of proxy server</translation>
<translation id="1435659902881071157">Device-level network configuration</translation>
<translation id="1438739959477268107">Default key generation setting</translation>
<translation id="1454846751303307294">Allows you to set a list of url patterns that specify sites which are not allowed to run JavaScript.
If this policy is left not set the global default value will be used for all sites either from the 'DefaultJavaScriptSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="1464848559468748897">Control the user behaviour in a multi-profile session on <ph name="PRODUCT_OS_NAME" /> devices.
If this policy is set to 'Multi-ProfileUserBehaviourUnrestricted', the user can be either the primary or secondary user in a multi-profile session.
If this policy is set to 'Multi-ProfileUserBehaviourMustBePrimary', the user can only be the primary user in a multi-profile session.
If this policy is set to 'Multi-ProfileUserBehaviourNotAllowed', the user cannot be part of a multi-profile session.
If you set this setting, users cannot change or override it.
If the setting is changed while the user is signed into a multi-profile session, all users in the session will be checked against their corresponding settings. The session will be closed if any one of the users is no longer allowed to be in the session.
If the policy is left not set, the default value 'Multi-ProfileUserBehaviourMustBePrimary' applies for enterprise-managed users and 'Multi-ProfileUserBehaviourUnrestricted' will be used for non-managed users.</translation>
<translation id="1465619815762735808">Click to play</translation>
<translation id="1468307069016535757">Set the default state of the high contrast mode accessibility feature on the login screen.
If this policy is set to true, high contrast mode will be enabled when the login screen is shown.
If this policy is set to false, high contrast mode will be disabled when the login screen is shown.
If you set this policy, users can temporarily override it by enabling or disabling high contrast mode. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
If this policy is left unset, high contrast mode is disabled when the login screen is first shown. Users can enable or disable high contrast mode at any time and its status on the login screen is persisted between users.</translation>
<translation id="1468707346106619889">If this policy is set to true, Unified Desktop is allowed and
enabled by default, which allows applications to span multiple displays.
The user may disable Unified Desktop for individual displays by unticking
it in the display settings.
If this policy is set to false or unset, Unified Desktop will be
disabled. In this case, the user cannot enable the feature.</translation>
<translation id="1474273443907024088">Disable TLS False Start</translation>
<translation id="1477934438414550161">TLS 1.2</translation>
<translation id="1492145937778428165">Specifies the period in milliseconds at which the device management service is queried for device policy information.
Setting this policy overrides the default value of 3 hours. Valid values for this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). Any values not in this range will be clamped to the respective boundary.
Leaving this policy not set will make <ph name="PRODUCT_OS_NAME" /> use the default value of 3 hours.</translation>
<translation id="1504431521196476721">Remote Attestation</translation>
<translation id="1509692106376861764">This policy has been retired as of <ph name="PRODUCT_NAME" /> version 29.</translation>
<translation id="1522425503138261032">Allow sites to track the users' physical location</translation>
<translation id="152657506688053119">List of alternative URLs for the default search provider</translation>
<translation id="1530812829012954197">Always render the following URL patterns in the host browser</translation>
<translation id="1553684822621013552">When this policy is set to true, ARC will be enabled for the user
(subject to additional policy settings checks – ARC will still be
unavailable if either ephemeral mode or multiple sign-in is enabled
in the current user session).
If this setting is disabled or not configured then enterprise users are
unable to use ARC.</translation>
<translation id="1561424797596341174">Policy overrides for Debug builds of the remote access host</translation>
<translation id="1583248206450240930">Use <ph name="PRODUCT_FRAME_NAME" /> by default</translation>
<translation id="1608755754295374538">URLs that will be granted access to audio capture devices without prompt</translation>
<translation id="1617235075406854669">Enable deleting browser and download history</translation>
<translation id="1617384279878333801">Enable add person in profile manager</translation>
<translation id="1655229863189977773">Set disk cache size in bytes</translation>
<translation id="166427968280387991">Proxy server</translation>
<translation id="1675002386741412210">Supported on:</translation>
<translation id="1679420586049708690">Public session for auto-login</translation>
<translation id="1689963000958717134">Allows pushing network configuration to be applied for all users of a <ph name="PRODUCT_OS_NAME" /> device. The network configuration is a JSON-formatted string as defined by the Open Network Configuration format described at <ph name="ONC_SPEC_URL" /></translation>
<translation id="1708496595873025510">Set the restriction on the fetching of the Variations seed</translation>
<translation id="172374442286684480">Allow all sites to set local data.</translation>
<translation id="1727394138581151779">Block all plug-ins</translation>
<translation id="1734716591049455502">Configure remote access options</translation>
<translation id="1736269219679256369">Allow proceeding from the SSL warning page</translation>
<translation id="1749815929501097806">Sets the Terms of Service that the user must accept before starting a device-local account session.
If this policy is set, <ph name="PRODUCT_OS_NAME" /> will download the Terms of Service and present them to the user whenever a device-local account session is starting. The user will only be allowed into the session after accepting the Terms of Service.
If this policy is not set, no Terms of Service are shown.
The policy should be set to a URL from which <ph name="PRODUCT_OS_NAME" /> can download the Terms of Service. The Terms of Service must be plain text, served as MIME type text/plain. No markup is allowed.</translation>
<translation id="1757339646969878244">Configure remote access options in Chrome Remote Desktop host.
Chrome Remote Desktop host is a native service that runs on the target
machine that a user can connect to using Chrome Remote Desktop
application. The native service is packaged and executed separately from
the <ph name="PRODUCT_NAME" /> browser.
These policies are ignored unless the
Chrome Remote Desktop host is installed.</translation>
<translation id="1757688868319862958">Allows <ph name="PRODUCT_NAME" /> to run plug-ins that require authorisation. If you enable this setting, plug-ins that are not outdated always run. If this setting is disabled or not set, users will be asked for permission to run plug-ins that require authorisation. These are plug-ins that can compromise security.</translation>
<translation id="1803646570632580723">List of pinned apps to show in the launcher</translation>
<translation id="1808715480127969042">Block cookies on these sites</translation>
<translation id="1811270320106005269">Enable lock when <ph name="PRODUCT_OS_NAME" /> devices become idle or suspended.
If you enable this setting, users will be asked for a password to unlock the device from sleep.
If you disable this setting, users will not be asked for a password to unlock the device from sleep.
If you enable or disable this setting, users cannot change or override it.
If the policy is left not set, the user can choose whether he wants to be asked for password to unlock the device or not.</translation>
<translation id="1827523283178827583">Use fixed proxy servers</translation>
<translation id="1843117931376765605">Refresh rate for user policy</translation>
<translation id="1847960418907100918">Specifies the parameters used when doing instant search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
This policy is optional. If not set, instant search request will be sent using the GET method.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="1859633270756049523">Limit the session length</translation>
<translation id="1859859319036806634">Warning: The TLS version fallback will be removed from <ph name="PRODUCT_NAME" /> after version 52 (around September 2016) and this policy will stop working then.
When a TLS handshake fails, <ph name="PRODUCT_NAME" /> would previously retry the connection with a lesser version of TLS in order to work around bugs in HTTPS servers. This setting configures the version at which this fallback process will stop. If a server performs version negotiation correctly (i.e. without breaking the connection) then this setting doesn't apply. Regardless, the resulting connection must still comply with SSLVersionMin.
If this policy is not configured or if it is set to "tls1.2" then <ph name="PRODUCT_NAME" /> no longer performs this fallback. Note that this does not disable support for older TLS versions, only whether <ph name="PRODUCT_NAME" /> will work around buggy servers which cannot negotiate versions correctly.
Otherwise, if compatibility with a buggy server must be maintained, this policy may be set to "tls1.1". This is a stopgap measure and the server should be rapidly fixed.</translation>
<translation id="1861037019115362154">Specifies a list of plugins that are disabled in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\', so to match actual '*', '?', or '\' characters, you can put a '\' in front of them.
If you enable this setting, the specified list of plugins is never used in <ph name="PRODUCT_NAME" />. The plugins are marked as disabled in 'about:plugins' and users cannot enable them.
Note that this policy can be overridden by EnabledPlugins and DisabledPluginsExceptions.
If this policy is left not set the user can use any plugin installed on the system except for hard-coded incompatible, outdated or dangerous plugins.</translation>
<translation id="1865417998205858223">Key Permissions</translation>
<translation id="186719019195685253">Action to take when the idle delay is reached while running on AC power</translation>
<translation id="187819629719252111">Allows access to local files on the machine by allowing <ph name="PRODUCT_NAME" /> to display file selection dialogues.
If you enable this setting, users can open file selection dialogues as normal.
If you disable this setting, whenever the user performs an action which would provoke a file selection dialogue (like importing bookmarks, uploading files, saving links, etc.) a message is displayed instead and the user is assumed to have clicked Cancel on the file selection dialogue.
If this setting is not set, users can open file selection dialogues as normal.</translation>
<translation id="1897365952389968758">Allow all sites to run JavaScript (recommended)</translation>
<translation id="1933378685401357864">Wallpaper image</translation>
<translation id="193900697589383153">Adds a logout button to the system tray.
If enabled, a big, red logout button is shown in the system tray while a session is active and the screen is not locked.
If disabled or not specified, no big, red logout button is shown in the system tray.</translation>
<translation id="1942957375738056236">You can specify the URL of the proxy server here.
This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
You should leave this policy unset if you have selected any other mode for setting proxy policies.
For more options and detailed examples, visit:
<ph name="PROXY_HELP_URL" /></translation>
<translation id="1956493342242507974">Configure power management on the log-in screen in <ph name="PRODUCT_OS_NAME" />.
This policy lets you configure how <ph name="PRODUCT_OS_NAME" /> behaves when there is no user activity for some amount of time while the log-in screen is being shown. The policy controls multiple settings. For their individual semantics and value ranges, see the corresponding policies that control power management within a session. The only deviations from these policies are:
* The actions to take on idle or lid close cannot be to end the session.
* The default action taken on idle when running on AC power is to shut down.
If a setting is left unspecified, a default value is used.
If this policy is unset, defaults are used for all settings.</translation>
<translation id="1964634611280150550">Incognito mode disabled.</translation>
<translation id="1969212217917526199">Overrides policies on Debug builds of the remote access host.
The value is parsed as a JSON dictionary of policy name to policy value mappings.</translation>
<translation id="1988371335297483117">Auto-update payloads on <ph name="PRODUCT_OS_NAME" /> can be downloaded via HTTP instead of HTTPS. This allows transparent HTTP caching of HTTP downloads.
If this policy is set to true, <ph name="PRODUCT_OS_NAME" /> will attempt to download auto-update payloads via HTTP. If the policy is set to false or not set, HTTPS will be used for downloading auto-update payloads.</translation>
<translation id="2006530844219044261">Power management</translation>
<translation id="201557587962247231">Frequency of device status report uploads</translation>
<translation id="2024476116966025075">Configure the required domain name for remote access clients</translation>
<translation id="2030905906517501646">Default search provider keyword</translation>
<translation id="206623763829450685">Specifies which HTTP authentication schemes are supported by <ph name="PRODUCT_NAME" />.
Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. Separate multiple values with commas.
If this policy is left unset, all four schemes will be used.</translation>
<translation id="2067011586099792101">Block access to sites outside of content packs</translation>
<translation id="2077129598763517140">Use hardware acceleration when available</translation>
<translation id="2077273864382355561">Screen off delay when running on battery power</translation>
<translation id="209586405398070749">Stable channel</translation>
<translation id="2098658257603918882">Enable reporting of usage and crash-related data</translation>
<translation id="2113068765175018713">Limit device uptime by automatically rebooting</translation>
<translation id="2127599828444728326">Allow notifications on these sites</translation>
<translation id="2131902621292742709">Screen dim delay when running on battery power</translation>
<translation id="2137064848866899664">If this policy is set, each display is rotated to the
specified orientation on every reboot and the first time that it is connected
after the policy value has changed. Users may change the display
rotation via the settings page after logging in, but their
setting will be overridden by the policy value at the next reboot.
This policy applies to both the primary and all secondary displays.
If the policy is not set, the default value is 0 degrees and the user is
free to change it. In this case, the default value is not reapplied at
restart.</translation>
<translation id="2166715102875984646">Disable support for 3D graphics APIs.
Enabling this setting prevents web pages from accessing the graphics processing unit (GPU). Specifically, web pages can not access the WebGL API and plugins can not use the Pepper 3D API.
Disabling this setting or leaving it not set potentially allows web pages to use the WebGL API and plugins to use the Pepper 3D API. The default settings of the browser may still require command line arguments to be passed in order to use these APIs.
If HardwareAccelerationModeEnabled is set to false, Disable3DAPIs is ignored and it is equivalent to Disable3DAPIs being set to true.</translation>
<translation id="2168397434410358693">Idle delay when running on AC power</translation>
<translation id="2170233653554726857">Enable WPAD optimisation</translation>
<translation id="2188979373208322108">Enables the bookmark bar on <ph name="PRODUCT_NAME" />.
If you enable this setting, <ph name="PRODUCT_NAME" /> will show a bookmark bar.
If you disable this setting, users will never see the bookmark bar.
If you enable or disable this setting, users cannot change or override it in <ph name="PRODUCT_NAME" />.
If this setting is left unset, the user can decide to use this function or not.</translation>
<translation id="2201555246697292490">Configure native messaging whitelist</translation>
<translation id="2204753382813641270">Control shelf auto-hiding</translation>
<translation id="2208976000652006649">Parameters for search URL which uses POST</translation>
<translation id="2223598546285729819">Default notification settings</translation>
<translation id="2231817271680715693">Import browsing history from default browser on first run</translation>
<translation id="2236488539271255289">Do not allow any site to set local data</translation>
<translation id="2240879329269430151">Allows you to set whether websites are allowed to show pop-ups. Showing pop-ups can be either allowed for all websites or denied for all websites.
If this policy is left unset, 'BlockPop-ups' will be used and the user will be able to change it.</translation>
<translation id="2274864612594831715">This policy configures enabling the virtual keyboard as an input device on ChromeOS. Users cannot override this policy.
If the policy is set to true, the on-screen virtual keyboard will always be enabled.
If set to false, the on-screen virtual keyboard will always be disabled.
If you set this policy, users cannot change or override it. However, users will still be able to enable/disable an accessibility on-screen keyboard which takes precedence over the virtual keyboard controlled by this policy. See the |VirtualKeyboardEnabled| policy for controlling the accessibility on-screen keyboard.
If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user anytime. Heuristic rules may also be used to decide when to display the keyboard.</translation>
<translation id="228659285074633994">Specifies the length of time without user input after which a warning dialogue is shown when running on AC power.
When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> shows a warning dialogue telling the user that the idle action is about to be taken.
When this policy is unset, no warning dialogue is shown.
The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.</translation>
<translation id="2292084646366244343"><ph name="PRODUCT_NAME" /> can use a Google web service to help resolve spelling errors. If this setting is enabled, then this service is always used. If this setting is disabled, then this service is never used.
Spell checking can still be performed using a downloaded dictionary; this policy only controls the usage of the online service.
If this setting is not configured then users can choose whether the spell checking service should be used or not.</translation>
<translation id="2299220924812062390">Specify a list of enabled plug-ins</translation>
<translation id="2309390639296060546">Default geolocation setting</translation>
<translation id="2312134445771258233">Allows you to configure the pages that are loaded on start-up.
The contents of the list 'URLs to open at start-up' are ignored unless you select 'Open a list of URLs' in 'Action on start-up'.</translation>
<translation id="2337466621458842053">Allows you to set a list of url patterns that specify sites which are allowed to display images.
If this policy is left unset, the global default value will be used for all sites either from the 'DefaultImagesSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="2371309782685318247">Specifies the period in milliseconds at which the device management service is queried for user policy information.
Setting this policy overrides the default value of 3 hours. Valid values for this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). Any values not in this range will be clamped to the respective boundary.
Leaving this policy not set will make <ph name="PRODUCT_NAME" /> use the default value of 3 hours.</translation>
<translation id="2372547058085956601">The public session auto-login delay.
If the |DeviceLocalAccountAutoLoginId| policy is unset, this policy has no effect. Otherwise:
If this policy is set, it determines the amount of time without user activity that should elapse before automatically logging into the public session specified by the |DeviceLocalAccountAutoLoginId| policy.
If this policy is unset, 0 milliseconds will be used as the timeout.
This policy is specified in milliseconds.</translation>
<translation id="237494535617297575">Allows you to set a list of url patterns that specify sites which are allowed to display notifications.
If this policy is left unset, the global default value will be used for all sites either from the 'DefaultNotificationsSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="2386362615870139244">Allow screen wake locks</translation>
<translation id="2386768843390156671">Enables user-level installation of Native Messaging hosts.
If this setting is enabled then <ph name="PRODUCT_NAME" /> allows
usage of Native Messaging hosts installed on user level.
If this setting is disabled then <ph name="PRODUCT_NAME" /> will
only use Native Messaging hosts installed on system level.
If this setting is left not set <ph name="PRODUCT_NAME" />
will allow usage of user-level Native Messaging hosts.</translation>
<translation id="240213793013362302">Configure wallpaper image.
This policy allows you to configure the wallpaper image that is shown on the desktop and on the login screen background for the user. The policy is set by specifying the URL from which <ph name="PRODUCT_OS_NAME" /> can download the wallpaper image and a cryptographic hash used to verify the integrity of the download. The image must be in JPEG format, its file size must not exceed 16MB. The URL must be accessible without any authentication.
The wallpaper image is downloaded and cached. It will be re-downloaded whenever the URL or the hash changes.
The policy should be specified as a string that expresses the URL and hash in JSON format, conforming to the following schema:
{
"type": "object",
"properties": {
"url": {
"description": "The URL from which the wallpaper image can be downloaded.",
"type": "string"
},
"hash": {
"description": "The SHA-256 hash of the wallpaper image.",
"type": "string"
}
}
}
If this policy is set, <ph name="PRODUCT_OS_NAME" /> will download and use the wallpaper image.
If you set this policy, users cannot change or override it.
If the policy is left not set, the user can choose an image to be shown on the desktop and on the login screen background.</translation>
<translation id="2411919772666155530">Block notifications from these sites</translation>
<translation id="2418507228189425036">Disables saving browser history in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
If this setting is enabled, browsing history is not saved. This setting also disables tab syncing.
If this setting is disabled or not set, browsing history is saved.</translation>
<translation id="2424023834246613232">Overrides <ph name="PRODUCT_NAME" /> default printer selection rules.
This policy determines the rules for selecting the default printer in <ph name="PRODUCT_NAME" /> which happens the first time the print function is used with a profile.
When this policy is set, <ph name="PRODUCT_NAME" /> will attempt to find a printer matching all of the specified attributes and select it as default printer. The first printer found that matches the policy is selected. In the case of non-unique match, any matching printer can be selected, depending on the order in which printers are discovered.
If this policy is not set or a matching printer is not found within the timeout, the printer defaults to built-in PDF printer or no printer selected when PDF printer is not available.
The value is parsed as JSON object, conforming to the following schema:
{
"type": "object",
"properties": {
"kind": {
"description": "Whether to limit the search of the matching printer to a specific set of printers.",
"type": {
"enum": [ "local", "cloud" ]
}
},
"idPattern": {
"description": "Regular expression to match printer id.",
"type": "string"
},
"namePattern": {
"description": "Regular expression to match printer display name.",
"type": "string"
}
}
}
Printers connected to <ph name="CLOUD_PRINT_NAME" /> are considered <ph name="PRINTER_TYPE_CLOUD" />, the rest of the printers are classified as <ph name="PRINTER_TYPE_LOCAL" />.
Omitting a field means all values match, for example, not specifying connectivity will cause Print Preview to initiate the discovery of all types of printers, local and cloud.
Regular expression patterns must follow the JavaScript RegExp syntax and matches are case sensitive.</translation>
<translation id="2426782419955104525">Enables <ph name="PRODUCT_NAME" />'s Instant feature and prevents users from changing this setting.
If you enable this setting, <ph name="PRODUCT_NAME" /> Instant is enabled.
If you disable this setting, <ph name="PRODUCT_NAME" /> Instant is disabled.
If you enable or disable this setting, users cannot change or override this setting.
If this setting is left unset, the user can decide to use this function or not.
This setting has been removed from <ph name="PRODUCT_NAME" /> 29 and higher versions.</translation>
<translation id="2436445024487698630">Allows sign in to <ph name="PRODUCT_NAME" /></translation>
<translation id="243972079416668391">Specify the action to take when the idle delay is reached while running on AC power.
When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME" /> takes when the user remains idle for the length of time given by the idle delay, which can be configured separately.
When this policy is unset, the default action is taken, which is suspend.
If the action is suspend, <ph name="PRODUCT_OS_NAME" /> can separately be configured to either lock or not lock the screen before suspending.</translation>
<translation id="244317009688098048">Enable bailout keyboard shortcut for auto-login.
If this policy is unset or set to True and a device-local account is configured for zero-delay auto-login, <ph name="PRODUCT_OS_NAME" /> will honour the keyboard shortcut Ctrl+Alt+S for bypassing auto-login and showing the login screen.
If this policy is set to False, zero-delay auto-login (if configured) cannot be bypassed.</translation>
<translation id="2463365186486772703">Application locale</translation>
<translation id="2466131534462628618">Captive portal authentication ignores proxy</translation>
<translation id="2482676533225429905">Native Messaging</translation>
<translation id="2483146640187052324">Predict network actions on any network connection</translation>
<translation id="2488010520405124654">Enable network configuration prompt when offline.
If this policy is unset or set to True and a device-local account is configured for zero-delay auto-login and the device does not have access to the Internet, <ph name="PRODUCT_OS_NAME" /> will show a network configuration prompt.
If this policy is set to False, an error message will be displayed instead of the network configuration prompt.</translation>
<translation id="2498238926436517902">Always auto-hide the shelf</translation>
<translation id="2514328368635166290">Specifies the favourite icon URL of the default search provider.
This policy is optional. If not set, no icon will be present for the search provider.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="2516525961735516234">Specifies whether video activity affects power management.
If this policy is set to True or is unset, the user is not considered to be idle while video is playing. This prevents the idle delay, screen dim delay, screen off delay and screen lock delay from being reached and the corresponding actions from being taken.
If this policy is set to False, video activity does not prevent the user from being considered idle.</translation>
<translation id="2516600974234263142">Enables printing in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
If this setting is enabled or not configured, users can print.
If this setting is disabled, users cannot print from <ph name="PRODUCT_NAME" />. Printing is disabled in the wrench menu, extensions, JavaScript applications etc. It is still possible to print from plugins that bypass <ph name="PRODUCT_NAME" /> while printing. For example, certain Flash applications have the print option in their context menu, which is not covered by this policy.</translation>
<translation id="2518231489509538392">Allow playing audio</translation>
<translation id="2521581787935130926">Show the apps shortcut in the bookmark bar</translation>
<translation id="2529700525201305165">Restrict which users are allowed to sign in to <ph name="PRODUCT_NAME" /></translation>
<translation id="2529880111512635313">Configure the list of force-installed apps and extensions</translation>
<translation id="253135976343875019">Idle warning delay when running on AC power</translation>
<translation id="2552966063069741410">Timezone</translation>
<translation id="2571066091915960923">Enable or disable the data compression proxy and prevent users from changing this setting.
If you enable or disable this setting, users cannot change or override this setting.
If this policy is left not set, the data compression proxy feature will be available for the user to choose whether to use it or not.</translation>
<translation id="2587719089023392205">Set <ph name="PRODUCT_NAME" /> as Default Browser</translation>
<translation id="2592091433672667839">Duration of inactivity before the screen saver is shown on the sign-in screen in retail mode</translation>
<translation id="260705825237536216">Configure ARC apps</translation>
<translation id="2623014935069176671">Wait for initial user activity</translation>
<translation id="262740370354162807">Enable submission of documents to <ph name="CLOUD_PRINT_NAME" /></translation>
<translation id="2633084400146331575">Enable spoken feedback</translation>
<translation id="2646290749315461919">Allows you to set whether websites are allowed to track the users' physical location. Tracking the users' physical location can be allowed by default, denied by default or the user can be asked every time a website requests the physical location.
If this policy is left not set, 'AskGeolocation' will be used and the user will be able to change it.</translation>
<translation id="2650049181907741121">Action to take when the user closes the lid</translation>
<translation id="2660846099862559570">Never use a proxy</translation>
<translation id="267596348720209223">Specifies the character encodings supported by the search provider. Encodings are code page names like UTF-8, GB2312, and ISO-8859-1. They are tried in the order provided.
This policy is optional. If not set, the default will be used which is UTF-8.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="2682225790874070339">Disables Drive in the <ph name="PRODUCT_OS_NAME" /> Files app</translation>
<translation id="268577405881275241">Enable the data compression proxy feature</translation>
<translation id="2742843273354638707">Hide the Chrome Web Store app and footer link from the New Tab Page and <ph name="PRODUCT_OS_NAME" /> app launcher.
When this policy is set to true, the icons are hidden.
When this policy is set to false or is not configured, the icons are visible.</translation>
<translation id="2744751866269053547">Register protocol handlers</translation>
<translation id="2746016768603629042">This policy is deprecated, please use DefaultJavaScriptSetting instead.
Can be used to disable JavaScript in <ph name="PRODUCT_NAME" />.
If this setting is disabled, web pages cannot use JavaScript and the user cannot change that setting.
If this setting is enabled or not set, web pages can use JavaScript but the user can change that setting.</translation>
<translation id="2757054304033424106">Types of extensions/apps that are allowed to be installed</translation>
<translation id="2759224876420453487">Control the user behaviour in a multiprofile session</translation>
<translation id="2761483219396643566">Idle warning delay when running on battery power</translation>
<translation id="2762164719979766599">Specifies the list of device-local accounts to be shown on the login screen.
Every list entry specifies an identifier, which is used internally to tell the different device-local accounts apart.</translation>
<translation id="2769952903507981510">Configure the required domain name for remote access hosts</translation>
<translation id="2785954641789149745">Enables <ph name="PRODUCT_NAME" />'s Safe Browsing feature and prevents users from changing this setting.
If you enable this setting, Safe Browsing is always active.
If you disable this setting, Safe Browsing is never active.
If you enable or disable this setting, users cannot change or override the "Enable phishing and malware protection" setting in <ph name="PRODUCT_NAME" />.
If this policy is left not set, this will be enabled but the user will be able to change it.</translation>
<translation id="2801230735743888564">Allow users to play dinosaur easter egg game when device is offline.
If this policy is set to False, users will not be able to play the dinosaur Easter egg game when device is offline. If this setting is set to True, users are allowed to play the dinosaur game. If this policy is not set, users are not allowed to play the dinosaur Easter egg game on enrolled Chrome OS, but are allowed to play it under other circumstances.</translation>
<translation id="2805707493867224476">Allow all sites to show pop-ups</translation>
<translation id="2808013382476173118">Enables usage of STUN servers when remote clients are trying to establish a connection to this machine.
If this setting is enabled, then remote clients can discover and connect to this machine even if they are separated by a firewall.
If this setting is disabled and outgoing UDP connections are filtered by the firewall, then this machine will only allow connections from client machines within the local network.
If this policy is not set, the setting will be enabled.</translation>
<translation id="2811293057593285123">The Safe Browsing service shows a warning page when users navigate to sites that are flagged as potentially malicious. Enabling this setting prevents users from proceeding anyway from the warning page to the malicious site.
If this setting is disabled or not configured then users can choose to proceed to the flagged site after being shown the warning.</translation>
<translation id="2812021780168085286">Allows you to specify which URLs are allowed to install extensions, apps and themes.
Starting in <ph name="PRODUCT_NAME" /> 21, it is more difficult to install extensions, apps and user scripts from outside the Chrome Web Store. Previously, users could click on a link to a *.crx file, and <ph name="PRODUCT_NAME" /> would offer to install the file after a few warnings. After <ph name="PRODUCT_NAME" /> 21, such files must be downloaded and dragged onto the <ph name="PRODUCT_NAME" /> settings page. This setting allows specific URLs to have the old, easier installation flow.
Each item in this list is an extension-style match pattern (see https://developer.chrome.com/extensions/match_patterns). Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.crx file and the page where the download is started from (i.e. the referrer) must be allowed by these patterns.
ExtensionInstallBlacklist takes precedence over this policy. That is, an extension on the blacklist won't be installed, even if it happens from a site on this list.</translation>
<translation id="2824715612115726353">Enable Incognito mode</translation>
<translation id="2844404652289407061">Enables the availability of Touch to Search in <ph name="PRODUCT_NAME" />'s content view.
If you enable this setting, Touch to Search will be available to the user and they can choose to turn the feature on or off.
If you disable this setting, Touch to Search will be disabled completely.
If this policy is left not set, it is equivalent to being enabled, see description above.</translation>
<translation id="2850122204195089673">Make Unified Desktop available and turn on by default.</translation>
<translation id="285480231336205327">Enable high contrast mode</translation>
<translation id="2872961005593481000">Shut down</translation>
<translation id="2877225735001246144">Disable CNAME lookup when negotiating Kerberos authentication</translation>
<translation id="2884728160143956392">Allow session only cookies on these sites</translation>
<translation id="2893546967669465276">Send system logs to the management server</translation>
<translation id="2906874737073861391">List of AppPack extensions</translation>
<translation id="2908277604670530363">Maximum number of concurrent connections to the proxy server</translation>
<translation id="2948087343485265211">Specifies whether audio activity affects power management.
If this policy is set to True or is unset, the user is not considered to be idle while audio is playing. This prevents the idle timeout from being reached and the idle action from being taken. However, screen dimming, screen off and screen lock will be performed after the configured timeouts, irrespective of audio activity.
If this policy is set to False, audio activity does not prevent the user from being considered idle.</translation>
<translation id="2948381198510798695"><ph name="PRODUCT_NAME" /> will bypass any proxy for the list of hosts given here.
This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
You should leave this policy unset if you have selected any other mode for setting proxy policies.
For more detailed examples, visit:
<ph name="PROXY_HELP_URL" /></translation>
<translation id="2956777931324644324">This policy has been retired as of <ph name="PRODUCT_NAME" /> version 36.
Specifies whether the TLS domain-bound certificates extension should be enabled.
This setting is used to enable the TLS domain-bound certificates extension for testing. This experimental setting will be removed in the future.</translation>
<translation id="2957506574938329824">Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API</translation>
<translation id="2957513448235202597">Account type for <ph name="HTTP_NEGOTIATE" /> authentication</translation>
<translation id="2959898425599642200">Proxy bypass rules</translation>
<translation id="2960691910306063964">Enable or disable PIN-less authentication for remote access hosts</translation>
<translation id="2976002782221275500">Specifies the length of time without user input after which the screen is dimmed when running on battery power.
When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> dims the screen.
When this policy is set to zero, <ph name="PRODUCT_OS_NAME" /> does not dim the screen when the user becomes idle.
When this policy is unset, a default length of time is used.
The policy value should be specified in milliseconds. Values are clamped to be less than or equal the screen off delay (if set) and the idle delay.</translation>
<translation id="2987155890997901449">Enable ARC</translation>
<translation id="2987227569419001736">Control use of the Web Bluetooth API</translation>
<translation id="2998881342848488968">This policy allows <ph name="PRODUCT_OS_NAME" /> to bypass any proxy for captive portal authentication.
This policy only takes effect if a proxy is configured (for example through policy, by the user in chrome://settings or by extensions).
If you enable this setting, any captive portal authentication pages (i.e. all web pages starting from captive portal sign in page until <ph name="PRODUCT_NAME" /> detects successful Internet connection) will be displayed in a separate window ignoring all policy settings and restrictions for the current user.
If you disable this setting or leave it unset, any captive portal authentication pages will be shown in a (regular) new browser tab, using the current user's proxy settings.</translation>
<translation id="3021409116652377124">Disable plug-in finder</translation>
<translation id="3030000825273123558">Enable metrics reporting</translation>
<translation id="3034580675120919256">Allows you to set whether websites are allowed to run JavaScript. Running JavaScript can be either allowed for all websites or denied for all websites.
If this policy is left unset, 'AllowJavaScript' will be used and the user will be able to change it.</translation>
<translation id="3038323923255997294">Continue running background apps when <ph name="PRODUCT_NAME" /> is closed</translation>
<translation id="3048744057455266684">If this policy is set and a search URL suggested from the omnibox contains this parameter in the query string or in the fragment identifier, then the suggestion will show the search terms and search provider instead of the raw search URL.
This policy is optional. If not set, no search term replacement will be performed.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="3067188277482006117">If true, the user can use the hardware on Chrome devices to remote attest its identity to the privacy CA via the Enterprise Platform Keys API chrome.enterprise.platformKeysPrivate.challengeUserKey().
If it is set to false, or if it is not set, calls to the API will fail with an error code.</translation>
<translation id="3069958900488014740">Allows you to turn off WPAD (Web Proxy Auto-Discovery) optimisation in <ph name="PRODUCT_NAME" />.
If this policy is set to false, WPAD optimisation is disabled causing <ph name="PRODUCT_NAME" /> to wait longer for DNS-based WPAD servers. If the policy is not set or is enabled, WPAD optimisation is enabled.
Independent of whether or how this policy is set, the WPAD optimisation setting cannot be changed by users.</translation>
<translation id="3072045631333522102">Screen saver to be used on the sign-in screen in retail mode</translation>
<translation id="3072847235228302527">Set the Terms of Service for a device-local account</translation>
<translation id="3096595567015595053">List of enabled plug-ins</translation>
<translation id="3101501961102569744">Choose how to specify proxy server settings</translation>
<translation id="3153348162326497318">Allows you to specify which extensions the users CANNOT install. Extensions already installed will be removed if blacklisted.
A blacklist value of '*' means all extensions are blacklisted unless they are explicitly listed in the whitelist.
If this policy is left unset, the user can install any extension in <ph name="PRODUCT_NAME" />.</translation>
<translation id="316778957754360075">This setting has been retired as of <ph name="PRODUCT_NAME" /> version 29. The recommended way to set up organisation-hosted extension/app collections is to include the site hosting the CRX packages in ExtensionInstallSources and put direct download links to the packages on a web page. A launcher for that web page can be created using the ExtensionInstallForcelist policy.</translation>
<translation id="3185009703220253572">since version <ph name="SINCE_VERSION" /></translation>
<translation id="318812033927804102">Configures extension management settings for <ph name="PRODUCT_NAME" />.
This policy controls multiple settings, including settings controlled by any existing extension-related policies. This policy will override any legacy policies if both are set.
This policy maps an extension ID or an update URL to its configuration. With an extension ID, configuration will be applied to the specified extension only. A default configuration can be set for the special ID "*", which will apply to all extensions that don't have a customised configuration set in this policy. With an update URL, configuration will be applied to all extensions with the exact update URL stated in manifest of this extension, as described at <ph name="LINK_TO_EXTENSION_DOC1" />.
The configuration for each extension (or extensions with same update URL) is another dictionary that can contain the fields documented below.
"installation_mode": maps to a string indicating the installation mode for the extension. The valid strings are:
* "allowed": allows the extension to be installed by the user. This is the default behaviour.
* "blocked": blocks installation of the extension.
* "force_installed": the extension is automatically installed and can't be removed by the user.
* "normal_installed": the extension is automatically installed but can be disabled by the user.
The "installation_mode" can also be configured for multiple extensions as well, including the "*" extension (as default settings) and extensions with same update URL. Only the "allowed" and "blocked" values can be used in this case.
If the mode is set to "force_installed" or "normal_installed" then an "update_url" must be configured too. Note that the update URL set in this policy is only used for the initial installation; subsequent updates of the extension will use the update URL indicated in the extension's manifest. The update URL should point to an Update Manifest XML document as mentioned above.
"blocked_permissions": maps to a list of strings indicating the blocked API permissions for the extension. The permissions names are same as the permission strings declared in manifest of extension as described at <ph name="LINK_TO_EXTENSION_DOC3" />. This setting also can be configured for "*" extension. If the extension requires a permission which is on the blocklist, it will not be allowed to load. If it contains a blocked permission as optional requirement, it will be handled in the normal way, but requesting conflicting permissions will be declined automatically at runtime.
"allowed_permissions": similar to "blocked_permissions", but instead explicitly allow some permissions which might be blocked by global blocked permission list, thus can not be configured for "*" extension. Note that this setting doesn't give granted permissions to extensions automatically.
"minimum_version_required": maps to a version string. The format of the version string is the same as the one used in extension manifest, as described at <ph name="LINK_TO_EXTENSION_DOC4" />. An extension with a version older than the specified minimum version will be disabled. This applies to force-installed extensions as well.
The following settings can be used only for the default "*" configuration:
"install_sources": Each item in this list is an extension-style match pattern (see https://developer.chrome.com/extensions/match_patterns). Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.crx file and the page where the download is started from (i.e. the referrer) must be allowed by these patterns.
"allowed_types": This setting whitelists the allowed types of extension/apps that can be installed in <ph name="PRODUCT_NAME" />. The value is a list of strings, each of which should be one of the following: "extension", "theme", "user_script", "hosted_app", "legacy_packaged_app", "platform_app". See the <ph name="PRODUCT_NAME" /> extensions documentation for more information on these types.
This policy isn't ready for usage yet, please don't use it.
</translation>
<translation id="3205825995289802549">Maximise the first browser window on first run</translation>
<translation id="3206731874112238027">Disable Print Preview (deprecated)</translation>
<translation id="3213821784736959823">Controls whether the built-in DNS client is used in <ph name="PRODUCT_NAME" />.
If this policy is set to true, the built-in DNS client will be used, if available.
If this policy is set to false, the built-in DNS client will never be used.
If this policy is left not set, the users will be able to change whether the built-in DNS client is used by editing chrome://flags or specifying a command-line flag.</translation>
<translation id="3214164532079860003">This policy forces the home page to be imported from the current default browser if enabled.
If disabled, the home page is not imported.
If it is not set, the user may be asked whether to import or importing may happen automatically.</translation>
<translation id="3219421230122020860">Incognito mode available.</translation>
<translation id="3236046242843493070">URL patterns to allow extension, app, and user script installs from</translation>
<translation id="3243309373265599239">Specifies the length of time without user input after which the screen is dimmed when running on AC power.
When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> dims the screen.
When this policy is set to zero, <ph name="PRODUCT_OS_NAME" /> does not dim the screen when the user becomes idle.
When this policy is unset, a default length of time is used.
The policy value should be specified in milliseconds. Values are clamped to be less than or equal to the screen off delay (if set) and the idle delay.</translation>
<translation id="3264793472749429012">Default search provider encodings</translation>
<translation id="3273221114520206906">Default JavaScript setting</translation>
<translation id="3288595667065905535">Release channel</translation>
<translation id="3292147213643666827">Enables <ph name="PRODUCT_NAME" /> to act as a proxy between <ph name="CLOUD_PRINT_NAME" /> and legacy printers connected to the machine.
If this setting is enabled or not configured, users can enable the cloud print proxy by authentication with their Google account.
If this setting is disabled, users cannot enable the proxy, and the machine will not be allowed to share it's printers with <ph name="CLOUD_PRINT_NAME" />.</translation>
<translation id="3322771899429619102">Allows you to set a list of URL patterns that specify sites which are allowed to use key generation. If a URL pattern is in 'KeygenBlockedForUrls', that overrides these exceptions.
If this policy is left not set the global default value will be used for all sites either from the 'DefaultKeygenSetting' policy if it is set or the user's personal configuration otherwise.</translation>
<translation id="3381968327636295719">Use the host browser by default</translation>
<translation id="3417418267404583991">If this policy is set to true or not configured, <ph name="PRODUCT_OS_NAME" /> will enable guest logins. Guest logins are anonymous user sessions and do not require a password.
If this policy is set to false, <ph name="PRODUCT_OS_NAME" /> will not allow guest sessions to be started.</translation>
<translation id="3428247105888806363">Enable network prediction.</translation>
<translation id="3460784402832014830">Specifies the URL that a search engine uses to provide a new tab page.
This policy is optional. If not set, no new tab page will be provided.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="346731943813722404">Specifies whether power management delays and the session length limit should only start running after the first user activity has been observed in a session.
If this policy is set to True, power management delays and the session length limit do not start running until after the first user activity has been observed in a session.
If this policy is set to False or left unset, power management delays and the session length limit start running immediately on session start.</translation>
<translation id="3478024346823118645">Wipe user data on sign-out</translation>
<translation id="348495353354674884">Enable virtual keyboard</translation>
<translation id="3496296378755072552">Password manager</translation>
<translation id="3504791027627803580">Specifies the URL of the search engine used to provide image search. Search requests will be sent using the GET method. If the DefaultSearchProviderImageURLPostParams policy is set then image search requests will use the POST method instead.
This policy is optional. If not set, no image search will be used.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="350797926066071931">Enable Translate</translation>
<translation id="3516856976222674451">Limit the maximum length of a user session.
When this policy is set, it specifies the length of time after which a user is automatically logged out, terminating the session. The user is informed about the remaining time by a countdown timer shown in the system tray.
When this policy is not set, the session length is not limited.
If you set this policy, users cannot change or override it.
The policy value should be specified in milliseconds. Values are clamped to a range of 30 seconds to 24 hours.</translation>
<translation id="3528000905991875314">Enable alternate error pages</translation>
<translation id="3547954654003013442">Proxy settings</translation>
<translation id="3570008976476035109">Block plug-ins on these sites</translation>
<translation id="3627678165642179114">Enable or disable spell checking web service</translation>
<translation id="3646859102161347133">Set screen magnifier type</translation>
<translation id="3653237928288822292">Default search provider icon</translation>
<translation id="3660562134618097814">Transfer SAML IdP cookies during login</translation>
<translation id="3709266154059827597">Configure extension installation blacklist</translation>
<translation id="3711895659073496551">Suspend</translation>
<translation id="3715448429089775791">Forces YouTube Safety Mode to active and prevents users from changing this setting.
If you enable this setting, Safety Mode on YouTube is always active.
If you disable this setting or do not set a value, Safety Mode on YouTube is not enforced.</translation>
<translation id="3750220015372671395">Block key generation on these sites</translation>
<translation id="3756011779061588474">Block developer mode</translation>
<translation id="3758249152301468420">Disable Developer Tools</translation>
<translation id="3765260570442823273">Duration of the idle log-out warning message</translation>
<translation id="3768412594120638208">Controls which app/extension types are allowed to be installed.
This setting white-lists the allowed types of extension/apps that can be installed in <ph name="PRODUCT_NAME" />. The value is a list of strings, each of which should be one of the following: "extension", "theme", "user_script", "hosted_app", "legacy_packaged_app", "platform_app". See the <ph name="PRODUCT_NAME" /> extensions documentation for more information on these types.
Note that this policy also affects extensions and apps to be force-installed via ExtensionInstallForcelist.
If this setting is configured, extensions/apps which have a type that is not on the list will not be installed.
If this setting is left not-configured, no restrictions on the acceptable extension/app types are enforced.</translation>
<translation id="3780152581321609624">Include non-standard port in Kerberos SPN</translation>
<translation id="3788662722837364290">Power management settings when the user becomes idle</translation>
<translation id="3793095274466276777">Configures the default browser checks in <ph name="PRODUCT_NAME" /> and prevents users from changing them.
If you enable this setting, <ph name="PRODUCT_NAME" /> will always check on start-up whether it is the default browser and automatically register itself if possible.
If this setting is disabled, <ph name="PRODUCT_NAME" /> will never check if it is the default browser and will disable user controls for setting this option.
If this setting is not set, <ph name="PRODUCT_NAME" /> will allow the user to control whether it is the default browser and whether user notifications should be shown when it isn't.</translation>
<translation id="3800626789999016379">Configures the directory that <ph name="PRODUCT_NAME" /> will use for downloading files.
If you set this policy, <ph name="PRODUCT_NAME" /> will use the provided directory regardless of whether the user has specified one or enabled the flag to be prompted for download location every time.
See https://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
If this policy is left not set the default download directory will be used and the user will be able to change it.</translation>
<translation id="3805659594028420438">Enable TLS domain-bound certificates extension (deprecated)</translation>
<translation id="3806576699227917885">Allow playing audio.
When this policy is set to false, audio output will not be available on the device while the user is logged in.
This policy affects all types of audio output and not only the built-in speakers. Audio accessibility features are also inhibited by this policy. Do not enable this policy if a screen reader is required for the user.
If this setting is set to true or not configured then users can use all supported audio outputs on their device.</translation>
<translation id="3808945828600697669">Specify a list of disabled plug-ins</translation>
<translation id="3816312845600780067">Enable bailout keyboard shortcut for auto-login</translation>
<translation id="3820526221169548563">Enable the on-screen keyboard accessibility feature.
If this policy is set to true, the on-screen keyboard will always be enabled.
If this policy is set to false, the on-screen keyboard will always be disabled.
If you set this policy, users cannot change or override it.
If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user at any time.</translation>
<translation id="382476126209906314">Configure the TalkGadget prefix for remote access hosts</translation>
<translation id="383466854578875212">Allows you to specify which native messaging hosts are not subject to the blacklist.
A blacklist value of * means that all native messaging hosts are blacklisted and only native messaging hosts listed in the whitelist will be loaded.
By default, all native messaging hosts are whitelisted, but if all native messaging hosts have been blacklisted by policy, the whitelist can be used to override that policy.</translation>
<translation id="384743459174066962">Allows you to set a list of url patterns that specify sites which are not allowed to open pop-ups.
If this policy is left unset, the global default value will be used for all sites either from the 'DefaultPop-upsSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="3859780406608282662">Add a parameter to the fetching of the Variations seed in <ph name="PRODUCT_OS_NAME" />.
If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value specified in this policy.
If not specified, will not modify the Variations seed URL.</translation>
<translation id="3863409707075047163">Minimum SSL version enabled</translation>
<translation id="3864818549971490907"> setting</translation>
<translation id="3866249974567520381">Description</translation>
<translation id="3866530186104388232">If this policy is set to true or not configured, <ph name="PRODUCT_OS_NAME" /> will show existing users on the login screen and allow the user to pick one. If this policy is set to false, <ph name="PRODUCT_OS_NAME" /> will use the username/password prompt for login.</translation>
<translation id="3866824067696705379">How frequently monitoring heartbeats are sent, in milliseconds.
If this policy is unset, the default frequency is 3 minutes. The minimum
frequency is 30 seconds and the maximum frequency is 24 hours –
values
outside of this range will be clamped to this range.</translation>
<translation id="3868347814555911633">This policy is active in retail mode only.
Lists extensions that are automatically installed for the Demo user, for devices in retail mode. These extensions are saved in the device and can be installed while offline, after the installation.
Each list entry contains a dictionary that must include the extension ID in the 'extension-id' field, and its update URL in the 'update-url' field.</translation>
<translation id="3891357445869647828">Enable JavaScript</translation>
<translation id="389421284571827139">Allows you to specify the proxy server used by <ph name="PRODUCT_NAME" /> and prevents users from changing proxy settings.
If you choose to never use a proxy server and always connect directly, all other options are ignored.
If you choose to auto-detect the proxy server, all other options are ignored.
For detailed examples, visit:
<ph name="PROXY_HELP_URL" />
If you enable this setting, <ph name="PRODUCT_NAME" /> ignores all proxy-related options specified from the command line.
Leaving these policies unset will allow the users to choose the proxy settings on their own.</translation>
<translation id="3907986150060929099">Set the recommended locales for a public session</translation>
<translation id="391531815696899618">Disables Google Drive syncing in the <ph name="PRODUCT_OS_NAME" /> Files app when set to True. In that case, no data is uploaded to Google Drive.
If not set or set to False, then users will be able to transfer files to Google Drive.</translation>
<translation id="3915395663995367577">URL to a proxy .pac file</translation>
<translation id="3964909636571393861">Allows access to a list of URLs</translation>
<translation id="3965339130942650562">Timeout until idle user log-out is executed</translation>
<translation id="3967075520570946456">Enable showing the welcome page on the first browser launch following OS upgrade.</translation>
<translation id="3973371701361892765">Never auto-hide the shelf</translation>
<translation id="3984028218719007910">Determines whether <ph name="PRODUCT_OS_NAME" /> keeps local account data after logout. If set to true, no persistent accounts are kept by <ph name="PRODUCT_OS_NAME" /> and all data from the user session will be discarded after logout. If this policy is set to false or not configured, the device may keep (encrypted) local user data.</translation>
<translation id="4001275826058808087">IT admins for enterprise devices can use this flag to control whether to allow users to redeem offers through Chrome OS Registration.
If this policy is set to true or left not set, users will be able to redeem offers through Chrome OS Registration.
If this policy is set to false, user will not be able to redeem offers.</translation>
<translation id="4010738624545340900">Allow invocation of file selection dialogues</translation>
<translation id="4025586928523884733">Blocks third party cookies.
Enabling this setting prevents cookies from being set by web page elements that are not from the domain that is in the browser's address bar.
Disabling this setting allows cookies to be set by web page elements that are not from the domain that is in the browser's address bar and prevents users from changing this setting.
If this policy is left unset, third party cookies will be enabled but the user will be able to change that.</translation>
<translation id="402759845255257575">Do not allow any site to run JavaScript</translation>
<translation id="4027608872760987929">Enable the default search provider</translation>
<translation id="4039085364173654945">Controls whether third-party sub-content on a page is allowed to pop up an HTTP Basic Auth dialogue box.
Typically this is disabled as a phishing defence. If this policy is not set, this is disabled and third-party sub-content will not be allowed to pop up a HTTP Basic Auth dialogue box.</translation>
<translation id="4052765007567912447">Controls whether the user may show passwords in clear text in the password manager.
If you disable this setting, the password manager does not allow showing stored passwords in clear text in the password manager window.
If you enable or do not set this policy, users can view their passwords in clear text in the password manager.</translation>
<translation id="4056910949759281379">Disable SPDY protocol</translation>
<translation id="4088589230932595924">Incognito mode forced.</translation>
<translation id="4088983553732356374">Allows you to set whether websites are allowed to set local data. Setting local data can be either allowed for all websites or denied for all websites.
If this policy is set to 'Keep cookies for the duration of the session' then cookies will be cleared when the session closes. Note that if <ph name="PRODUCT_NAME" /> is running in 'background mode', the session may not close when the last window is closed. Please see the 'BackgroundModeEnabled' policy for more information about configuring this behaviour.
If this policy is left not set, 'AllowCookies' will be used and the user will be able to change it.</translation>
<translation id="410478022164847452">Specifies the length of time without user input after which the idle action is taken when running on AC power.
When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> takes the idle action, which can be configured separately.
When this policy is unset, a default length of time is used.
The policy value should be specified in milliseconds.</translation>
<translation id="4121350739760194865">Prevent app promotions from appearing on the new tab page</translation>
<translation id="4147054660081653009">Client certificate for connecting to RemoteAccessHostTokenValidationUrl.
If this policy is set, the host will use a client certificate with the given issuer CN to authenticate to RemoteAccessHostTokenValidationUrl. Set it to "*" to use any available client certificate.
This feature is currently disabled server-side.</translation>
<translation id="4157003184375321727">Report OS and firmware version</translation>
<translation id="4192388905594723944">URL for validating remote access client authentication token</translation>
<translation id="4203389617541558220">Limit the device uptime by scheduling automatic reboots.
When this policy is set, it specifies the length of device uptime after which an automatic reboot is scheduled.
When this policy is not set, the device uptime is not limited.
If you set this policy, users cannot change or override it.
An automatic reboot is scheduled at the selected time but may be delayed on the device by up to 24 hours if a user is currently using the device.
Note: Currently, automatic reboots are only enabled while the login screen is being shown or a Kiosk app session is in progress. This will change in the future and the policy will always apply, regardless of whether a session of any particular type is in progress or not.
The policy value should be specified in seconds. Values are clamped to be at least 3600 (one hour).</translation>
<translation id="420512303455129789">A dictionary mapping URLs to a boolean flag specifying whether access to the host should be allowed (true) or blocked (false).
This policy is for internal use by <ph name="PRODUCT_NAME" /> itself.</translation>
<translation id="4224610387358583899">Screen lock delays</translation>
<translation id="423797045246308574">Allows you to set a list of URL patterns that specify sites which are not allowed to use key generation. If a URL pattern is in 'KeygenAllowedForUrls', this policy overrides these exceptions.
If this policy is left not set the global default value will be used for all sites either from the 'DefaultKeygenSetting' policy if it is set or the user's personal configuration otherwise.</translation>
<translation id="4250680216510889253">No</translation>
<translation id="427632463972968153">Specifies the parameters used when doing image search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {imageThumbnail} in above example, it will be replaced with real image thumbnail data.
This policy is optional. If not set, image search request will be sent using the GET method.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="4320376026953250541">Microsoft Windows XP SP2 or later</translation>
<translation id="4322842393287974810">Allow the auto launched with zero delay kiosk app to control <ph name="PRODUCT_OS_NAME" /> version</translation>
<translation id="4325690621216251241">Add a logout button to the system tray</translation>
<translation id="4347908978527632940">If true and the user is a supervised user, then other Android apps can query the user's web restrictions through a content provider.
If false or unset, then the content provider returns no information.</translation>
<translation id="4349746760316962317">Configures the directory that <ph name="PRODUCT_NAME" /> will use for storing cached files on the disk.
If you set this policy, <ph name="PRODUCT_NAME" /> will use the provided directory regardless of whether the user has specified the '--disk-cache-dir' flag or not.
See https://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
If this policy is left not set the default cache directory will be used and the user will be able to override it with the '--disk-cache-dir' command line flag.</translation>
<translation id="436581050240847513">Report device network interfaces</translation>
<translation id="4372704773119750918">Do not allow enterprise user to be part of multiprofile (primary or secondary)</translation>
<translation id="4377599627073874279">Allow all sites to show all images</translation>
<translation id="4389091865841123886">Configure the remote attestation with TPM mechanism.</translation>
<translation id="4423597592074154136">Manually specify proxy settings</translation>
<translation id="4429220551923452215">Enables or disables the apps shortcut in the bookmark bar.
If this policy is not set then the user can choose to show or hide the apps shortcut from the bookmark bar context menu.
If this policy is configured then the user can't change it, and the apps shortcut is always shown or never shown.</translation>
<translation id="443665821428652897">Clear site data on browser shutdown (deprecated)</translation>
<translation id="4439336120285389675">Specify a list of deprecated web platform features to re-enable temporarily.
This policy gives administrators the ability to re-enable deprecated web platform features for a limited time. Features are identified by a string tag and the features corresponding to the tags included in the list specified by this policy will get re-enabled.
If this policy is left not set or the list is empty or does not match one of the supported string tags, all deprecated web platform features will remain disabled.
While the policy itself is supported on the above platforms, the feature that it is enabling may be available on fewer platforms. Not all deprecated Web Platform features can be re-enabled. Only the ones explicitly listed below can be for a limited period of time, which is different per feature. The general format of the string tag will be [DeprecatedFeatureName]_EffectiveUntil[yyyymmdd]. As reference, you can find the intent behind the Web Platform feature changes at https://bit.ly/blinkintents.
</translation>
<translation id="4442582539341804154">Enable lock when the device become idle or suspended</translation>
<translation id="4445684791305970001">Disables the Developer Tools and the JavaScript console.
If you enable this setting, the Developer Tools cannot be accessed and website elements cannot be inspected any more. Any keyboard shortcuts and any menu or context menu entries to open the Developer Tools or the JavaScript Console will be disabled.
Setting this option to disabled or leaving it unset will allow the user to use the Developer Tools and the JavaScript console.</translation>
<translation id="4449545651113180484">Rotate screen clockwise by 270 degrees</translation>
<translation id="4467952432486360968">Block third-party cookies</translation>
<translation id="4474167089968829729">Enable saving passwords to the password manager</translation>
<translation id="4480694116501920047">Force SafeSearch</translation>
<translation id="4482640907922304445">Shows the Home button on <ph name="PRODUCT_NAME" />'s toolbar.
If you enable this setting, the Home button is always shown.
If you disable this setting, the Home button is never shown.
If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
Leaving this policy unset will allow the user to choose whether to show the home button.</translation>
<translation id="4492287494009043413">Disable taking screenshots</translation>
<translation id="450537894712826981">Configures the cache size that <ph name="PRODUCT_NAME" /> will use for storing cached media files on the disk.
If you set this policy, <ph name="PRODUCT_NAME" /> will use the provided cache size regardless of whether the user has specified the '--media-cache-size' flag or not. The value specified in this policy is not a hard boundary but rather a suggestion to the caching system, any value below a few megabytes is too small and will be rounded up to a sane minimum.
If the value of this policy is 0, the default cache size will be used but the user will not be able to change it.
If this policy is not set, the default size will be used and the user will be able to override it with the --media-cache-size flag.</translation>
<translation id="4518251772179446575">Ask whenever a site wants to track the users' physical location</translation>
<translation id="4519046672992331730">Enables search suggestions in <ph name="PRODUCT_NAME" />'s omnibox and prevents users from changing this setting.
If you enable this setting, search suggestions are used.
If you disable this setting, search suggestions are never used.
If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this policy is left not set, this will be enabled but the user will be able to change it.</translation>
<translation id="4525521128313814366">Allows you to set a list of url patterns that specify sites which are not allowed to display images.
If this policy is left unset, the global default value will be used for all sites either from the 'DefaultImagesSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="4534500438517478692">Android restriction name:</translation>
<translation id="4541530620466526913">Device-local accounts</translation>
<translation id="4555850956567117258">Enable remote attestation for the user</translation>
<translation id="4557134566541205630">Default search provider new tab page URL</translation>
<translation id="4600786265870346112">Enable large cursor</translation>
<translation id="4604931264910482931">Configure native messaging blacklist</translation>
<translation id="4617338332148204752">Skip the meta tag check in <ph name="PRODUCT_FRAME_NAME" /></translation>
<translation id="4625915093043961294">Configure extension installation whitelist</translation>
<translation id="4632343302005518762">Allow <ph name="PRODUCT_FRAME_NAME" /> to handle the listed content types</translation>
<translation id="4633786464238689684">Changes the default behaviour of the top row keys to function keys.
If this policy is set to true, the keyboard's top row of keys will produce function key commands by default. The search key has to be pressed to revert their behaviour back to media keys.
If this policy is set to false or left unset, the keyboard will produce media key commands by default and function key commands when the search key is held.</translation>
<translation id="4639407427807680016">Names of the native messaging hosts to be exempt from the blacklist</translation>
<translation id="4650759511838826572">Disable URL protocol schemes</translation>
<translation id="465099050592230505">Enterprise web store URL (deprecated)</translation>
<translation id="4655130238810647237">Enables or disables editing bookmarks in <ph name="PRODUCT_NAME" />.
If you enable this setting, bookmarks can be added, removed or modified. This is the default also when this policy is not set.
If you disable this setting, bookmarks cannot be added, removed or modified. Existing bookmarks are still available.</translation>
<translation id="4665897631924472251">Extension management settings</translation>
<translation id="4668325077104657568">Default images setting</translation>
<translation id="467236746355332046">Supported features:</translation>
<translation id="4674167212832291997">Customise the list of URL patterns that should always be rendered by <ph name="PRODUCT_FRAME_NAME" />.
If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.
For example patterns see https://www.chromium.org/developers/how-tos/chrome-frame-getting-started.</translation>
<translation id="467449052039111439">Open a list of URLs</translation>
<translation id="4680961954980851756">Enable AutoFill</translation>
<translation id="4723829699367336876">Enable firewall traversal from remote access client</translation>
<translation id="4733471537137819387">Policies related to integrated HTTP authentication.</translation>
<translation id="4744190513568488164">Servers that <ph name="PRODUCT_NAME" /> may delegate to.
Separate multiple server names with commas. Wildcards (*) are allowed.
If you leave this policy unset <ph name="PRODUCT_NAME" /> will not delegate user credentials even if a server is detected as Intranet.</translation>
<translation id="4752880493649142945">Client certificate for connecting to RemoteAccessHostTokenValidationUrl</translation>
<translation id="4768493164188395498">Frequency of monitoring heartbeats</translation>
<translation id="4791031774429044540">Enable the large cursor accessibility feature.
If this policy is set to true, the large cursor will always be enabled.
If this policy is set to false, the large cursor will always be disabled.
If you set this policy, users cannot change or override it.
If this policy is left unset, the large cursor is disabled initially but can be enabled by the user at any time.</translation>
<translation id="4807950475297505572">Least recently used users are removed until there is enough free space</translation>
<translation id="480987484799365700">If set to enabled this policy forces the profile to be switched to ephemeral mode. If this policy is specified as an OS policy (e.g. GPO on Windows) it will apply to every profile on the system; if the policy is set as a Cloud policy it will apply only to a profile signed in with a managed account.
In this mode the profile data is persisted on disk only for the length of the user session. Features like browser history, extensions and their data, web data like cookies and web databases are not preserved after the browser is closed. However this does not prevent the user from downloading any data to disk manually, save pages or print them.
If the user has enabled sync all this data is preserved in his sync profile just like with regular profiles. Incognito mode is also available if not explicitly disabled by policy.
If the policy is set to disabled or left not set signing in leads to regular profiles.</translation>
<translation id="4816674326202173458">Allow enterprise user to be both primary and secondary (Default behaviour for non-managed users)</translation>
<translation id="4826326557828204741">Action to take when the idle delay is reached while running on battery power</translation>
<translation id="4834526953114077364">Least recently used users who have not logged in within the last 3 months are removed until there is enough free space</translation>
<translation id="4838572175671839397">Contains a regular expression which is used to determine which users can sign in to <ph name="PRODUCT_NAME" />.
An appropriate error is displayed if a user tries to log in with a username that does not match this pattern.
If this policy is left not set or blank, then any user can sign in to <ph name="PRODUCT_NAME" />.</translation>
<translation id="4858735034935305895">Allow fullscreen mode</translation>
<translation id="4869787217450099946">Specifies whether screen wake locks are allowed. Screen wake locks can be requested by extensions via the power management extension API.
If this policy is set to true or left not set, screen wake locks will be honoured for power management.
If this policy is set to false, screen wake lock requests will be ignored.</translation>
<translation id="4890209226533226410">Set the type of screen magnifier that is enabled.
If this policy is set, it controls the type of screen magnifier that is enabled. Setting the policy to "None" disables the screen magnifier.
If you set this policy, users cannot change or override it.
If this policy is left unset, the screen magnifier is disabled initially but can be enabled by the user at any time.</translation>
<translation id="4897928009230106190">Specifies the parameters used when doing suggestion search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
This policy is optional. If not set, suggest search request will be sent using the GET method.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="489803897780524242">Parameter controlling search term placement for the default search provider</translation>
<translation id="4899708173828500852">Enable Safe Browsing</translation>
<translation id="4906194810004762807">Refresh rate for Device Policy</translation>
<translation id="4928632305180102854">Controls whether <ph name="PRODUCT_OS_NAME" /> allows new user accounts to be created. If this policy is set to false, users that do not have an account already will not be able to login.
If this policy is set to true or not configured, new user accounts are allowed to be created, provided that <ph name="DEVICEUSERWHITELISTPROTO_POLICY_NAME" /> does not prevent the user from logging in.</translation>
<translation id="4962195944157514011">Specifies the URL of the search engine used when doing a default search. The URL should contain the string '<ph name="SEARCH_TERM_MARKER" />', which will be replaced at query time by the terms the user is searching for.
This option must be set when the 'DefaultSearchProviderEnabled' policy is enabled and will only be respected if this is the case.</translation>
<translation id="4971529314808359013">Allows you to specify a list of URL patterns that specify sites for which <ph name="PRODUCT_NAME" /> should automatically select a client certificate, if the site requests a certificate.
The value must be an array of stringified JSON dictionaries. Each dictionary must have the form { "pattern": "$URL_PATTERN", "filter" : $FILTER }, where $URL_PATTERN is a content setting pattern. $FILTER restricts from which client certificates the browser will automatically select. Independent of the filter, only certificates will be selected that match the server's certificate request. If $FILTER has the form { "ISSUER": { "CN": "$ISSUER_CN" } }, additionally only client certificates are selected that are issued by a certificate with the CommonName $ISSUER_CN. If $FILTER is the empty dictionary {}, the selection of client certificates is not additionally restricted.
If this policy is left not set, no auto-selection will be done for any site.</translation>
<translation id="4980301635509504364">Allow or deny video capture.
If enabled or not configured (default), the user will be prompted for
video capture access except for URLs configured in the
VideoCaptureAllowedUrls list which will be granted access without prompting.
When this policy is disabled, the user will never be prompted and video
capture only be available to URLs configured in VideoCaptureAllowedUrls.
This policy affects all types of video inputs and not only the built-in camera.</translation>
<translation id="4980635395568992380">Data Types</translation>
<translation id="4983201894483989687">Allow running plug-ins that are outdated</translation>
<translation id="4988291787868618635">Action to take when the idle delay is reached</translation>
<translation id="5047604665028708335">Allow access to sites outside of content packs</translation>
<translation id="5052081091120171147">This policy forces the browsing history to be imported from the current default browser, if enabled. If enabled, this policy also affects the import dialogue.
If disabled, no browsing history is imported.
If it is not set, the user may be asked whether to import or importing may happen automatically.</translation>
<translation id="5056708224511062314">Screen magnifier disabled</translation>
<translation id="5067143124345820993">Login user white list</translation>
<translation id="510186355068252378">Disables data synchronisation in <ph name="PRODUCT_NAME" /> using Google-hosted synchronisation services and prevents users from changing this setting.
If you enable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this policy is left unset, Google Sync will be available for the user to choose whether to use it or not.</translation>
<translation id="5105313908130842249">Screen lock delay when running on battery power</translation>
<translation id="5111573778467334951">Specify the action to take when the idle delay is reached while running on battery power.
When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME" /> takes when the user remains idle for the length of time given by the idle delay, which can be configured separately.
When this policy is unset, the default action is taken, which is suspend.
If the action is suspend, <ph name="PRODUCT_OS_NAME" /> can separately be configured to either lock or not lock the screen before suspending.</translation>
<translation id="5111712393799006197">Configures the directory that <ph name="PRODUCT_NAME" /> will use for storing user data.
If you set this policy, <ph name="PRODUCT_NAME" /> will use the provided directory regardless of whether the user has specified the '--user-data-dir' flag or not.
See https://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
If this policy is left not set the default profile path will be used and the user will be able to override it with the '--user-data-dir' command line flag.</translation>
<translation id="5130288486815037971">Whether RC4 cipher suites in TLS are enabled</translation>
<translation id="5141670636904227950">Set the default screen magnifier type enabled on the login screen</translation>
<translation id="5142301680741828703">Always render the following URL patterns in <ph name="PRODUCT_FRAME_NAME" /></translation>
<translation id="5148753489738115745">Allows you to specify additional parameters that are used when <ph name="PRODUCT_FRAME_NAME" /> launches <ph name="PRODUCT_NAME" />.
If this policy is not set the default command line will be used.</translation>
<translation id="5182055907976889880">Configure Google Drive in <ph name="PRODUCT_OS_NAME" />.</translation>
<translation id="5183383917553127163">Allows you to specify which extensions are not subject to the blacklist.
A blacklist value of * means all extensions are blacklisted and users can only install extensions listed in the whitelist.
By default, all extensions are whitelisted, but if all extensions have been blacklisted by policy, the whitelist can be used to override that policy.</translation>
<translation id="5192837635164433517">Enables the use of alternative error pages that are built into <ph name="PRODUCT_NAME" /> (such as 'page not found') and prevents users from changing this setting.
If you enable this setting, alternative error pages are used.
If you disable this setting, alternative error pages are never used.
If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this policy is left unset, this will be enabled but the user will be able to change it.</translation>
<translation id="5196805177499964601">Block developer mode.
If this policy is set to True, <ph name="PRODUCT_OS_NAME" /> will prevent the device from booting into developer mode. The system will refuse to boot and show an error screen when the developer switch is turned on.
If this policy is unset or set to False, developer mode will remain available for the device.</translation>
<translation id="5208240613060747912">Allows you to set a list of url patterns that specify sites which are not allowed to display notifications.
If this policy is left unset the global default value will be used for all sites either from the 'DefaultNotificationsSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="5226033722357981948"> finder should be disabled</translation>
<translation id="523505283826916779">Accessibility settings</translation>
<translation id="5255162913209987122">Can be Recommended</translation>
<translation id="527237119693897329">Allows you to specify which native messaging hosts should not be loaded.
A blacklist value of '*' means that all native messaging hosts are blacklisted unless they are explicitly listed in the whitelist.
If this policy is left not set <ph name="PRODUCT_NAME" /> will load all installed native messaging hosts.</translation>
<translation id="5290940294294002042">Specify a list of plug-ins that the user can enable or disable</translation>
<translation id="5298412045697677971">Configure user avatar image.
This policy allows you to configure the avatar image representing the user on the login screen. The policy is set by specifying the URL from which <ph name="PRODUCT_OS_NAME" /> can download the avatar image and a cryptographic hash used to verify the integrity of the download. The image must be in JPEG format, its size must not exceed 512 KB. The URL must be accessible without any authentication.
The avatar image is downloaded and cached. It will be re-downloaded whenever the URL or the hash changes.
The policy should be specified as a string that expresses the URL and hash in JSON format, conforming to the following schema:
{
"type": "object",
"properties": {
"url": {
"description": "The URL from which the avatar image can be downloaded.",
"type": "string"
},
"hash": {
"description": "The SHA-256 hash of the avatar image.",
"type": "string"
}
}
}
If this policy is set, <ph name="PRODUCT_OS_NAME" /> will download and use the avatar image.
If you set this policy, users cannot change or override it.
If the policy is left not set, the user can choose the avatar image representing him / her on the login screen.</translation>
<translation id="5302612588919538756">This policy is deprecated, consider using SyncDisabled instead.
Allows the user to sign in to <ph name="PRODUCT_NAME" />.
If you set this policy, you can configure whether a user is allowed to sign in to <ph name="PRODUCT_NAME" />. Setting this policy to 'False' will prevent apps and extensions that use the chrome.identity API from functioning, so you may want to use SyncDisabled instead.</translation>
<translation id="5304269353650269372">Specifies the length of time without user input after which a warning dialogue is shown when running on battery power.
When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> shows a warning dialogue telling the user that the idle action is about to be taken.
When this policy is unset, no warning dialogue is shown.
The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.</translation>
<translation id="5307432759655324440">Incognito mode availability</translation>
<translation id="5318185076587284965">Enable the use of relay servers by the remote access host</translation>
<translation id="5330684698007383292">Allow <ph name="PRODUCT_FRAME_NAME" /> to handle the following content types</translation>
<translation id="5345267406698765263">Specifies the ARC application policy as JSON string which can be
handed-off as-is to the ARC runtime. At the moment, this setting is used
solely to specify force-installation of the apps.
If this policy is left unset, no apps are installed automatically.</translation>
<translation id="5365946944967967336">Show Home button on the toolbar</translation>
<translation id="5366977351895725771">If set to false, supervised-user creation by this user will be disabled. Any existing supervised users will still be available.
If set to true or not configured, supervised users can be created and managed by this user.</translation>
<translation id="5378985487213287085">Allows you to set whether websites are allowed to display desktop notifications. Displaying desktop notifications can be allowed by default, denied by default or the user can be asked every time a website wants to show desktop notifications.
If this policy is left not set, 'AskNotifications' will be used and the user will be able to change it.</translation>
<translation id="538108065117008131">Allow <ph name="PRODUCT_FRAME_NAME" /> to handle the following content types.</translation>
<translation id="5388730678841939057">Selects the strategy used to free up disk space during automatic clean-up</translation>
<translation id="5395271912574071439">Enables curtaining of remote access hosts while a connection is in progress.
If this setting is enabled, then hosts' physical input and output devices are disabled while a remote connection is in progress.
If this setting is disabled or not set, then both local and remote users can interact with the host when it is being shared.</translation>
<translation id="5423001109873148185">This policy forces search engines to be imported from the current default browser, if enabled. If enabled, this policy also affects the import dialogue.
If disabled, the default search engine is not imported.
If it is not set, the user may be asked whether to import or importing may happen automatically.</translation>
<translation id="5423197884968724595">Android WebView restriction name:</translation>
<translation id="5447306928176905178">Enable reporting memory info (JS heap size) to page (deprecated)</translation>
<translation id="5457065417344056871">Enable guest mode in browser</translation>
<translation id="5457924070961220141">Allows you to configure the default HTML renderer when <ph name="PRODUCT_FRAME_NAME" /> is installed.
The default setting used when this policy is left unset is to allow the host browser do the rendering, but you can optionally override this and have <ph name="PRODUCT_FRAME_NAME" /> render HTML pages by default.</translation>
<translation id="5461308170340925511">Configures extension-related policies. The user is not allowed to install blacklisted extensions unless they are whitelisted. You can also force <ph name="PRODUCT_NAME" /> to automatically install extensions by specifying them in <ph name="EXTENSIONINSTALLFORCELIST_POLICY_NAME" />. Force-installed extensions are installed regardless whether they are present in the blacklist.</translation>
<translation id="5464816904705580310">Configure settings for managed users.</translation>
<translation id="5465776916241336961">Enables the old web-based sign in flow.
This setting was named EnableWebBasedSignin prior to Chrome 42 and support for it will be removed entirely in Chrome 43.
This setting is useful for enterprise customers who are using SSO solutions that are not compatible with the new in-line sign in flow yet.
If you enable this setting, the old web-based sign in flow would be used.
If you disable this setting or leave it not set, the new in-line sign in flow would be used by default. Users may still enable the old web-based sign in flow through the command line flag –
enable-web-based-sign-in.
The experimental setting will be removed in the future when the in-line sign in fully supports all SSO sign in flows.</translation>
<translation id="546726650689747237">Screen dim delay when running on AC power</translation>
<translation id="5469484020713359236">Allows you to set a list of url patterns that specify sites which are allowed to set cookies.
If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="5469825884154817306">Block images on these sites</translation>
<translation id="5475361623548884387">Enable printing</translation>
<translation id="5496487987837463732">Setting this policy to false stops users from choosing to send information about security errors they encounter to Google servers. If this setting is true or not configured, then users will be allowed to send information when they encounter an SSL error or Safe Browsing warning.</translation>
<translation id="5499375345075963939">This policy is active in retail mode only.
When the value of this policy is set and is not 0 then the currently logged in demo user will be logged out automatically after an inactivity time of the specified duration has elapsed.
The policy value should be specified in milliseconds.</translation>
<translation id="5511702823008968136">Enable Bookmark Bar</translation>
<translation id="5512418063782665071">Home page URL</translation>
<translation id="5523812257194833591">A public session to auto-login after a delay.
If this policy is set, the specified session will be automatically logged in after a period of time has elapsed at the login screen without user interaction. The public session must already be configured (see |DeviceLocalAccounts|).
If this policy is unset, there will be no auto-login.</translation>
<translation id="5535973522252703021">Kerberos delegation server whitelist</translation>
<translation id="5560039246134246593">Add a parameter to the fetching of the Variations seed in <ph name="PRODUCT_NAME" />.
If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value specified in this policy.
If not specified, will not modify the Variations seed URL.</translation>
<translation id="5564962323737505851">Configures the password manager. If the password manager is enabled, then you can choose to enable or disable whether the user may show stored passwords in clear text.</translation>
<translation id="556941986578702361">Control auto-hiding of the <ph name="PRODUCT_OS_NAME" /> shelf.
If this policy is set to 'AlwaysAutoHideShelf', the shelf will always auto-hide.
If this policy is set to 'NeverAutoHideShelf', the shelf never auto-hides.
If you set this policy, users cannot change or override it.
If the policy is left not set, users can choose whether the shelf should auto-hide.</translation>
<translation id="557658534286111200">Enables or disables bookmark editing</translation>
<translation id="5586942249556966598">Do nothing</translation>
<translation id="5613179474872285001">Configures the required client domain name that will be imposed on remote access clients and prevents users from changing it.
If this setting is enabled, then only clients from the specified domain can connect to the host.
If this setting is disabled or not set, then the default policy for the connection type is applied. For remote assistance, this allows clients from any domain can connect to the host; for anytime remote access, only the host owner can connect.
See also RemoteAccessHostDomain.</translation>
<translation id="5630352020869108293">Restore the last session</translation>
<translation id="5645779841392247734">Allow cookies on these sites</translation>
<translation id="5677038592630896441">Requires that the name of the local user and the remote access host owner match.
If this setting is enabled, then the remote access host compares the name of the local user (that the host is associated with) and the name of the Google account registered as the host owner (i.e. "johndoe" if the host is owned by "johndoe@example.com" Google account). The remote access host will not start if the name of the host owner is different from the name of the local user that the host is associated with. RemoteAccessHostMatchUsername policy should be used together with RemoteAccessHostDomain to also enforce that the Google account of the host owner is associated with a specific domain (i.e. "example.com").
If this setting is disabled or not set, then the remote access host can be associated with any local user.</translation>
<translation id="5697306356229823047">Report device users</translation>
<translation id="5703863730741917647">Specify the action to take when the idle delay is reached.
Note that this policy is deprecated and will be removed in the future.
This policy provides a fallback value for the more-specific <ph name="IDLEACTIONAC_POLICY_NAME" /> and <ph name="IDLEACTIONBATTERY_POLICY_NAME" /> policies. If this policy is set, its value gets used if the respective more-specific policy is not set.
When this policy is unset, behaviour of the more-specific policies remains unaffected.</translation>
<translation id="5722934961007828462">When this setting is enabled, <ph name="PRODUCT_NAME" /> will always perform revocation checking for server certificates that successfully validate and are signed by locally-installed CA certificates.
If <ph name="PRODUCT_NAME" /> is unable to obtain revocation status information, such certificates will be treated as revoked ('hard-fail').
If this policy is not set or it is set to false then <ph name="PRODUCT_NAME" /> will use the existing online revocation checking settings.</translation>
<translation id="5732972008943405952">Import autofill form data from default browser on first run</translation>
<translation id="5761030451068906335">Configures the proxy settings for <ph name="PRODUCT_NAME" />.
This policy isn't ready for usage yet, please don't use it.</translation>
<translation id="5765780083710877561">Description:</translation>
<translation id="5770738360657678870">Dev channel (may be unstable)</translation>
<translation id="5774856474228476867">Default search provider search URL</translation>
<translation id="5776485039795852974">Ask every time a site wants to show desktop notifications</translation>
<translation id="5781412041848781654">Specifies which GSSAPI library to use for HTTP authentication. You can set either just a library name or a full path.
If no setting is provided, <ph name="PRODUCT_NAME" /> will fall back to using a default library name.</translation>
<translation id="5781806558783210276">Specifies the length of time without user input after which the idle action is taken when running on battery power.
When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> takes the idle action, which can be configured separately.
When this policy is unset, a default length of time is used.
The policy value should be specified in milliseconds.</translation>
<translation id="5809728392451418079">Set the display name for device-local accounts</translation>
<translation id="5814301096961727113">Set the default state of spoken feedback on the login screen</translation>
<translation id="5815129011704381141">Automatically reboot after update</translation>
<translation id="5815353477778354428">Configures the directory that <ph name="PRODUCT_FRAME_NAME" /> will use for storing user data.
If you set this policy, <ph name="PRODUCT_FRAME_NAME" /> will use the provided directory.
See https://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
If this setting is left not set the default profile directory will be used.</translation>
<translation id="5819660021114910752">Specifies the timezone to be used for the device. Users can override the specified timezone for the current session. However, on logout it is set back to the specified timezone. If an invalid value is provided, the policy is still activated using "GMT" instead. If an empty string is provided, the policy is ignored.
If this policy is not used, the currently active timezone will remain in use. However, users can change the timezone and the change is persistent. Thus a change by one user affects the login screen and all other users.
New devices start out with the timezone set to "US/Pacific".
The format of the value follows the names of timezones in the "IANA Time Zone Database" (see "https://en.wikipedia.org/wiki/Tz_database"). In particular, most timezones can be referred to by "continent/large_city" or "ocean/large_city".</translation>
<translation id="5826047473100157858">Specifies whether the user may open pages in Incognito mode in <ph name="PRODUCT_NAME" />.
If 'Enabled' is selected or the policy is left unset, pages may be opened in Incognito mode.
If 'Disabled' is selected, pages may not be opened in Incognito mode.
If 'Forced' is selected, pages may be opened ONLY in Incognito mode.</translation>
<translation id="5836064773277134605">Restrict the UDP port range used by the remote access host</translation>
<translation id="5845159892130426052">Enable ShowModalDialog API until 2015.04.30</translation>
<translation id="5862253018042179045">Set the default state of the spoken feedback accessibility feature on the login screen.
If this policy is set to true, spoken feedback will be enabled when the login screen is shown.
If this policy is set to false, spoken feedback will be disabled when the login screen is shown.
If you set this policy, users can temporarily override it by enabling or disabling spoken feedback. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
If this policy is left unset, spoken feedback is disabled when the login screen is first shown. Users can enable or disable spoken feedback at any time and its status on the login screen is persisted between users.</translation>
<translation id="5868414965372171132">User-level network configuration</translation>
<translation id="588135807064822874">Enable Touch to Search</translation>
<translation id="5883015257301027298">Default cookies setting</translation>
<translation id="5887291617378691520">If 'Open a list of URLs' is selected as the startup action, this allows you to specify the list of URLs that are opened. If left not set no URL will be opened on start up.
This policy only works if the 'RestoreOnStartup' policy is set to 'RestoreOnStartupIsURLs'.
This policy is not available on Windows instances that are not joined
to an Active Directory domain.</translation>
<translation id="5887414688706570295">Configures the TalkGadget prefix that will be used by remote access hosts and prevents users from changing it.
If specified, this prefix is prepended to the base TalkGadget name to create a full domain name for the TalkGadget. The base TalkGadget domain name is '.talkgadget.google.com'.
If this setting is enabled, then hosts will use the custom domain name when accessing the TalkGadget instead of the default domain name.
If this setting is disabled or not set, then the default TalkGadget domain name ('chromoting-host.talkgadget.google.com') will be used for all hosts.
Remote access clients are not affected by this policy setting. They will always use 'chromoting-client.talkgadget.google.com' to access the TalkGadget.</translation>
<translation id="5893553533827140852">If this setting is enabled, then gnubby authentication requests will be proxied across a remote host connection.
If this setting is disabled or not configured, gnubby authentication requests will not be proxied.</translation>
<translation id="5912364507361265851">Allow users to show passwords in Password Manager</translation>
<translation id="5921713479449475707">Allow autoupdate downloads via HTTP</translation>
<translation id="5921888683953999946">Set the default state of the large cursor accessibility feature on the login screen.
If this policy is set to true, the large cursor will be enabled when the login screen is shown.
If this policy is set to false, the large cursor will be disabled when the login screen is shown.
If you set this policy, users can temporarily override it by enabling or disabling the large cursor. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
If this policy is left unset, the large cursor is disabled when the login screen is first shown. Users can enable or disable the large cursor at any time and its status on the login screen is persisted between users.</translation>
<translation id="5936622343001856595">Forces queries in Google Web Search to be done with SafeSearch set to active and prevents users from changing this setting.
If you enable this setting, SafeSearch in Google Search is always active.
If you disable this setting or do not set a value, SafeSearch in Google Search is not enforced.</translation>
<translation id="5946082169633555022">Beta channel</translation>
<translation id="5950205771952201658">In light of the fact that soft-fail, online revocation checks provide no effective security benefit, they are disabled by default in <ph name="PRODUCT_NAME" /> version 19 and later. By setting this policy to true, the previous behaviour is restored and online OCSP/CRL checks will be performed.
If the policy is not set, or is set to false, then <ph name="PRODUCT_NAME" /> will not perform online revocation checks in <ph name="PRODUCT_NAME" /> 19 and later.</translation>
<translation id="5966615072639944554">Extensions allowed to to use the remote attestation API</translation>
<translation id="5983708779415553259">Default behaviour for sites not in any content pack</translation>
<translation id="5997543603646547632">Use 24 hour clock by default</translation>
<translation id="6009903244351574348">Allow <ph name="PRODUCT_FRAME_NAME" /> to handle the listed content types.
If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.</translation>
<translation id="6017568866726630990">Show the system print dialogue instead of print preview.
When this setting is enabled, <ph name="PRODUCT_NAME" /> will open the system print dialogue instead of the built-in print preview when a user requests a page to be printed.
If this policy is not set or is set to false, print commands trigger the print preview screen.</translation>
<translation id="6022948604095165524">Action on start-up</translation>
<translation id="602728333950205286">Default search provider instant URL</translation>
<translation id="603410445099326293">Parameters for suggest URL which uses POST</translation>
<translation id="6036523166753287175">Enable firewall traversal from remote access host</translation>
<translation id="6059543311891422586">Use hardware acceleration when available.
If this policy is set to true or left unset, hardware acceleration will be enabled unless a certain GPU feature is blacklisted.
If this policy is set to false, hardware acceleration will be disabled.</translation>
<translation id="6074963268421707432">Do not allow any site to show desktop notifications</translation>
<translation id="6076008833763548615">Disable mounting of external storage.
When this policy is set to true, external storage will not be available in the file browser.
This policy affects all types of storage media. For example: USB flash drives, external hard drives, SD and other memory cards, optical storage etc. Internal storage is not affected, therefore files saved in the Download folder can still be accessed. Google Drive is also not affected by this policy.
If this setting is disabled or not configured then users can use all supported types of external storage on their device.</translation>
<translation id="6095999036251797924">Specifies the length of time without user input after which the screen is locked when running on AC power or battery.
When the length of time is set to a value greater than zero, it represents the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> locks the screen.
When the length of time is set to zero, <ph name="PRODUCT_OS_NAME" /> does not lock the screen when the user becomes idle.
When the length of time is unset, a default length of time is used.
The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME" /> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.</translation>
<translation id="6111936128861357925">Allow Dinosaur Easter Egg Game</translation>
<translation id="6114416803310251055">deprecated</translation>
<translation id="6133088669883929098">Allow all sites to use key generation</translation>
<translation id="6145799962557135888">Allows you to set a list of url patterns that specify sites which are allowed to run JavaScript.
If this policy is left not set the global default value will be used for all sites either from the 'DefaultJavaScriptSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="6151775819333710697">
If this setting is enabled, users can get<ph name="PRODUCT_NAME" /> to memorise passwords
and provide them automatically the next time they log in to a site.
If this settings is disabled, users cannot save new passwords but they
may still use passwords that have been saved previously.
If this policy is enabled or disabled, users cannot change or override
it in <ph name="PRODUCT_NAME" />. If this
policy is unset, password saving is allowed (but can be turned off by
the user).</translation>
<translation id="6155936611791017817">Set default state of the large cursor on the login screen</translation>
<translation id="6157537876488211233">Comma-separated list of proxy bypass rules</translation>
<translation id="6158324314836466367">Enterprise web store name (deprecated)</translation>
<translation id="6167074305866468481">Warning: SSLv3 support will be entirely removed from <ph name="PRODUCT_NAME" /> after version 43 (around July 2015) and this policy will be removed at the same time.
If this policy is not configured then <ph name="PRODUCT_NAME" /> uses a default minimum version which is SSLv3 in <ph name="PRODUCT_NAME" /> 39 and TLS 1.0 in later versions.
Otherwise it may be set to one of the following values: "sslv3", "tls1", "tls1.1" or "tls1.2". When set, <ph name="PRODUCT_NAME" /> will not use SSL/TLS versions less than the specified version. An unrecognised value will be ignored.
Note that, despite the number, "sslv3" is an earlier version than "tls1".</translation>
<translation id="6177482277304066047">Sets a target version for Auto Updates.
Specifies the prefix of a target version <ph name="PRODUCT_OS_NAME" /> should update to. If the device is running a version that's before the specified prefix, it will update to the latest version with the given prefix. If the device is already on a later version, there is no effect (i.e. no downgrades are performed) and the device will remain on the current version. The prefix format works component-wise as is demonstrated in the following example:
"" (or not configured): update to latest version available.
"1412.": update to any minor version of 1412 (e.g. 1412.24.34 or 1412.60.2)
"1412.2.": update to any minor version of 1412.2 (e.g. 1412.2.34 or 1412.2.2)
"1412.24.34": update to this specific version only</translation>
<translation id="6190022522129724693"> setting</translation>
<translation id="6197453924249895891">Grants access to corporate keys to extensions.
Keys are designated for corporate usage if they're generated using the chrome.enterprise.platformKeys API on a managed account. Keys imported or generated in another way are not designated for corporate usage.
Access to keys designated for corporate usage is solely controlled by this policy. The user can neither grant nor withdraw access to corporate keys to or from extensions.
By default an extension cannot use a key designated for corporate usage, which is equivalent to setting allowCorporateKeyUsage to false for that extension.
Only if allowCorporateKeyUsage is set to true for an extension, it can use any platform key marked for corporate usage to sign arbitrary data. This permission should only be granted if the extension is trusted to secure access to the key against attackers.</translation>
<translation id="6211428344788340116">Report device activity times.
If this setting is not set or set to True, enrolled devices will report time periods when a user is active on the device. If this setting is set to False, device activity times will not be recorded or reported.</translation>
<translation id="6219965209794245435">This policy forces the autofill form data to be imported from the previous default browser if enabled. If enabled, this policy also affects the import dialogue.
If disabled, the autofill form data is not imported.
If it is not set, the user may be asked whether to import or importing may happen automatically.</translation>
<translation id="6233173491898450179">Set download directory</translation>
<translation id="6244210204546589761">URLs to open on start-up</translation>
<translation id="6258193603492867656">Specifies whether the generated Kerberos SPN should include a non-standard port. If you enable this setting, and a non-standard port (i.e. a port other than 80 or 443) is entered, it will be included in the generated Kerberos SPN. If you disable this setting, the generated Kerberos SPN will not include a port in any case.</translation>
<translation id="6279809962528392889">Specifies whether authentication cookies set by a SAML IdP during login should be transferred to the user's profile.
When a user authenticates via a SAML IdP during login, cookies set by the IdP are written to a temporary profile at first. These cookies can be transferred to the user's profile to carry forward the authentication state.
When this policy is set to true, cookies set by the IdP are transferred to the user's profile every time he/she authenticates against the SAML IdP during login.
When this policy is set to false or unset, cookies set by the IdP are transferred to the user's profile during his/her first login on a device only.
This policy affects users whose domain matches the device's enrolment domain only. For all other users, cookies set by the IdP are transferred to the user's profile during his/her first login on the device only.</translation>
<translation id="6281043242780654992">Configures policies for Native Messaging. Blacklisted native messaging hosts won't be allowed unless they are whitelisted.</translation>
<translation id="6282799760374509080">Allow or deny audio capture</translation>
<translation id="6284362063448764300">TLS 1.1</translation>
<translation id="6310223829319187614">Enable domain name autocomplete during user sign in</translation>
<translation id="6315673513957120120">Chrome shows a warning page when users navigate to sites that have SSL errors. By default or when this policy is set to true, users are allowed to click through these warning pages.
Setting this policy to false disallows users to click through any warning page.</translation>
<translation id="6353901068939575220">Specifies the parameters used when searching a URL with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
This policy is optional. If not set, search request will be sent using the GET method.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="6367755442345892511">Whether the release channel should be configurable by the user</translation>
<translation id="6368011194414932347">Configure the home page URL</translation>
<translation id="6368403635025849609">Allow JavaScript on these sites</translation>
<translation id="6373222873250380826">Disables automatic updates when set to True.
<ph name="PRODUCT_OS_NAME" /> devices automatically check for updates when this setting is not configured or set to False.</translation>
<translation id="6376659517206731212">Can Be Mandatory</translation>
<translation id="6378076389057087301">Specify whether audio activity affects power management</translation>
<translation id="637934607141010488">Report list of device users that have recently logged in.
If the policy is set to false, the users will not be reported.</translation>
<translation id="6392973646875039351">Enables <ph name="PRODUCT_NAME" />'s Auto-fill feature and allows users to auto-complete web forms using previously stored information such as address or credit card information.
If you disable this setting, Auto-fill will be inaccessible to users.
If you enable this setting or do not set a value, Auto-fill will remain under the control of the user. This will allow them to configure Auto-fill profiles and to switch Auto-fill on or off at their own discretion.</translation>
<translation id="6394350458541421998">This policy has been retired as of <ph name="PRODUCT_OS_NAME" /> version 29. Please use the PresentationScreenDimDelayScale policy instead.</translation>
<translation id="6401669939808766804">Log the user out</translation>
<translation id="6417861582779909667">Allows you to set a list of url patterns that specify sites which are not allowed to set cookies.
If this policy is left unset, the global default value will be used for all sites, either from the 'DefaultCookiesSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="6467433935902485842">Allows you to set a list of url patterns that specify sites which are not allowed to run plug-ins.
If this policy is left unset the global default value will be used for all sites either from the 'DefaultPlug-insSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="6473334971332473690">Allows Smart Lock to be used on <ph name="PRODUCT_OS_NAME" /> devices.
If you enable this setting, users will be allowed to use Smart Lock if the requirements for the feature are satisfied.
If you disable this setting, users will not be allowed to use Smart Lock.
If this policy is left not set, the default is not allowed for enterprise-managed users and allowed for non-managed users.</translation>
<translation id="6513756852541213407">Allows you to specify the proxy server used by <ph name="PRODUCT_NAME" /> and prevents users from changing proxy settings.
If you choose to never use a proxy server and always connect directly, all other options are ignored.
If you choose to use system proxy settings or auto-detect the proxy server, all other options are ignored.
If you choose fixed server proxy mode, you can specify further options in 'Address or URL of proxy server' and 'Comma-separated list of proxy bypass rules'.
If you choose to use a .pac proxy script, you must specify the URL to the script in 'URL to a proxy .pac file'.
For detailed examples, visit:
<ph name="PROXY_HELP_URL" />
If you enable this setting, <ph name="PRODUCT_NAME" /> ignores all proxy-related options specified from the command line.
Leaving this policy unset will allow the users to choose the proxy settings on their own.</translation>
<translation id="6520802717075138474">Import search engines from default browser on first run</translation>
<translation id="653608967792832033">Specifies the length of time without user input after which the screen is locked when running on battery power.
When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> locks the screen.
When this policy is set to zero, <ph name="PRODUCT_OS_NAME" /> does not lock the screen when the user becomes idle.
When this policy is unset, a default length of time is used.
The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME" /> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.</translation>
<translation id="6536600139108165863">Automatic reboot on device shutdown</translation>
<translation id="6544897973797372144">If this policy is set to True and the ChromeOsReleaseChannel policy is not specified then users of the enrolling domain will be allowed to change the release channel of the device. If this policy is set to false the device will be locked in whatever channel it was last set.
The user selected channel will be overridden by the ChromeOsReleaseChannel policy, but if the policy channel is more stable than the one that was installed on the device, then the channel will only switch after the version of the more stable channel reaches a higher version number than the one installed on the device.</translation>
<translation id="6559057113164934677">Do not allow any site to access the camera and microphone</translation>
<translation id="6561396069801924653">Show accessibility options in system tray menu</translation>
<translation id="6565312346072273043">Set the default state of the on-screen keyboard accessibility feature on the login screen.
If this policy is set to true, the on-screen keyboard will be enabled when the login screen is shown.
If this policy is set to false, the on-screen keyboard will be disabled when the login screen is shown.
If you set this policy, users can temporarily override it by enabling or disabling the on-screen keyboard. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
If this policy is left unset, the on-screen keyboard is disabled when the login screen is first shown. Users can enable or disable the on-screen keyboard any time and its status on the login screen is persisted between users.</translation>
<translation id="6598235178374410284">User avatar image</translation>
<translation id="6628646143828354685">Allows you to set whether websites are allowed to get access to nearby Bluetooth devices. Access can be completely blocked, or the user can be asked every time a website wants to get access to nearby Bluetooth devices.
If this policy is left not set, '3' will be used, and the user will be able to change it.</translation>
<translation id="6636268606788232221">Configure power management settings when the user becomes idle.
This policy controls multiple settings for the power management strategy when the user becomes idle.
There are four types of action:
* The screen will be dimmed if the user remains idle for the time specified by |ScreenDim|.
* The screen will be turned off if the user remains idle for the time specified by |ScreenOff|.
* A warning dialogue will be shown if the user remains idle for the time specified by |IdleWarning|, telling the user that the idle action is about to be taken.
* The action specified by |IdleAction| will be taken if the user remains idle for the time specified by |Idle|.
For each of above actions, the delay should be specified in milliseconds, and needs to be set to a value greater than zero to trigger the corresponding action. In case the delay is set to zero, <ph name="PRODUCT_OS_NAME" /> will not take the corresponding action.
For each of the above delays, when the length of time is unset, a default value will be used.
Note that |ScreenDim| values will be clamped to be less than or equal to |ScreenOff|, |ScreenOff| and |IdleWarning| will be clamped to be less than or equal to |Idle|.
|IdleAction| can be one of four possible actions:
* |Suspend|
* |Logout|
* |Shutdown|
* |DoNothing|
When the |IdleAction| is unset, the default action is taken, which is suspend.
There are also separate settings for AC power and battery.
</translation>
<translation id="6641981670621198190">Disable support for 3D graphics APIs</translation>
<translation id="6647965994887675196">If set to true, supervised users can be created and used.
If set to false or not configured, supervised-user creation and login will be disabled. All existing supervised users will be hidden.
NOTE: The default behaviour for consumer and enterprise devices differs: on consumer devices, supervised users are enabled by default, but on enterprise devices they are disabled by default.</translation>
<translation id="6649397154027560979">This policy is deprecated, please use URLBlacklist instead.
Disables the listed protocol schemes in <ph name="PRODUCT_NAME" />.
URLs using a scheme from this list will not load and can not be navigated to.
If this policy is left not set or the list is empty all schemes will be accessible in <ph name="PRODUCT_NAME" />.</translation>
<translation id="6652197835259177259">Locally managed users settings</translation>
<translation id="6654559957643809067">Enables network prediction in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
This controls DNS prefetching, TCP and SSL preconnection and prerendering of web pages.
If you set this preference to 'always', 'never' or 'Wi-Fi only', users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this policy is left not set, network prediction will be enabled but the user will be able to change it.</translation>
<translation id="6658245400435704251">Specifies the number of seconds up to which a device may randomly delay its download of an update from the time the update was first pushed out to the server. The device may wait a portion of this time in terms of wall-clock-time and the remaining portion in terms of the number of update checks. In any case, the scatter is upper bounded to a constant amount of time so that a device does not ever get stuck waiting to download an update forever.</translation>
<translation id="6672934768721876104">This policy is deprecated, use ProxyMode instead.
Allows you to specify the proxy server used by <ph name="PRODUCT_NAME" /> and prevents users from changing proxy settings.
If you choose to never use a proxy server and always connect directly, all other options are ignored.
If you choose to use system proxy settings or auto detect the proxy server, all other options are ignored.
If you choose manual proxy settings, you can specify further options in 'Address or URL of proxy server', 'URL to a proxy .pac file' and 'Comma-separated list of proxy bypass rules'.
For detailed examples, visit:
<ph name="PROXY_HELP_URL" />
If you enable this setting, <ph name="PRODUCT_NAME" /> ignores all proxy-related options specified from the command line.
Leaving this policy unset will allow the users to choose the proxy settings on their own.</translation>
<translation id="6689792153960219308">Report hardware status</translation>
<translation id="6693751878507293182">If you set this setting to enabled the automatic search and installation of missing plug-ins will be disabled in <ph name="PRODUCT_NAME" />.
Setting this option to disabled or leave it unset the plug-in finder will be active.</translation>
<translation id="6697474194550078937">Limit the time for which a user authenticated via SAML can log in offline.
During login, <ph name="PRODUCT_OS_NAME" /> can authenticate against a server (online) or using a cached password (offline).
When this policy is set to a value of -1, the user can authenticate offline indefinitely. When this policy is set to any other value, it specifies the length of time since the last online authentication after which the user must use online authentication again.
Leaving this policy unset will make <ph name="PRODUCT_OS_NAME" /> use a default time limit of 14 days after which the user must use online authentication again.
This policy affects only users who authenticated using SAML.
The policy value should be specified in seconds.</translation>
<translation id="6698424063018171973">Restricts the UDP port range used by the remote access host in this machine.
If this policy is not set, or if it is set to an empty string, the remote access host will be allowed to use any available port, unless the policy <ph name="REMOTEACCESSHOSTFIREWALLTRAVERSAL_POLICY_NAME" /> is disabled, in which case the remote access host will use UDP ports in the 12400-12409 range.</translation>
<translation id="6699880231565102694">Enable two-factor authentication for remote access hosts</translation>
<translation id="6757375960964186754">Show <ph name="PRODUCT_OS_NAME" /> accessibility options in the system menu.
If this policy is set to true, Accessibility options always appear in system tray menu.
If this policy is set to false, Accessibility options never appear in system tray menu.
If you set this policy, users cannot change or override it.
If this policy is left unset, Accessibility options will not appear in the system tray menu, but the user can cause the Accessibility options to appear via the Settings page.</translation>
<translation id="6766216162565713893">Allow sites to ask the user to grant access to a nearby Bluetooth device</translation>
<translation id="6770454900105963262">Report information about active kiosk sessions</translation>
<translation id="6774533686631353488">Allow user-level Native Messaging hosts (installed without admin permissions).</translation>
<translation id="6786747875388722282">Extensions</translation>
<translation id="6810445994095397827">Block JavaScript on these sites</translation>
<translation id="681446116407619279">Supported authentication schemes</translation>
<translation id="6828905844648501476">If this policy is set to true or not configured, <ph name="PRODUCT_NAME" /> will allow Add Person from the user manager.
If this policy is set to false, <ph name="PRODUCT_NAME" /> will not allow creation of new profiles from the profile manager.</translation>
<translation id="687046793986382807">This policy has been retired as of <ph name="PRODUCT_NAME" /> version 35.
Memory info is reported to page anyway, regardless of the option value, but the sizes reported are
quantised and the rate of updates is limited for security reasons. To obtain real-time precise data,
please use tools like Telemetry.</translation>
<translation id="6899705656741990703">Auto detect proxy settings</translation>
<translation id="6903814433019432303">This policy is active in retail mode only.
Determines the set of URLs to be loaded when the demo session is started. This policy will override any other mechanisms for setting the initial URL and thus can only be applied to a session not associated with a particular user.</translation>
<translation id="6908640907898649429">Configures the default search provider. You can specify the default search provider that the user will use or choose to disable default search.</translation>
<translation id="6915442654606973733">Enable the spoken feedback accessibility feature.
If this policy is set to true, spoken feedback will always be enabled.
If this policy is set to false, spoken feedback will always be disabled.
If you set this policy, users cannot change or override it.
If this policy is left unset, spoken feedback is disabled initially but can be enabled by the user at any time.</translation>
<translation id="6923366716660828830">Specifies the name of the default search provider. If left empty or not set, the host name specified by the search URL will be used.
This policy is only considered if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="6931242315485576290">Disable synchronisation of data with Google</translation>
<translation id="6936894225179401731">Specifies the maximal number of simultaneous connections to the proxy server.
Some proxy servers can not handle high number of concurrent connections per client and this can be solved by setting this policy to a lower value.
The value of this policy should be lower than 100 and higher than 6 and the default value is 32.
Some web apps are known to consume many connections with hanging GETs, so lowering below 32 may lead to browser networking hangs if too many such web apps are open. Lower below the default at your own risk.
If this policy is left not set the default value will be used which is 32.</translation>
<translation id="6943577887654905793">Mac/Linux preference name:</translation>
<translation id="69525503251220566">Parameter providing search-by-image feature for the default search provider</translation>
<translation id="6956272732789158625">Do not allow any site to use key generation</translation>
<translation id="695891079107014261">Configures the required host domain name that will be imposed on remote access hosts and prevents users from changing it.
If this setting is enabled, then hosts can be shared only using accounts registered on the specified domain name.
If this setting is disabled or not set, then hosts can be shared using any account.
See also RemoteAccessHostClientDomain.</translation>
<translation id="6997592395211691850">Whether online OCSP/CRL checks are required for local trust anchors</translation>
<translation id="7003334574344702284">This policy forces the saved passwords to be imported from the previous default browser, if enabled. If enabled, this policy also affects the import dialogue.
If disabled, the saved passwords are not imported.
If it is not set, the user may be asked whether to import or importing may happen automatically.</translation>
<translation id="7003746348783715221"><ph name="PRODUCT_NAME" /> preferences</translation>
<translation id="7006788746334555276">Content Settings</translation>
<translation id="7027785306666625591">Configure power management in <ph name="PRODUCT_OS_NAME" />.
These policies let you configure how <ph name="PRODUCT_OS_NAME" /> behaves when the user remains idle for some amount of time.</translation>
<translation id="7040229947030068419">Sample value</translation>
<translation id="7049373494483449255">Enables <ph name="PRODUCT_NAME" /> to submit documents to <ph name="CLOUD_PRINT_NAME" /> for printing. NOTE: This only affects <ph name="CLOUD_PRINT_NAME" /> support in <ph name="PRODUCT_NAME" />. It does not prevent users from submitting print jobs on websites.
If this setting is enabled or not configured, users can print to <ph name="CLOUD_PRINT_NAME" /> from the <ph name="PRODUCT_NAME" /> print dialogue.
If this setting is disabled, users cannot print to <ph name="CLOUD_PRINT_NAME" /> from the <ph name="PRODUCT_NAME" /> print dialogue</translation>
<translation id="7053678646221257043">This policy forces bookmarks to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialogue.
If disabled, no bookmarks are imported.
If it is not set, the user may be asked whether to import or importing may happen automatically.</translation>
<translation id="7063895219334505671">Allow pop-ups on these sites</translation>
<translation id="706669471845501145">Allow SITE to show desktop notifications?</translation>
<translation id="7079519252486108041">Block pop-ups on these sites</translation>
<translation id="7091198954851103976">Always runs plug-ins that require authorisation</translation>
<translation id="7109916642577279530">Allow or deny audio capture.
If enabled or not configured (default), the user will be prompted for
audio capture access except for URLs configured in the
AudioCaptureAllowedUrls list which will be granted access without prompting.
When this policy is disabled, the user will never be prompted and audio
capture will only be available to URLs configured in AudioCaptureAllowedUrls.
This policy affects all types of audio inputs and not only the built-in microphone.</translation>
<translation id="7115494316187648452">Determines whether a <ph name="PRODUCT_NAME" /> process is started on OS login and keeps running when the last browser window is closed, allowing background apps and the current browsing session to remain active, including any session cookies. The background process displays an icon in the system tray and can always be closed from there.
If this policy is set to True, background mode is enabled and cannot be controlled by the user in the browser settings.
If this policy is set to False, background mode is disabled and cannot be controlled by the user in the browser settings.
If this policy is left unset, background mode is initially disabled and can be controlled by the user in the browser settings.</translation>
<translation id="7123297102171034788">Allows you to specify the behaviour on startup.
If you choose 'Open New Tab Page' the New Tab Page will always be opened when you start <ph name="PRODUCT_NAME" />.
If you choose 'Restore the last session', the URLs that were open last time <ph name="PRODUCT_NAME" /> was closed will be reopened and the browsing session will be restored as it was left.
Choosing this option disables some settings that rely on sessions or that perform actions on exit (such as Clear browsing data on exit or session-only cookies).
If you choose 'Open a list of URLs', the list of 'URLs to open on startup' will be opened when a user starts <ph name="PRODUCT_NAME" />.
If you enable this setting, users cannot change or override it in <ph name="PRODUCT_NAME" />.
Disabling this setting is equivalent to leaving it not configured. The user will still be able to change it in <ph name="PRODUCT_NAME" />.
This policy is not available on Windows instances that are not joined
to an Active Directory domain.</translation>
<translation id="7128918109610518786">Lists the application identifiers <ph name="PRODUCT_OS_NAME" /> shows as pinned apps in the launcher bar.
If this policy is configured, the set of applications is fixed and can't be changed by the user.
If this policy is left unset, the user may change the list of pinned apps in the launcher.</translation>
<translation id="7132877481099023201">URLs that will be granted access to video capture devices without prompt</translation>
<translation id="7173856672248996428">Ephemeral profile</translation>
<translation id="7187256234726597551">If true, remote attestation is allowed for the device and a certificate will automatically be generated and uploaded to the Device Management Server.
If it is set to false, or if it is not set, no certificate will be generated and calls to the enterprise.platformKeysPrivate extension API will fail.</translation>
<translation id="718956142899066210">Connection types allowed for updates</translation>
<translation id="7194407337890404814">Default search provider name</translation>
<translation id="7195064223823777550">Specify the action to take when the user closes the lid.
When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME" /> takes when the user closes the device's lid.
When this policy is unset, the default action is taken, which is suspend.
If the action is suspend, <ph name="PRODUCT_OS_NAME" /> can separately be configured to either lock or not lock the screen before suspending.</translation>
<translation id="7199300565886109054">Allows you to set a list of URL patterns that specify sites which are allowed to set session only cookies.
If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set or the user's personal configuration otherwise.
Note that if <ph name="PRODUCT_NAME" /> is running in 'background mode', the session may not be closed when the last browser window is closed, but will instead stay active until the browser exits. Please see the 'BackgroundModeEnabled' policy for more information about configuring this behaviour.
If the "RestoreOnStartup" policy is set to restore URLs from previous sessions this policy will not be respected and cookies will be stored permanently for those sites.</translation>
<translation id="7207095846245296855">Force Google SafeSearch</translation>
<translation id="7216442368414164495">Allow users to opt in to Safe Browsing extended reporting</translation>
<translation id="7227967227357489766">Defines the list of users that are allowed to login to the device. Entries are of the form <ph name="USER_WHITELIST_ENTRY_FORMAT" />, such as <ph name="USER_WHITELIST_ENTRY_EXAMPLE" />. To allow arbitrary users on a domain, use entries of the form <ph name="USER_WHITELIST_ENTRY_WILDCARD" />.
If this policy is not configured, there are no restrictions on which users are allowed to sign in. Note that creating new users still requires the <ph name="DEVICEALLOWNEWUSERS_POLICY_NAME" /> policy to be configured appropriately.</translation>
<translation id="7234280155140786597">Names of the forbidden native messaging hosts (or * for all)</translation>
<translation id="7236775576470542603">Set the default type of screen magnifier that is enabled on the login screen.
If this policy is set, it controls the type of screen magnifier that is enabled when the login screen is shown. Setting the policy to "None" disables the screen magnifier.
If you set this policy, users can temporarily override it by enabling or disabling the screen magnifier. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
If this policy is left unset, the screen magnifier is disabled when the login screen is first shown. Users can enable or disable the screen magnifier at any time and its status on the login screen is persisted between users.</translation>
<translation id="7258823566580374486">Enable curtaining of remote access hosts</translation>
<translation id="7260277299188117560">Auto update p2p enabled</translation>
<translation id="7267809745244694722">Media keys default to function keys</translation>
<translation id="7271085005502526897">Import of homepage from default browser on first run</translation>
<translation id="7273823081800296768">If this setting is enabled or not configured, then users can opt to pair clients and hosts at connection time, eliminating the need to enter a PIN every time.
If this setting is disabled, then this feature will not be available.</translation>
<translation id="7275334191706090484">Managed Bookmarks</translation>
<translation id="7295019613773647480">Enable supervised users</translation>
<translation id="7301543427086558500">Specifies a list of alternative URLs that can be used to extract search terms from the search engine. The URLs should contain the string <ph name="SEARCH_TERM_MARKER" />, which will be used to extract the search terms.
This policy is optional. If not set, no alternative urls will be used to extract search terms.
This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="7302043767260300182">Screen lock delay when running on AC power</translation>
<translation id="7323896582714668701">Additional command line parameters for <ph name="PRODUCT_NAME" /></translation>
<translation id="7329842439428490522">Specifies the length of time without user input after which the screen is turned off when running on battery power.
When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> turns off the screen.
When this policy is set to zero, <ph name="PRODUCT_OS_NAME" /> does not turn off the screen when the user becomes idle.
When this policy is unset, a default length of time is used.
The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.</translation>
<translation id="7329968046053403405">Specifies the account type of the accounts provided by the Android authentication app that supports <ph name="HTTP_NEGOTIATE" /> authentication (e.g. Kerberos authentication). This information should be available from the supplier of the authentication app. For more details see https://goo.gl/hajyfN.
If no setting is provided, <ph name="HTTP_NEGOTIATE" /> authentication is disabled on Android.</translation>
<translation id="7331962793961469250">When set to True, promotions for Chrome Web Store apps will not appear on the new tab page.
Setting this option to False or leaving it unset will make the promotions for Chrome Web Store apps appear on the new tab page</translation>
<translation id="7332963785317884918">This policy is deprecated. <ph name="PRODUCT_OS_NAME" /> will always use the 'RemoveLRU' clean-up strategy.
Controls the automatic clean-up behaviour on <ph name="PRODUCT_OS_NAME" /> devices. Automatic clean-up is triggered when the amount of free disk space reaches a critical level to recover some disk space.
If this policy is set to 'RemoveLRU', the automatic clean-up will keep removing users from the device in least-recently-logged-in order until there is enough free space.
If this policy is set to 'RemoveLRUIfDormant', the automatic clean-up will keep removing users who have not logged in for at least 3 months in least-recently-logged-in order until there is enough free space.
If this policy is not set, automatic clean-up uses the default built-in strategy. Currently, it is the 'RemoveLRUIfDormant' strategy.</translation>
<translation id="7336878834592315572">Keep cookies for the duration of the session.</translation>
<translation id="7340034977315324840">Report device activity times</translation>
<translation id="7381326101471547614">Disables use of the SPDY protocol in <ph name="PRODUCT_NAME" />.
If this policy is enabled the SPDY protocol will not be available in <ph name="PRODUCT_NAME" />.
Setting this policy to disabled will allow the usage of SPDY.
If this policy is left not set, SPDY will be available.</translation>
<translation id="7384999953864505698">Allows QUIC protocol</translation>
<translation id="7406651467768226499">Whether to allow the auto launched with zero delay kiosk app to control <ph name="PRODUCT_OS_NAME" /> version.
This policy controls whether to allow the auto launched with zero delay kiosk app to control <ph name="PRODUCT_OS_NAME" /> version by declaring a required_platform_version in its manifest and use it as the auto update target version prefix.
If the policy is set to true, the value of required_platform_version manifest key of the auto launched with zero delay kiosk app is used as auto update target version prefix.
If the policy is not configured or set to false, the required_platform_version manifest key is ignored and auto update proceeds as normal.</translation>
<translation id="7417972229667085380">Percentage by which to scale the idle delay in presentation mode (deprecated)</translation>
<translation id="7421483919690710988">Set media disk cache size in bytes</translation>
<translation id="7424751532654212117">List of exceptions to the list of disabled plugins</translation>
<translation id="7426112309807051726">Specifies whether the <ph name="TLS_FALSE_START" /> optimisation should be disabled. For historical reasons, this policy is named DisableSSLRecordSplitting.
If the policy is not set or is set to false, then <ph name="TLS_FALSE_START" /> will be enabled. If it is set to true, <ph name="TLS_FALSE_START" /> will be disabled.</translation>
<translation id="7433714841194914373">Enable Instant</translation>
<translation id="7443616896860707393">Cross-origin HTTP Basic Auth prompts</translation>
<translation id="7468416082528382842">Windows registry location:</translation>
<translation id="7469554574977894907">Enable search suggestions</translation>
<translation id="7485481791539008776">Default printer selection rules</translation>
<translation id="749556411189861380">Report OS and firmware version of enrolled devices.
If this setting is not set or set to True, enrolled devices will report the OS and firmware version periodically. If this setting is set to False, version info will not be reported.</translation>
<translation id="7511361072385293666">If this policy is set to true or not set usage of QUIC protocol in <ph name="PRODUCT_NAME" /> is allowed.
If this policy is set to false usage of QUIC protocol is disallowed.</translation>
<translation id="7519251620064708155">Allow key generation on these sites</translation>
<translation id="7523476810162382273">Send monitoring heartbeats to the management server</translation>
<translation id="7529100000224450960">Allows you to set a list of url patterns that specify sites which are allowed to open pop-ups.
If this policy is left unset the global default value will be used for all sites either from the 'DefaultPop-upsSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="7529144158022474049">Auto update scatter factor</translation>
<translation id="7567380065339179813">Allow plug-ins on these sites</translation>
<translation id="7593523670408385997">Configures the cache size that <ph name="PRODUCT_NAME" /> will use for storing cached files on the disk.
If you set this policy, <ph name="PRODUCT_NAME" /> will use the provided cache size regardless of whether the user has specified the '--disk-cache-size' flag or not. The value specified in this policy is not a hard boundary but rather a suggestion to the caching system, any value below a few megabytes is too small and will be rounded up to a sane minimum.
If the value of this policy is 0, the default cache size will be used but the user will not be able to change it.
If this policy is not set, the default size will be used and the user will be able to override it with the --disk-cache-size flag.</translation>
<translation id="7612157962821894603">System wide flags to be applied on <ph name="PRODUCT_NAME" /> startup</translation>
<translation id="7614663184588396421">List of disabled protocol schemes</translation>
<translation id="7625444193696794922">Specifies the release channel that this device should be locked to.</translation>
<translation id="7632724434767231364">GSSAPI library name</translation>
<translation id="7635471475589566552">Configures the application locale in <ph name="PRODUCT_NAME" /> and prevents users from changing the locale.
If you enable this setting, <ph name="PRODUCT_NAME" /> uses the specified locale. If the configured locale is not supported, 'en-US' is used instead.
If this setting is disabled or not set, <ph name="PRODUCT_NAME" /> uses either the user-specified preferred locale (if configured), the system locale or the default locale 'en-US'.</translation>
<translation id="7651739109954974365">Determines whether data roaming should be enabled for the device. If set to true, data roaming is allowed. If left unconfigured or set to false, data roaming will be unavailable.</translation>
<translation id="76810863974142048">URL where remote access clients should obtain their authentication token.
If this policy is set, the remote access host will require authenticating clients to obtain an authentication token from this URL in order to connect. Must be used in conjunction with RemoteAccessHostTokenValidationUrl.
This feature is currently disabled server-side.</translation>
<translation id="7683777542468165012">Dynamic Policy Refresh</translation>
<translation id="7694807474048279351">Schedule an automatic reboot after a <ph name="PRODUCT_OS_NAME" /> update has been applied.
When this policy is set to true, an automatic reboot is scheduled when a <ph name="PRODUCT_OS_NAME" /> update has been applied and a reboot is required to complete the update process. The reboot is scheduled immediately but may be delayed on the device by up to 24 hours if a user is currently using the device.
When this policy is set to false, no automatic reboot is scheduled after applying a <ph name="PRODUCT_OS_NAME" /> update. The update process is completed when the user next reboots the device.
If you set this policy, users cannot change or override it.
Note: Currently, automatic reboots are only enabled while the login screen is being shown or a Kiosk app session is in progress. This will change in the future and the policy will always apply, regardless of whether a session of any particular type is in progress or not.</translation>
<translation id="7701341006446125684">Set Apps and Extensions cache size (in bytes)</translation>
<translation id="7709537117200051035">A dictionary mapping host names to a boolean flag specifying whether access to the host should be allowed (true) or blocked (false).
This policy is for internal use by <ph name="PRODUCT_NAME" /> itself.</translation>
<translation id="7712109699186360774">Ask every time a site wants to access the camera and/or microphone</translation>
<translation id="7715711044277116530">Percentage by which to scale the screen dim delay in presentation mode</translation>
<translation id="7717938661004793600">Configure <ph name="PRODUCT_OS_NAME" /> accessibility features.</translation>
<translation id="7719251660743813569">Controls whether usage metrics are reported back to Google. If set to true, <ph name="PRODUCT_OS_NAME" /> will report usage metrics. If not configured or set to false, metrics reporting will be disabled.</translation>
<translation id="7749402620209366169">Enables two-factor authentication for remote access hosts instead of a user-specified PIN.
If this setting is enabled, then users must provide a valid two-factor code when accessing a host.
If this setting is disabled or not set, then two-factor will not be enabled and the default behaviour of having a user-defined PIN will be used.</translation>
<translation id="7750991880413385988">Open New Tab Page</translation>
<translation id="7761526206824804472">Sets one or more recommended locales for a public session, allowing users to easily choose one of these locales.
The user can choose a locale and a keyboard layout before starting a public session. By default, all locales supported by <ph name="PRODUCT_OS_NAME" /> are listed in alphabetic order. You can use this policy to move a set of recommended locales to the top of the list.
If this policy is not set, the current UI locale will be pre-selected.
If this policy is set, the recommended locales will be moved to the top of the list and will be visually separated from all other locales. The recommended locales will be listed in the order in which they appear in the policy. The first recommended locale will be pre-selected.
If there is more than one recommended locale, it is assumed that users will want to select among these locales. Locale and keyboard layout selection will be prominently offered when starting a public session. Otherwise, it is assumed that most users will want to use the pre-selected locale. Locale and keyboard layout selection will be less prominently offered when starting a public session.
When this policy is set and automatic login is enabled (see the |DeviceLocalAccountAutoLoginId| and |DeviceLocalAccountAutoLoginDelay| policies), the automatically started public session will use the first recommended locale and the most popular keyboard layout matching this locale.
The pre-selected keyboard layout will always be the most popular layout matching the pre-selected locale.
This policy can only be set as recommended. You can use this policy to move a set of recommended locales to the top but users are always allowed to choose any locale supported by <ph name="PRODUCT_OS_NAME" /> for their session.
</translation>
<translation id="7763311235717725977">Allows you to set whether websites are allowed to display images. Displaying images can be either allowed for all websites or denied for all websites.
If this policy is left unset, 'AllowImages' will be used and the user will be able to change it.</translation>
<translation id="7763479091692861127"> The types of connections that are allowed to use for OS updates. OS updates potentially put heavy strain on the connection due to their size and may incur additional cost. Therefore, they are by default not enabled for connection types that are considered expensive, which include WiMax, Bluetooth and Cellular at the moment.
The recognised connection type identifiers are "ethernet", "wifi", "wimax", "bluetooth" and "cellular".</translation>
<translation id="7766336524667238790">Report information about the active kiosk session, such as
application ID and version.
If the policy is set to false, the session information will not be
reported. If set to true or left unset, session information will be
reported.</translation>
<translation id="7774768074957326919">Use system proxy settings</translation>
<translation id="7788511847830146438">Per Profile</translation>
<translation id="7796141075993499320">Allows you to set a list of url patterns that specify sites which are allowed to run plug-ins.
If this policy is left unset the global default value will be used for all sites either from the 'DefaultPlug-insSetting' policy, if it is set, or the user's personal configuration otherwise.</translation>
<translation id="7818131573217430250">Set the default state of high contrast mode on the login screen</translation>
<translation id="7831595031698917016">Specifies the maximum delay in milliseconds between receiving a policy invalidation and fetching the new policy from the device management service.
Setting this policy overrides the default value of 5,000 milliseconds. Valid values for this policy are in the range from 1,000 (1 second) to 300,000 (5 minutes). Any values not in this range will be clamped to the respective boundary.
Leaving this policy not set will make <ph name="PRODUCT_NAME" /> use the default value of 5,000 milliseconds.</translation>
<translation id="7841880500990419427">Minimum TLS version to fallback to</translation>
<translation id="7842869978353666042">Configure Google Drive options</translation>
<translation id="7843525027689416831">Specifies the flags that should be applied to <ph name="PRODUCT_NAME" /> when it starts. The specified flags are applied on the login screen only. Flags that are set via this policy do not propagate into user sessions.</translation>
<translation id="7848840259379156480">Allows you to configure the default HTML renderer when <ph name="PRODUCT_FRAME_NAME" /> is installed.
The default setting is to allow the host browser do the rendering, but you
can optionally override this and have <ph name="PRODUCT_FRAME_NAME" /> render HTML pages by default.</translation>
<translation id="7882585827992171421">This policy is active in retail mode only.
Determines the id of the extension to be used as a screen saver on the sign-in screen. The extension must be part of the AppPack that is configured for this domain through the DeviceAppPack policy.</translation>
<translation id="7912255076272890813">Configure allowed app/extension types</translation>
<translation id="793134539373873765">Specifies whether p2p is to be used for OS update payloads. If set to True, devices will share and attempt to consume update payloads on the LAN, potentially reducing Internet bandwidth usage and congestion. If the update payload is not available on the LAN, the device will fall back to downloading from an update server. If set to False or not configured, p2p will not be used.</translation>
<translation id="7933141401888114454">Enable creation of supervised users</translation>
<translation id="7936098023732125869">Enables the use of a default search provider.
If you enable this setting, a default search is performed when the user types text in the omnibox that is not a URL.
You can specify the default search provider to be used by setting the rest of the default search policies. If these are left empty, the user can choose the default provider.
If you disable this setting, no search is performed when the user enters non-URL text in the omnibox.
If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this policy is left not set, the default search provider is enabled and the user will be able to set the search provider list.
This policy is not available on Windows instances that are not joined
to an Active Directory domain.</translation>
<translation id="7937766917976512374">Allow or deny video capture</translation>
<translation id="7941975817681987555">Do not predict network actions on any network connection</translation>
<translation id="7953256619080733119">Managed user manual exception hosts</translation>
<translation id="7971839631300653352">SSL</translation>
<translation id="7974114691960514888">This policy is no longer supported.
Enables usage of STUN and relay servers when connecting to a remote client.
If this setting is enabled, then this machine can discover and connect to remote host machines even if they are separated by a firewall.
If this setting is disabled and outgoing UDP connections are filtered by the firewall, then this machine can only connect to host machines within the local network.</translation>
<translation id="802147957407376460">Rotate screen by 0 degrees</translation>
<translation id="8044493735196713914">Report device boot mode</translation>
<translation id="8059164285174960932">URL where remote access clients should obtain their authentication token</translation>
<translation id="8071636581296916773">Enables usage of relay servers when remote clients are trying to establish a connection to this machine.
If this setting is enabled, then remote clients can use relay servers to connect to this machine when a direct connection is not available (e.g. due to firewall restrictions).
Note that if the policy <ph name="REMOTEACCESSHOSTFIREWALLTRAVERSAL_POLICY_NAME" /> is disabled, this policy will be ignored.
If this policy is not set, the setting will be enabled.</translation>
<translation id="8073243368829195">Allows Smart Lock to be used</translation>
<translation id="8099880303030573137">Idle delay when running on battery power</translation>
<translation id="8102913158860568230">Default mediastream setting</translation>
<translation id="8104962233214241919">Automatically select client certificates for these sites</translation>
<translation id="8112122435099806139">Specifies the clock format be used for the device.
This policy configures the clock format to use on the log-in screen and as a default for user sessions. Users can still override the clock format for their account.
If the policy is set to true, the device will use a 24-hour clock format. If the policy is set to false, the device will use a 12-hour clock format.
If this policy is not set, the device will default to a 24-hour clock format.</translation>
<translation id="8118665053362250806">Set media disk cache size</translation>
<translation id="8135937294926049787">Specifies the length of time without user input after which the screen is turned off when running on AC power.
When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> turns off the screen.
When this policy is set to zero, <ph name="PRODUCT_OS_NAME" /> does not turn off the screen when the user becomes idle.
When this policy is unset, a default length of time is used.
The policy value should be specified in milliseconds. Values are clamped to be less than or equal to the idle delay.</translation>
<translation id="8140204717286305802">Report list of network interfaces with their types and hardware addresses to the server.
If the policy is set to false, the interface list will not be reported.</translation>
<translation id="8146727383888924340">Allow users to redeem offers through Chrome OS Registration</translation>
<translation id="8148901634826284024">Enable the high contrast mode accessibility feature.
If this policy is set to true, high contrast mode will always be enabled.
If this policy is set to false, high contrast mode will always be disabled.
If you set this policy, users cannot change or override it.
If this policy is left unset, high contrast mode is disabled initially but can be enabled by the user at any time.</translation>
<translation id="8164246350636985940">The default behaviour for sites not in any content pack.
This policy is for internal use by <ph name="PRODUCT_NAME" /> itself.</translation>
<translation id="8170878842291747619">Enables the integrated Google Translate service on <ph name="PRODUCT_NAME" />.
If you enable this setting, <ph name="PRODUCT_NAME" /> will show an integrated toolbar offering to translate the page for the user, when appropriate.
If you disable this setting, users will never see the translation bar.
If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME" />.
If this setting is left unset the user can decide to use this function or not.</translation>
<translation id="817455428376641507">Allows access to the listed URLs, as exceptions to the URL blacklist.
See the description of the URL blacklist policy for the format of entries of this list.
This policy can be used to open exceptions to restrictive blacklists. For example, '*' can be blacklisted to block all requests, and this policy can be used to allow access to a limited list of URLs. It can be used to open exceptions to certain schemes, subdomains of other domains, ports or specific paths.
The most specific filter will determine if a URL is blocked or allowed. The whitelist takes precedence over the blacklist.
This policy is limited to 1000 entries; subsequent entries will be ignored.
If this policy is not set there will be no exceptions to the blacklist from the 'URLBlacklist' policy.</translation>
<translation id="8176035528522326671">Allow enterprise user to be primary multi-profile user only (Default behaviour for enterprise-managed users)</translation>
<translation id="8191318459035150777">Configures the default homepage URL in <ph name="PRODUCT_NAME" /> and prevents users from changing it.
The homepage is the page opened by the Home button. The pages that open on start-up are controlled by the RestoreOnStartup policies.
The homepage type can either be set to a URL you specify here or set to the New Tab Page. If you select the New Tab Page, then this policy does not take effect.
If you enable this setting, users cannot change their homepage URL in <ph name="PRODUCT_NAME" />, but they can still choose the New Tab Page as their home page.
If this policy is not set, this will allow the user to choose their home page if HomepageIsNewTabPage is not set.
This policy is not available on Windows instances that are not joined
to an Active Directory domain.</translation>
<translation id="8197918588508433925">This policy specifies the allowed extensions to use Enterprise Platform Keys API chrome.enterprise.platformKeysPrivate.challengeUserKey() for remote attestation. Extensions must be added to this list to use the API.
If an extension is not in the list, or the list is not set, the call to the API will fail with an error code.</translation>
<translation id="8244525275280476362">Maximum fetch delay after a policy invalidation</translation>
<translation id="8256688113167012935">Controls the account name <ph name="PRODUCT_OS_NAME" /> shows on the login screen for the corresponding device-local account.
If this policy is set, the login screen will use the specified string in the picture-based login chooser for the corresponding device-local account.
If the policy is left not set, <ph name="PRODUCT_OS_NAME" /> will use the device-local account's email account ID as the display name on the login screen.
This policy is ignored for regular user accounts.</translation>
<translation id="8285435910062771358">Full-screen magnifier enabled</translation>
<translation id="8294750666104911727">Normally pages with X-UA-Compatible set to chrome=1 will be rendered in <ph name="PRODUCT_FRAME_NAME" /> regardless of the 'ChromeFrameRendererSettings' policy.
If you enable this setting, pages will not be scanned for meta tags.
If you disable this setting, pages will be scanned for meta tags.
If this policy is not set, pages will be scanned for meta tags.</translation>
<translation id="8300455783946254851">Disables Google Drive syncing in the <ph name="PRODUCT_OS_NAME" /> Files app when using a mobile connection when set to True. In that case, data is only synced to Google Drive when connected via Wi-Fi or Ethernet.
If not set or set to False, then users will be able to transfer files to Google Drive via mobile connections.</translation>
<translation id="8312129124898414409">Allows you to set whether websites are allowed to use key generation. Using key generation can be either allowed for all websites or denied for all websites.
If this policy is left not set, 'BlockKeygen' will be used and the user will be able to change it.</translation>
<translation id="8329984337216493753">This policy is active in retail mode only.
When DeviceIdleLogoutTimeout is specified, this policy defines the duration of the warning box with a count down timer that is shown to the user before the logout is executed.
The policy value should be specified in milliseconds.</translation>
<translation id="8344454543174932833">Import bookmarks from default browser on first run</translation>
<translation id="8360452361555133173">Enable showing the welcome page on the first browser launch following OS upgrade.
If this policy is set to true or not configured, the browser will re-show the welcome page on the first launch following an OS upgrade.
If this policy is set to false, the browser will not re-show the welcome page on the first launch following an OS upgrade.</translation>
<translation id="8369602308428138533">Screen off delay when running on AC power</translation>
<translation id="8382184662529825177">Enable the use of remote attestation for content protection for the device</translation>
<translation id="838870586332499308">Enable data roaming</translation>
<translation id="8412312801707973447">Whether online OCSP/CRL checks are performed</translation>
<translation id="8424255554404582727">Set default display rotation, reapplied on every reboot</translation>
<translation id="8426231401662877819">Rotate screen clockwise by 90 degrees</translation>
<translation id="8451988835943702790">Use New Tab Page as homepage</translation>
<translation id="8465065632133292531">Parameters for instant URL which uses POST</translation>
<translation id="847472800012384958">Do not allow any site to show pop-ups</translation>
<translation id="8477885780684655676">TLS 1.0</translation>
<translation id="8484458986062090479">Customise the list of URL patterns that should always be rendered by the host browser.
If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.
For example patterns see https://www.chromium.org/developers/how-tos/chrome-frame-getting-started.</translation>
<translation id="8493645415242333585">Disable saving browser history</translation>
<translation id="8499172469244085141">Default Settings (users can override)</translation>
<translation id="8501011084242226370">Specifies a list of plug-ins that user can enable or disable in <ph name="PRODUCT_NAME" />.
The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\', so to match actual '*', '?', or '\' characters, you can put a '\' in front of them.
If you enable this setting, the specified list of plug-ins can be used in <ph name="PRODUCT_NAME" />. Users can enable or disable them in 'about:plugins', even if the plug-in also matches a pattern in DisabledPlugins. Users can also enable and disable plug-ins that don't match any patterns in DisabledPlugins, DisabledPluginsExceptions and EnabledPlugins.
This policy is meant to allow for strict plug-in blacklisting where the 'DisabledPlugins' list contains wildcarded entries like disable all plug-ins '*' or disable all Java plug-ins '*Java*' but the administrator wishes to enable some particular version like 'IcedTea Java 2.3'. This particular versions can be specified in this policy.
Note that both the plug-in name and the plug-in's group name have to be exempted. Each plug-in group is shown in a separate section in about:plug-ins; each section may have one or more plug-ins. For example, the "Shockwave Flash" plug-in belongs to the "Adobe Flash Player" group, and both names have to have a match in the exceptions list if that plug-in is to be exempted from the blacklist.
If this policy is left not set, any plug-in that matches the patterns in the 'DisabledPlugins' will be locked disabled and the user won't be able to enable them.</translation>
<translation id="8519264904050090490">Managed user manual exception URLs</translation>
<translation id="8544375438507658205">Default HTML renderer for <ph name="PRODUCT_FRAME_NAME" /></translation>
<translation id="8549772397068118889">Warn when visiting sites outside of content packs</translation>
<translation id="855339549837475534">Both Chromium and Google Chrome support the same set of
policies. Please note that this document may include policies that are
targeted for unreleased software versions (i.e. their 'Supported on' entry
refers to an unreleased version) and that such policies are subject to
change or removal without prior notice.
These policies are strictly intended to be used to configure instances of
<ph name="PRODUCT_NAME" /> internal to your
organisation. Use of these policies outside of your organisation (for
example, in a publicly distributed program) is considered malware and will
probably be labelled as malware by Google and anti-virus vendors.
These settings don't need to be configured manually! Easy-to-use
templates for Windows, Mac and Linux are available for download from <ph name="POLICY_TEMPLATE_DOWNLOAD_URL" />.
The recommended way to configure policy on Windows is via GPO, although
provisioning policy via registry is still supported for Windows instances
that are joined to an Active Directory domain.</translation>
<translation id="8566842294717252664">Hide the web store from the New Tab Page and app launcher</translation>
<translation id="8587229956764455752">Allow creation of new user accounts</translation>
<translation id="8614804915612153606">Disables Auto Update</translation>
<translation id="8631434304112909927">until version <ph name="UNTIL_VERSION" /></translation>
<translation id="863712305404093038">Blocks access to the listed URLs.
This policy prevents the user from loading web pages from blacklisted URLs. The blacklist provides a list of URL patterns that specify which URLs will be blacklisted.
Each URL pattern can either be a pattern for local files or a generic URL pattern. Local file patterns are of the format 'file://path', where path should be an absolute path to block. All file system locations for which that path is a prefix will be blocked.
A generic URL pattern has the format 'scheme://host:port/path'.
If present, only the specified scheme will be blocked. If the scheme:// prefix is not specified, all schemes are blocked.
The host is required and can be a hostname or an IP address. Subdomains of a hostname will also be blocked. To prevent blocking subdomains, include a '.' before the hostname. The special hostname '*' will block all domains.
The optional port is a valid port number from 1 to 65535. If none is specified, all ports are blocked.
If the optional path is specified, only paths with that prefix will be blocked.
Exceptions can be defined in the URL whitelist policy. These policies are limited to 1000 entries; subsequent entries will be ignored.
Note that it is not recommended to block internal 'chrome://*' URLs since this may lead to unexpected errors.
If this policy is not set, no URL will be blacklisted in the browser.</translation>
<translation id="8649763579836720255">Chrome OS devices can use remote attestation (Verified Access) to get a certificate issued by the Chrome OS CA that asserts that the device is eligible to play protected content. This process involves sending hardware endorsement information to the Chrome OS CA which uniquely identifies the device.
If this setting is false, the device will not use remote attestation for content protection and the device may be unable to play protected content.
If this setting is true, or if it is not set, remote attestation may be used for content protection.</translation>
<translation id="8654286232573430130">Specifies which servers should be whitelisted for integrated authentication. Integrated authentication is only enabled when <ph name="PRODUCT_NAME" /> receives an authentication challenge from a proxy or from a server which is in this permitted list.
Separate multiple server names with commas. Wildcards (*) are allowed.
If you leave this policy unset <ph name="PRODUCT_NAME" /> will try to detect if a server is on the Intranet and only then will it respond to IWA requests. If a server is detected as Internet then IWA requests from it will be ignored by <ph name="PRODUCT_NAME" />.</translation>
<translation id="8668394701842594241">Specifies a list of plug-ins that are enabled in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
The wild card characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\', so to match actual '*', '?' or '\' characters, you can put a '\' in front of them.
The specified list of plug-ins is always used in <ph name="PRODUCT_NAME" /> if they are installed. The plug-ins are marked as enabled in 'about:plug-ins' and users cannot disable them.
Note that this policy overrides both DisabledPlug-ins and DisabledPlug-insExceptions.
If this policy is left unset, the user can disable any plug-in installed on the system.</translation>
<translation id="8672321184841719703">Target Auto-Update Version</translation>
<translation id="868068801094828689">Enables anonymous reporting of usage and crash-related data about <ph name="PRODUCT_NAME" /> to Google and prevents users from changing this setting.
If this setting is enabled, anonymous reporting of usage and crash-related
data is sent to Google. If it is disabled, this information is not sent
to Google. In both cases, users cannot change or override the setting.
If this policy is left not set, the setting will be what the user chose
upon installation/first run.
This policy is not available on Windows instances that are not joined to
an Active Directory domain. (For Chrome OS, see
DeviceMetricsReportingEnabled.)</translation>
<translation id="868187325500643455">Allow all sites to automatically run plug-ins</translation>
<translation id="8693243869659262736">Use built-in DNS client</translation>
<translation id="8704831857353097849">List of disabled plug-ins</translation>
<translation id="8711086062295757690">Specifies the keyword, which is the shortcut used in the omnibox to trigger the search for this provider.
This policy is optional. If not set, no keyword will activate the search provider.
This policy is only considered if the 'DefaultSearchProviderEnabled' policy is enabled.</translation>
<translation id="8731693562790917685">Content Settings allow you to specify how contents of a specific type (for example Cookies, Images or JavaScript) is handled.</translation>
<translation id="8749370016497832113">Enables deleting browser history and download history in <ph name="PRODUCT_NAME" /> and prevents users from changing this setting.
Note that even with this policy disabled, the browsing and download history are not guaranteed to be retained: users may be able to edit or delete the history database files directly and the browser itself may expire or archive any or all history items at any time.
If this setting is enabled or not set, browsing and download history can be deleted.
If this setting is disabled, browsing and download history cannot be deleted.</translation>
<translation id="8764119899999036911">Specifies whether the generated Kerberos SPN is based on the canonical DNS name or the original name entered.
If you enable this setting, CNAME lookup will be skipped and the server name will be used as entered.
If you disable this setting or leave it unset, the canonical name of the server will be determined via CNAME lookup.</translation>
<translation id="8774131509736383471">If this policy is set to true, <ph name="PRODUCT_NAME" /> will unconditionally maximise the the first window shown on first run.
If this policy is set to false or not configured, the decision whether to maximise the first window shown will be based on the screen size.</translation>
<translation id="8777120694819070607">Allows <ph name="PRODUCT_NAME" />.</translation>
<translation id="87812015706645271">Requires that the name of the local user and the remote access host owner match</translation>
<translation id="8782750230688364867">Specifies the percentage by which the screen dim delay is scaled when the device is in presentation mode.
If this policy is set, it specifies the percentage by which the screen dim delay is scaled when the device is in presentation mode. When the screen dim delay is scaled, the screen off, screen lock and idle delays get adjusted to maintain the same distances from the screen dim delay as originally configured.
If this policy is unset, a default scale factor is used.
The scale factor must be 100% or more. Values that would make the screen dim delay in presentation mode shorter than the regular screen dim delay are not allowed.</translation>
<translation id="8789506358653607371">Allow full screen mode.
This policy controls the availability of full screen mode in which all <ph name="PRODUCT_NAME" /> UI is hidden and only web content is visible.
If this policy is set to true or not configured, the user, apps and extensions with appropriate permissions can enter full screen mode.
If this policy is set to false, neither the user nor any apps or extensions can enter full screen mode.
On all platforms except <ph name="PRODUCT_OS_NAME" />, kiosk mode is unavailable when full screen mode is disabled.</translation>
<translation id="8818173863808665831">Report the geographic location of the device.
If the policy is not set or set to false, the location will not be reported.</translation>
<translation id="8828766846428537606">Configure the default home page in <ph name="PRODUCT_NAME" /> and prevent users from changing it.
The user's home page settings are only completely locked down, if you either select the home page to be the new tab page, or set it to be a URL and specify a home page URL. If you don't specify the home page URL, then the user is still able to set the home page to the new tab page by specifying 'chrome://newtab'.</translation>
<translation id="8838303810937202360"><ph name="PRODUCT_OS_NAME" /> caches Apps and Extensions for installation by multiple users of a single device to avoid re-downloading them for each user.
If this policy is not configured or the value is lower than 1 MB, <ph name="PRODUCT_OS_NAME" /> will use the default cache size.</translation>
<translation id="8858642179038618439">Force YouTube Safety Mode</translation>
<translation id="8864975621965365890">Suppresses the turn-down prompt that appears when a site is rendered by <ph name="PRODUCT_FRAME_NAME" />.</translation>
<translation id="8870318296973696995">Homepage</translation>
<translation id="8905426178924715309">This policy is deprecated, please use ForceGoogleSafeSearch and ForceYouTubeSafetyMode instead. This policy will be ignored if either the ForceGoogleSafeSearch or ForceYouTubeSafetyMode policies are set.
Forces queries in Google Web Search to be done with SafeSearch set to active and prevents users from changing this setting. This setting also forces Safety Mode on YouTube.
If you enable this setting, SafeSearch in Google Search and YouTube is always active.
If you disable this setting or do not set a value, SafeSearch in Google Search and YouTube is not enforced.</translation>
<translation id="8906768759089290519">Enable guest mode</translation>
<translation id="8908294717014659003">Allows you to set whether websites are allowed to get access to media capture devices. Access to media capture devices can be allowed by default, or the user can be asked every time a website wants to get access to media capture devices.
If this policy is left not set, 'PromptOnAccess' will be used and the user will be able to change it.</translation>
<translation id="8909280293285028130">Specifies the length of time without user input after which the screen is locked when running on AC power.
When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME" /> locks the screen.
When this policy is set to zero, <ph name="PRODUCT_OS_NAME" /> does not lock the screen when the user becomes idle.
When this policy is unset, a default length of time is used.
The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME" /> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.</translation>
<translation id="891435090623616439">encoded as a JSON string, for details see <ph name="COMPLEX_POLICIES_URL" /></translation>
<translation id="8947415621777543415">Report device location</translation>
<translation id="8951350807133946005">Set disk cache directory</translation>
<translation id="8955719471735800169">Back to top</translation>
<translation id="8960850473856121830">Patterns in this list will be matched against the security
origin of the requesting URL. If a match is found, access to audio
capture devices will be granted without prompt.
NOTE: Until version 45, this policy was only supported in Kiosk mode.</translation>
<translation id="8965758116018152083">If this policy is set to a blank string or not configured, <ph name="PRODUCT_OS_NAME" /> will not show an autocomplete option during user sign in flow.
If this policy is set to a string representing a domain name, <ph name="PRODUCT_OS_NAME" /> will show an autocomplete option during user sign in allowing the user to type in only his user name without the domain name extension. The user will be able to overwrite this domain name extension.</translation>
<translation id="8970205333161758602">Suppress the <ph name="PRODUCT_FRAME_NAME" /> turn-down prompt</translation>
<translation id="8971221018777092728">Public session auto-login timer</translation>
<translation id="8976248126101463034">Allow gnubby authentication for remote access hosts</translation>
<translation id="8992176907758534924">Do not allow any site to show images</translation>
<translation id="9035964157729712237">Extension IDs to exempt from the blacklist</translation>
<translation id="9042911395677044526">Allows pushing network configuration to be applied per-user to a <ph name="PRODUCT_OS_NAME" /> device. The network configuration is a JSON-formatted string as defined by the Open Network Configuration format described at <ph name="ONC_SPEC_URL" /></translation>
<translation id="9084985621503260744">Specify whether video activity affects power management</translation>
<translation id="9088433379343318874">Enable the supervised user content provider</translation>
<translation id="9096086085182305205">Authentication server whitelist</translation>
<translation id="9098553063150791878">Policies for HTTP authentication</translation>
<translation id="9104138886225968319">Send monitoring heartbeats to the management server, to allow
the server to detect if the device is offline.
If this policy is set to true, monitoring heartbeats will be sent. If set
to false or unset, then no heartbeats will be sent.</translation>
<translation id="9112897538922695510">Allows you to register a list of protocol handlers. This can only be a recommended policy. The property |protocol| should be set to the scheme such as 'mailto' and the property |url| should be set to the URL pattern of the application that handles the scheme. The pattern can include a '%s', which if present will be replaced by the handled URL.
The protocol handlers registered by policy are merged with the ones registered by the user and both are available for use. The user can override the protocol handlers installed by policy by installing a new default handler, but cannot remove a protocol handler registered by policy.</translation>
<translation id="913195841488580904">Block access to a list of URLs</translation>
<translation id="9135033364005346124">Enable <ph name="CLOUD_PRINT_NAME" /> proxy</translation>
<translation id="9147029539363974059">Send system logs to the management server, to allow
admins to monitor system logs.
If this policy is set to true, system logs will be sent. If set
to false or unset, then no system logs will be sent.</translation>
<translation id="9150416707757015439">This policy is deprecated. Please, use IncognitoModeAvailability instead.
Enables Incognito mode in <ph name="PRODUCT_NAME" />.
If this setting is enabled or not configured, users can open web pages in incognito mode.
If this setting is disabled, users cannot open web pages in incognito mode.
If this policy is left unset, this will be enabled and the user will be able to use incognito mode.</translation>
<translation id="915194831143859291">If this policy is set to false or not configured, <ph name="PRODUCT_OS_NAME" /> will allow the user to shut down the device.
If this policy is set to true, <ph name="PRODUCT_OS_NAME" /> will trigger a reboot when the user shuts down the device. <ph name="PRODUCT_OS_NAME" /> replaces all occurrences of shutdown buttons in the UI by reboot buttons. If the user shuts down the device using the power button, it will not automatically reboot, even if the policy is enabled.</translation>
<translation id="9187743794267626640">Disable mounting of external storage</translation>
<translation id="9197740283131855199">Percentage by which to scale the screen dim delay if the user becomes active after dimming</translation>
<translation id="9200828125069750521">Parameters for image URL which uses POST</translation>
<translation id="9203071022800375458">Disables taking screenshots.
If enabled screenshots cannot be taken using keyboard shortcuts or extension APIs.
If disabled or not specified, taking screenshots is allowed.</translation>
<translation id="922540222991413931">Configure extension, app, and user script install sources</translation>
<translation id="924557436754151212">Import saved passwords from default browser on first run</translation>
<translation id="930930237275114205">Set <ph name="PRODUCT_FRAME_NAME" /> user data directory</translation>
<translation id="944817693306670849">Set disk cache size</translation>
</translationbundle>
|