~cmiller/chromium-browser/translations-updates

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
# Chromium Translations for lang 'hy'.
# Copyright (C) 2010-2011 Fabien Tassin
# This file is distributed under the same license as the chromium-browser package.
# Fabien Tassin <fta@ubuntu.com>, 2010-2011.
#
msgid ""
msgstr ""
"Project-Id-Version: chromium-browser.head\n"
"Report-Msgid-Bugs-To: https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+filebug\n"
"POT-Creation-Date: 2012-09-29 20:18+0000\n"
"PO-Revision-Date: 2012-10-01 14:59+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: hy <hy@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. IDS_POLICY_GCFUSERDATADIR_LABEL
#. - description: Label of the 'GCFUserDataDir' policy.
#. IDS_POLICY_USERDATADIR_CAPTION
#. - description: Caption of the 'UserDataDir' policy.
#. IDS_POLICY_USERDATADIR_LABEL
#. - description: Label of the 'UserDataDir' policy.
#: id: 1019101089073227242 (used in the following branches: trunk, dev, beta, stable)
msgid "Set user data directory"
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLBLACKLIST_LABEL
#. - description: Label of the 'ExtensionInstallBlacklist' policy.
#: id: 1022361784792428773 (used in the following branches: trunk, dev, beta, stable)
msgid "Extension IDs the user should be prevented from installing (or * for all)"
msgstr ""

#. IDS_POLICY_ENUM_BLOCKGEOLOCATION_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultGeolocationSetting' of 'BlockGeolocation'
#: id: 1047128214168693844 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to track the users' physical location"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDER_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_DEFAULTSEARCHPROVIDER' related policies.
#: id: 1096105751829466145 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider"
msgstr ""

#. IDS_POLICY_REPORTDEVICEACTIVITYTIMES_DESC
#. - description: Description of the 'ReportDeviceActivityTimes' policy.
#: id: 1098794473340446990 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Report device activity times.\n"
"\n"
"      If this setting is set to True, enrolled devices will report time "
"periods when a user is active on the device. If this setting is not set or "
"set to False, device activity times will not be recorded or reported."
msgstr ""

#. IDS_POLICY_DEVICELOGINSCREENSAVERTIMEOUT_DESC
#. - description: Description of the 'DeviceLoginScreenSaverTimeout' policy.
#: id: 1138294736309071213 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is active in retail mode only.\n"
"\n"
"      Determines the duration before the screen saver is shown on the "
"sign-in screen for devices in retail mode.\n"
"\n"
"      The policy value should be specified in milliseconds."
msgstr ""

#. IDS_POLICY_IMAGESALLOWEDFORURLS_CAPTION
#. - description: Caption of the 'ImagesAllowedForUrls' policy.
#: id: 1151353063931113432 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow images on these sites"
msgstr ""

#. IDS_POLICY_DISABLESAFEBROWSINGPROCEEDANYWAY_CAPTION
#. - description: Caption of the 'DisableSafeBrowsingProceedAnyway' policy.
#: id: 1160939557934457296 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable proceeding from the Safe Browsing warning page"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERSUGGESTURL_DESC
#. - description: Description of the 'DefaultSearchProviderSuggestURL' policy.
#: id: 1213523811751486361 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the URL of the search engine used to provide search suggestions. "
"The URL should contain the string '%{SEARCH_TERM_MARKER}', which will be "
"replaced at query time by the text the user has entered so far.\n"
"\n"
"          This policy is optional. If not set, no suggest URL will be "
"used.\n"
"\n"
"          This policy is only respected if the "
"'DefaultSearchProviderEnabled' policy is enabled."
msgstr ""

#. IDS_POLICY_DEVICESTARTUPURLS_CAPTION
#. - description: Caption of the 'DeviceStartUpUrls' policy.
#: id: 1221359380862872747 (used in the following branches: trunk, dev, beta, stable)
msgid "Load specified urls on demo login"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERINSTANTURL_DESC
#. - description: Description of the 'DefaultSearchProviderInstantURL' policy.
#: id: 1240643596769627465 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the URL of the search engine used to provide instant results. The "
"URL should contain the string %{SEARCH_TERM_MARKER}, which will be replaced "
"at query time by the text the user has entered so far.\n"
"\n"
"          This policy is optional. If not set, no instant search results "
"will be provided.\n"
"\n"
"          This policy is only respected if the "
"'DefaultSearchProviderEnabled' policy is enabled."
msgstr ""

#. IDS_POLICY_AUTHSCHEMES_DESC
#. - description: Description of the 'AuthSchemes' policy.
#: id: 1283072268083088623 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies which HTTP Authentication schemes are supported by "
"%{PRODUCT_NAME}.\n"
"\n"
"          Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. "
"Separate multiple values with commas.\n"
"\n"
"          If this policy is left not set, all four schemes will be used."
msgstr ""

#. IDS_POLICY_ENUM_PROXYPACSCRIPT_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyMode' of 'ProxyPacScript'
#: id: 1297182715641689552 (used in the following branches: trunk, dev, beta, stable)
msgid "Use a .pac proxy script"
msgstr ""

#. IDS_POLICY_PROXYPACURL_DESC
#. - description: Description of the 'ProxyPacUrl' policy.
#: id: 1310699457130669094 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"You can specify a URL to a proxy .pac file here.\n"
"\n"
"          This policy only takes effect if you have selected manual proxy "
"settings at 'Choose how to specify proxy server settings'.\n"
"\n"
"          You should leave this policy not set if you have selected any "
"other mode for setting proxy policies.\n"
"\n"
"          For detailed examples, visit:\n"
"          %{PROXY_HELP_URL}"
msgstr ""

#. IDS_POLICY_DEVICESHOWUSERNAMESONSIGNIN_CAPTION
#. - description: Caption of the 'DeviceShowUserNamesOnSignin' policy.
#: id: 131353325527891113 (used in the following branches: trunk, dev, beta, stable)
msgid "Show usernames on login screen"
msgstr ""

#. IDS_POLICY_DOC_NAME_COLUMN_TITLE
#. - description: Appears at the top of the policy summary table, over the column of policy names, in the generated policy documentation
#: id: 13356285923490863 (used in the following branches: trunk, dev, beta, stable)
msgid "Policy Name"
msgstr ""

#. IDS_POLICY_RESTOREONSTARTUPGROUP_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_RESTOREONSTARTUPGROUP' related policies.
#: id: 1353966721814789986 (used in the following branches: trunk, dev, beta, stable)
msgid "Startup pages"
msgstr "Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ¡ÕµÕ«Õ¶ Õ§Õ»Õ¥Ö€"

#. IDS_POLICY_DEFAULTSEARCHPROVIDERSUGGESTURL_CAPTION
#. - description: Caption of the 'DefaultSearchProviderSuggestURL' policy.
#: id: 1397855852561539316 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider suggest URL"
msgstr ""

#. IDS_POLICY_DEFAULTPLUGINSSETTING_DESC
#. - description: Description of the 'DefaultPluginsSetting' policy.
#: id: 1398889361882383850 (used in the following branches: trunk, dev)
msgid ""
"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.\n"
"\n"
"          Click to play allows plugins to run but the user must click them "
"to start their execution.\n"
"\n"
"          If this policy is left not set, 'AllowPlugins' will be used and "
"the user will be able to change it."
msgstr ""

#. IDS_POLICY_DOC_SUPPORTED
#. - description: Appears next to the name of each supported feature in the 'list of supported policy features' in the generated policy documentation
#: id: 1426410128494586442 (used in the following branches: trunk, dev, beta, stable)
msgid "Yes"
msgstr "Ô±ÕµÕ¸"

#. IDS_POLICY_PROXYSERVER_CAPTION
#. - description: Caption of the 'ProxyServer' policy.
#: id: 1427655258943162134 (used in the following branches: trunk, dev, beta, stable)
msgid "Address or URL of proxy server"
msgstr ""

#. IDS_POLICY_DEVICEOPENNETWORKCONFIGURATION_CAPTION
#. - description: Caption of the 'DeviceOpenNetworkConfiguration' policy.
#: id: 1435659902881071157 (used in the following branches: trunk, dev, beta, stable)
msgid "Device-level network configuration"
msgstr ""

#. IDS_POLICY_EXTENSIONS_DESC
#. - description: Description of the group of 'IDS_POLICY_EXTENSIONS' related policies.
#: id: 1438955478865681012 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures extension-related policies. The user is not allowed to install "
"blacklisted extensions unless they are whitelisted. You can also force "
"%{PRODUCT_NAME} to automatically install extensions by specifying them in "
"%{EXTENSIONINSTALLFORCELIST_POLICY_NAME}. The blacklist takes precedence "
"over the list of forced extensions."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLFORCELIST_DESC
#. - description: Description of the 'ExtensionInstallForcelist' policy.
#: id: 145467868108778033 (used in the following branches: trunk, dev)
msgid ""
"Allows you to specify a list of extensions that will be installed silently, "
"without user interaction.\n"
"\n"
"          Each item of the list is a string that contains an extension ID "
"and an update URL delimited by a semicolon (%{SEMICOLON}). The extension ID "
"is the 32-letter string found e.g. on %{CHROME_EXTENSIONS_LINK} when in "
"developer mode. The update URL should point to an Update Manifest XML "
"document as described at %{LINK_TO_EXTENSION_DOC1}. 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.\n"
"\n"
"          For each item, %{PRODUCT_NAME} will retrieve the extension "
"specified by the extension ID from the update service at the specified "
"update URL and silently install it.\n"
"\n"
"          For example, %{EXTENSION_POLICY_EXAMPLE} installs the "
"%{EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME} extension from the standard "
"Chrome Web Store update URL. For more information about hosting extensions, "
"see: %{LINK_TO_EXTENSION_DOC2}.\n"
"\n"
"          Users will be unable to uninstall extensions that are specified by"
" this policy. If you remove an extension from this list, then it will be "
"automatically uninstalled by %{PRODUCT_NAME}.\n"
"\n"
"          If this policy is left not set the user can uninstall any "
"extension  in %{PRODUCT_NAME}."
msgstr ""

#. IDS_POLICY_JAVASCRIPTBLOCKEDFORURLS_DESC
#. - description: Description of the 'JavaScriptBlockedForUrls' policy.
#: id: 1454846751303307294 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are not "
"allowed to run JavaScript.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_ENUM_CLICKTOPLAY_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultPluginsSetting' of 'ClickToPlay'
#: id: 1465619815762735808 (used in the following branches: trunk, dev)
msgid "Click to play"
msgstr ""

#. IDS_POLICY_DEVICEPOLICYREFRESHRATE_DESC
#. - description: Description of the 'DevicePolicyRefreshRate' policy.
#: id: 1492145937778428165 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the period in milliseconds at which the device management service "
"is queried for device policy information.\n"
"\n"
"      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.\n"
"\n"
"      Leaving this policy not set will make %{PRODUCT_OS_NAME} use the "
"default value of 3 hours."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLFORCELIST_LABEL
#. - description: Label of the 'ExtensionInstallForcelist' policy.
#: id: 1503959756075098984 (used in the following branches: trunk, dev, beta, stable)
msgid "Extension IDs and update URLs to be silently installed"
msgstr ""

#. IDS_POLICY_ENUM_ALLOWGEOLOCATION_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultGeolocationSetting' of 'AllowGeolocation'
#: id: 1522425503138261032 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow sites to track the users' physical location"
msgstr ""

#. IDS_POLICY_RENDERINHOSTLIST_CAPTION
#. - description: Caption of the 'RenderInHostList' policy.
#: id: 1530812829012954197 (used in the following branches: trunk, dev, beta, stable)
msgid "Always render the following URL patterns in the host browser"
msgstr ""

#. IDS_POLICY_ENUM_RENDERINCHROMEFRAME_CAPTION
#. - description: Label in a 'ChromeFrameRendererSettings' dropdown menu for selecting a 'ChromeFrameRendererSettings' of 'RenderInChromeFrame'
#: id: 1583248206450240930 (used in the following branches: trunk, dev, beta, stable)
msgid "Use %{PRODUCT_FRAME_NAME} by default"
msgstr ""

#. IDS_POLICY_DISKCACHESIZE_CAPTION
#. - description: Caption of the 'DiskCacheSize' policy.
#: id: 1655229863189977773 (used in the following branches: trunk, dev, beta, stable)
msgid "Set disk cache size in bytes"
msgstr ""

#. IDS_POLICY_PROXY_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_PROXY' related policies.
#: id: 166427968280387991 (used in the following branches: trunk, dev, beta, stable)
msgid "Proxy server"
msgstr ""

#. IDS_POLICY_DOC_SUPPORTED_ON
#. - description: Caption text of the list of 'products, platforms and versions where this policy is supported' in the summary chart of a policy in the generated documentation
#: id: 1675002386741412210 (used in the following branches: trunk, dev, beta, stable)
msgid "Supported on:"
msgstr ""

#. IDS_POLICY_DEVICEOPENNETWORKCONFIGURATION_DESC
#. - description: Description of the 'DeviceOpenNetworkConfiguration' policy.
#: id: 1689963000958717134 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows pushing network configuration to be applied for all users of a "
"%{PRODUCT_OS_NAME} device. The network configuration is a JSON-formatted "
"string as defined by the Open Network Configuration format described at "
"%{ONC_SPEC_URL}"
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLFORCELIST_DESC
#. - description: Description of the 'ExtensionInstallForcelist' policy.
#: id: 1692788808502061374 (used in the following branches: beta, stable)
msgid ""
"Allows you to specify a list of extensions that will be installed silently, "
"without user interaction.\n"
"\n"
"          Each item of the list is a string that contains an extension ID "
"and an update URL delimited by a semicolon (%{SEMICOLON}). The extension ID "
"is the 32-letter string found e.g. on %{CHROME_EXTENSIONS_LINK} when in "
"developer mode. The update URL should point to an Update Manifest XML "
"document as described at %{LINK_TO_EXTENSION_DOC1}.\n"
"\n"
"          For each item, %{PRODUCT_NAME} will retrieve the extension "
"specified by the extension ID from the update service at the specified "
"update URL and silently install it.\n"
"\n"
"          For example, %{EXTENSION_POLICY_EXAMPLE} installs the "
"%{EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME} extension from the standard "
"Chrome Web Store update URL. For more information about hosting extensions, "
"see: %{LINK_TO_EXTENSION_DOC2}.\n"
"\n"
"          Users will be unable to uninstall extensions that are specified by"
" this policy. If you remove an extension from this list, then it will be "
"automatically uninstalled by %{PRODUCT_NAME}.\n"
"\n"
"          If this policy is left not set the user can uninstall any "
"extension  in %{PRODUCT_NAME}."
msgstr ""

#. IDS_POLICY_ENUM_BLOCKPLUGINS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultPluginsSetting' of 'BlockPlugins'
#: id: 1727394138581151779 (used in the following branches: trunk, dev, beta, stable)
msgid "Block all plugins"
msgstr ""

#. IDS_POLICY_REMOTEACCESS_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_REMOTEACCESS' related policies.
#: id: 1734716591049455502 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure remote access options"
msgstr ""

#. IDS_POLICY_ALWAYSAUTHORIZEPLUGINS_DESC
#. - description: Description of the 'AlwaysAuthorizePlugins' policy.
#: id: 1757688868319862958 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows %{PRODUCT_NAME} to run plugins that require authorization.\n"
"\n"
"      If you enable this setting, plugins that are not outdated always "
"run.\n"
"\n"
"      If this setting is disabled or not set, users will be asked for "
"permission to run plugins that require authorization. These are plugins that"
" can compromise security."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLSOURCES_DESC
#. - description: Description of the 'ExtensionInstallSources' policy.
#: id: 1796466452925192872 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify which URLs are allowed to install extensions, apps, "
"and themes.\n"
"\n"
"          Starting in Chrome 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 Chrome would offer to install "
"the file after a few warnings. After Chrome 21, such files must be "
"downloaded and dragged onto the Chrome settings page. This setting allows "
"specific URLs to have the old, easier installation flow.\n"
"\n"
"          Each item in this list is an extension-style match pattern (see "
"http://code.google.com/chrome/extensions/match_patterns.html). 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.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_PINNEDLAUNCHERAPPS_CAPTION
#. - description: Caption of the 'PinnedLauncherApps' policy.
#: id: 1803646570632580723 (used in the following branches: trunk, dev, beta, stable)
msgid "List of pinned apps to show in the launcher"
msgstr ""

#. IDS_POLICY_COOKIESBLOCKEDFORURLS_CAPTION
#. - description: Caption of the 'CookiesBlockedForUrls' policy.
#: id: 1808715480127969042 (used in the following branches: trunk, dev, beta, stable)
msgid "Block cookies on these sites"
msgstr ""

#. IDS_POLICY_CHROMEOSLOCKONIDLESUSPEND_DESC
#. - description: Description of the 'ChromeOsLockOnIdleSuspend' policy.
#: id: 1811270320106005269 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enable lock when %{PRODUCT_OS_NAME} devices become idle or suspended.\n"
"\n"
"      If you enable this setting, users will be asked for a password to "
"unlock the device from sleep.\n"
"\n"
"      If you disable this setting, users will not be asked for a password to"
" unlock the device from sleep.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" it.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_ENUM_PROXYFIXEDSERVERS_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyMode' of 'ProxyFixedServers'
#: id: 1827523283178827583 (used in the following branches: trunk, dev, beta, stable)
msgid "Use fixed proxy servers"
msgstr ""

#. IDS_POLICY_POLICYREFRESHRATE_CAPTION
#. - description: Caption of the 'PolicyRefreshRate' policy.
#: id: 1843117931376765605 (used in the following branches: trunk, dev, beta, stable)
msgid "Refresh rate for user policy"
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINS_DESC
#. - description: Description of the 'DisabledPlugins' policy.
#: id: 1861037019115362154 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies a list of plugins that are disabled in %{PRODUCT_NAME} and "
"prevents users from changing this setting.\n"
"\n"
"      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.\n"
"\n"
"      If you enable this setting, the specified list of plugins is never "
"used in %{PRODUCT_NAME}. The plugins are marked as disabled in "
"'about:plugins' and users cannot enable them.\n"
"\n"
"      Note that this policy can be overridden by EnabledPlugins and "
"DisabledPluginsExceptions.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_ALLOWFILESELECTIONDIALOGS_DESC
#. - description: Description of the 'AllowFileSelectionDialogs' policy.
#: id: 187819629719252111 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows access to local files on the machine by allowing %{PRODUCT_NAME} to "
"display file selection dialogs.\n"
"\n"
"      If you enable this setting, users can open file selection dialogs as "
"normal.\n"
"\n"
"      If you disable this setting, whenever the user performs an action "
"which would provoke a file selection dialog (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 dialog.\n"
"\n"
"      If this setting is not set, users can open file selection dialogs as "
"normal."
msgstr ""

#. IDS_POLICY_ENUM_ALLOWJAVASCRIPT_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultJavaScriptSetting' of 'AllowJavaScript'
#: id: 1897365952389968758 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow all sites to run JavaScript"
msgstr ""

#. IDS_POLICY_PROXYSERVER_DESC
#. - description: Description of the 'ProxyServer' policy.
#: id: 1942957375738056236 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"You can specify the URL of the proxy server here.\n"
"\n"
"          This policy only takes effect if you have selected manual proxy "
"settings at 'Choose how to specify proxy server settings'.\n"
"\n"
"          You should leave this policy not set if you have selected any "
"other mode for setting proxy policies.\n"
"\n"
"          For more options and detailed examples, visit:\n"
"          %{PROXY_HELP_URL}"
msgstr ""

#. IDS_POLICY_HTTPAUTHENTICATION_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_HTTPAUTHENTICATION' related policies.
#: id: 1948757837129151165 (used in the following branches: trunk, dev, beta, stable)
msgid "Policies for HTTP Authentication"
msgstr ""

#. IDS_POLICY_ENUM_BLOCKACCESS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultMediaStreamSetting' of 'BlockAccess'
#: id: 2021307518684405078 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to access my camera and microphone"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERKEYWORD_CAPTION
#. - description: Caption of the 'DefaultSearchProviderKeyword' policy.
#: id: 2030905906517501646 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider keyword"
msgstr ""

#. IDS_POLICY_ENUM_STABLECHANNEL_CAPTION
#. - description: Label in a 'ChromeOsReleaseChannel' dropdown menu for selecting 'StableChannel'
#: id: 209586405398070749 (used in the following branches: trunk, dev, beta, stable)
msgid "Stable channel"
msgstr ""

#. IDS_POLICY_METRICSREPORTINGENABLED_CAPTION
#. - description: Caption of the 'MetricsReportingEnabled' policy.
#: id: 2098658257603918882 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable reporting of usage and crash-related data"
msgstr ""

#. IDS_POLICY_NOTIFICATIONSALLOWEDFORURLS_CAPTION
#. - description: Caption of the 'NotificationsAllowedForUrls' policy.
#: id: 2127599828444728326 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow notifications on these sites"
msgstr ""

#. IDS_POLICY_CLOUDPRINTPROXYENABLED_DESC
#. - description: Description of the 'CloudPrintProxyEnabled' policy.
#: id: 2129233336491582973 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables %{PRODUCT_NAME} to act as a proxy between %{CLOUD_PRINT_NAME} and "
"legacy printers connected to the machine.\n"
"\n"
"      If this setting is enabled or not configured, users can enable the "
"cloud print proxy by authentication with their Google account.\n"
"\n"
"      If this setting is disabled, users cannot enable the proxy, and the "
"machine will not be allowed to share it's printers with "
"%{CLOUD_PRINT_NAME}.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_BOOKMARKBARENABLED_DESC
#. - description: Description of the 'BookmarkBarEnabled' policy.
#: id: 2188979373208322108 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables the bookmark bar on %{PRODUCT_NAME}.\n"
"\n"
"      If you enable this setting, %{PRODUCT_NAME} will show a bookmark "
"bar.\n"
"\n"
"      If you disable this setting, users will never see the bookmark bar.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" it in %{PRODUCT_NAME}.\n"
"\n"
"      If this setting is left not set the user can decide to use this "
"function or not."
msgstr ""

#. IDS_POLICY_DEFAULTNOTIFICATIONSSETTING_CAPTION
#. - description: Caption of the 'DefaultNotificationsSetting' policy.
#: id: 2223598546285729819 (used in the following branches: trunk, dev, beta, stable)
msgid "Default notification setting"
msgstr ""

#. IDS_POLICY_IMPORTHISTORY_CAPTION
#. - description: Caption of the 'ImportHistory' policy.
#. IDS_POLICY_IMPORTHISTORY_LABEL
#. - description: Label of the 'ImportHistory' policy.
#: id: 2231817271680715693 (used in the following branches: trunk, dev, beta, stable)
msgid "Import browsing history from default browser on first run"
msgstr ""

#. IDS_POLICY_ENUM_BLOCKCOOKIES_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultCookiesSetting' of 'BlockCookies'
#: id: 2236488539271255289 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to set local data"
msgstr ""

#. IDS_POLICY_DEFAULTPOPUPSSETTING_DESC
#. - description: Description of the 'DefaultPopupsSetting' policy.
#: id: 2240879329269430151 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set whether websites are allowed to show pop-ups. Showing "
"popups can be either allowed for all websites or denied for all websites.\n"
"\n"
"          If this policy is left not set, 'BlockPopups' will be used and the"
" user will be able to change it."
msgstr ""

#. IDS_POLICY_SPELLCHECKSERVICEENABLED_DESC
#. - description: Description of the 'SpellCheckServiceEnabled' policy.
#: id: 2292084646366244343 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"%{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.\n"
"\n"
"      Spell checking can still be performed using a downloaded dictionary; "
"this policy only controls the usage of the online service.\n"
"\n"
"      If this setting is not configured then users can choose whether the "
"spell checking service should be used or not."
msgstr ""

#. IDS_POLICY_ENABLEDPLUGINS_CAPTION
#. - description: Caption of the 'EnabledPlugins' policy.
#: id: 2299220924812062390 (used in the following branches: trunk, dev, beta, stable)
msgid "Specify a list of enabled plugins"
msgstr ""

#. IDS_POLICY_DEFAULTGEOLOCATIONSETTING_CAPTION
#. - description: Caption of the 'DefaultGeolocationSetting' policy.
#: id: 2309390639296060546 (used in the following branches: trunk, dev, beta, stable)
msgid "Default geolocation setting"
msgstr ""

#. IDS_POLICY_RESTOREONSTARTUPGROUP_DESC
#. - description: Description of the group of 'IDS_POLICY_RESTOREONSTARTUPGROUP' related policies.
#: id: 2312134445771258233 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to configure the pages that are loaded on startup.\n"
"\n"
"      The contents of the list 'URLs to open at startup' are ignored unless "
"you select 'Open a list of URLs' in 'Action on startup'."
msgstr ""

#. IDS_POLICY_ENUM_PROMPTONACCESS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultMediaStreamSetting' of 'PromptOnAccess'
#: id: 2312509925391670075 (used in the following branches: trunk, dev, beta, stable)
msgid "Ask every time a site wants to access my camera and/or microphone"
msgstr ""

#. IDS_POLICY_URLWHITELIST_DESC
#. - description: Description of the 'URLWhitelist' policy.
#: id: 2322733497952278056 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows access to the listed URLs, as exceptions to the URL blacklist.\n"
"\n"
"      See the description of the URL blacklist policy for the format of "
"entries of this list.\n"
"\n"
"      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.\n"
"\n"
"      The most specific filter will determine if a URL is blocked or "
"allowed. The whitelist takes precedence over the blacklist.\n"
"\n"
"      This policy is limited to 100 entries; subsequent entries will be "
"ignored.\n"
"\n"
"      If this policy is not set there will be no exceptions to the blacklist"
" from the 'URLBlacklist' policy."
msgstr ""

#. IDS_POLICY_IMAGESALLOWEDFORURLS_DESC
#. - description: Description of the 'ImagesAllowedForUrls' policy.
#: id: 2337466621458842053 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to display images.\n"
"\n"
"          If this policy is left not set 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."
msgstr ""

#. IDS_POLICY_POLICYREFRESHRATE_DESC
#. - description: Description of the 'PolicyRefreshRate' policy.
#: id: 2371309782685318247 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the period in milliseconds at which the device management service "
"is queried for user policy information.\n"
"\n"
"      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.\n"
"\n"
"      Leaving this policy not set will make %{PRODUCT_NAME} use the default "
"value of 3 hours."
msgstr ""

#. IDS_POLICY_NOTIFICATIONSALLOWEDFORURLS_DESC
#. - description: Description of the 'NotificationsAllowedForUrls' policy.
#: id: 237494535617297575 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to display notifications.\n"
"\n"
"          If this policy is left not set 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."
msgstr ""

#. IDS_POLICY_NOTIFICATIONSBLOCKEDFORURLS_CAPTION
#. - description: Caption of the 'NotificationsBlockedForUrls' policy.
#: id: 2411919772666155530 (used in the following branches: trunk, dev, beta, stable)
msgid "Block notifications on these sites"
msgstr ""

#. IDS_POLICY_ENABLEORIGINBOUNDCERTS_DESC
#. - description: Description of the 'EnableOriginBoundCerts' policy.
#: id: 2431811512983100641 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies whether the TLS domain-bound certificates extension should be "
"enabled.\n"
"\n"
"      This setting is used to enable the TLS domain-bound certificates "
"extension for testing.  This experimental setting will be removed in the "
"future."
msgstr ""

#. IDS_POLICY_APPLICATIONLOCALEVALUE_CAPTION
#. - description: Caption of the 'ApplicationLocaleValue' policy.
#. IDS_POLICY_APPLICATIONLOCALEVALUE_LABEL
#. - description: Label of the 'ApplicationLocaleValue' policy.
#: id: 2463365186486772703 (used in the following branches: trunk, dev, beta, stable)
msgid "Application locale"
msgstr ""

#. IDS_POLICY_GCFUSERDATADIR_DESC
#. - description: Description of the 'GCFUserDataDir' policy.
#: id: 2505112041294615513 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the directory that %{PRODUCT_FRAME_NAME} will use for storing "
"user data.\n"
"\n"
"      If you set this policy, %{PRODUCT_FRAME_NAME} will use the provided "
"directory.\n"
"\n"
"      If this setting is left not set the default profile directory will be "
"used."
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERICONURL_DESC
#. - description: Description of the 'DefaultSearchProviderIconURL' policy.
#: id: 2514328368635166290 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the favorite icon URL of the default search provider.\n"
"\n"
"          This policy is optional. If not set, no icon will be present for "
"the search provider.\n"
"\n"
"          This policy is only respected if the "
"'DefaultSearchProviderEnabled' policy is enabled."
msgstr ""

#. IDS_POLICY_AUDIOOUTPUTALLOWED_CAPTION
#. - description: Caption of the 'AudioOutputAllowed' policy.
#: id: 2518231489509538392 (used in the following branches: trunk, dev)
msgid "Allow playing audio"
msgstr ""

#. IDS_POLICY_AUDIOCAPTUREALLOWED_CAPTION
#. - description: Caption of the 'AudioCaptureAllowed' policy.
#: id: 2524379983318108884 (used in the following branches: trunk, dev)
msgid "Allow capturing audio"
msgstr ""

#. IDS_POLICY_RESTRICTSIGNINTOPATTERN_CAPTION
#. - description: Caption of the 'RestrictSigninToPattern' policy.
#: id: 2529700525201305165 (used in the following branches: trunk, dev, beta, stable)
msgid "Restrict which users are allowed to sign in to %{PRODUCT_NAME}"
msgstr ""

#. IDS_POLICY_MEDIACACHESIZE_DESC
#. - description: Description of the 'MediaCacheSize' policy.
#: id: 2534584045044686957 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the cache size that %{PRODUCT_NAME} will use for storing cached "
"media files on the disk.\n"
"\n"
"      If you set this policy, %{PRODUCT_NAME} will use the provided cache "
"size regardless whether the user has specified the '--media-cache-size' flag"
" or not.\n"
"\n"
"      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.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_DOWNLOADDIRECTORY_DESC
#. - description: Description of the 'DownloadDirectory' policy.
#: id: 2538628396238281971 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the directory that %{PRODUCT_NAME} will use for downloading "
"files.\n"
"\n"
"      If you set this policy, %{PRODUCT_NAME} will use the provided "
"directory regardless whether the user has specified one or enabled the flag "
"to be prompted for download location every time.\n"
"\n"
"      If this policy is left not set the default download directory will be "
"used and the user will be able to change it."
msgstr ""

#. IDS_POLICY_DEFAULTBROWSERSETTINGENABLED_CAPTION
#. - description: Caption of the 'DefaultBrowserSettingEnabled' policy.
#. IDS_POLICY_DEFAULTBROWSERSETTINGENABLED_LABEL
#. - description: Label of the 'DefaultBrowserSettingEnabled' policy.
#: id: 254524874071906077 (used in the following branches: trunk, dev, beta, stable)
msgid "Set Chrome as Default Browser"
msgstr ""

#. IDS_POLICY_SYSTEMTIMEZONE_CAPTION
#. - description: Caption of the 'SystemTimezone' policy.
#: id: 2552966063069741410 (used in the following branches: trunk, dev)
msgid "Timezone"
msgstr ""

#. IDS_POLICY_METRICSREPORTINGENABLED_DESC
#. - description: Description of the 'MetricsReportingEnabled' policy.
#: id: 2565967352111237512 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables anonymous reporting of usage and crash-related data about "
"%{PRODUCT_NAME} to Google and prevents users from changing this setting.\n"
"\n"
"      If you enable this setting, anonymous reporting of usage and "
"crash-related data is sent to Google.\n"
"\n"
"      If you disable this setting, anonymous reporting of usage and "
"crash-related data is never sent to Google.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is left not set the setting will be what the user chose"
" upon installation / first run."
msgstr ""

#. IDS_POLICY_DEVICELOGINSCREENSAVERTIMEOUT_CAPTION
#. - description: Caption of the 'DeviceLoginScreenSaverTimeout' policy.
#: id: 2592091433672667839 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Duration of inactivity before the screen saver is shown on the sign-in "
"screen in retail mode"
msgstr ""

#. IDS_POLICY_CLOUDPRINTSUBMITENABLED_CAPTION
#. - description: Caption of the 'CloudPrintSubmitEnabled' policy.
#: id: 262740370354162807 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable submission of documents to %{CLOUD_PRINT_NAME}"
msgstr ""

#. IDS_POLICY_REMOTEACCESS_DESC
#. - description: Description of the group of 'IDS_POLICY_REMOTEACCESS' related policies.
#: id: 2629448496147630947 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configure remote access options in %{PRODUCT_NAME}.\n"
"\n"
"      These features are ignored unless the Remote Access web application is"
" installed."
msgstr ""

#. IDS_POLICY_DEFAULTGEOLOCATIONSETTING_DESC
#. - description: Description of the 'DefaultGeolocationSetting' policy.
#: id: 2646290749315461919 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'AskGeolocation' will be used and "
"the user will be able to change it."
msgstr ""

#. IDS_POLICY_ENUM_PROXYDISABLED_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyMode' of 'ProxyDisabled'
#. IDS_POLICY_ENUM_PROXYSERVERDISABLED_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyServerMode' of 'ProxyServerDisabled'
#: id: 2660846099862559570 (used in the following branches: trunk, dev, beta, stable)
msgid "Never use a proxy"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERENCODINGS_DESC
#. - description: Description of the 'DefaultSearchProviderEncodings' policy.
#: id: 267596348720209223 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          This policy is optional. If not set, the default will be used "
"which is UTF-8.\n"
"\n"
"          This policy is only respected if the "
"'DefaultSearchProviderEnabled' policy is enabled."
msgstr ""

#. IDS_POLICY_DOC_INTRO
#. - description: Introduction text for the generated policy documentation
#: id: 2741921267428646309 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This is the list of policies that %{PRODUCT_NAME} respects.\n"
"\n"
"      You don't need to change these settings by hand!  You can download "
"easy-to-use templates from\n"
"      %{POLICY_TEMPLATE_DOWNLOAD_URL}.\n"
"\n"
"      The list of supported policies is the same for Chromium and Google "
"Chrome, but their Windows registry locations differ.\n"
"\n"
"      It starts with %{CHROMIUM_KEY} for Chromium policies and with "
"%{GOOGLE_CHROME_KEY} for Google Chrome policies."
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTDOMAIN_DESC
#. - description: Description of the 'RemoteAccessHostDomain' policy.
#: id: 2747783890942882652 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the required host domain name that will be imposed on remote "
"access hosts and prevents users from changing it.\n"
"\n"
"          If this setting is enabled, then hosts can be shared only using "
"accounts registered on the specified domain name.\n"
"\n"
"          If this setting is disabled or not set, then hosts can be shared "
"using any account."
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTDOMAIN_CAPTION
#. - description: Caption of the 'RemoteAccessHostDomain' policy.
#: id: 2769952903507981510 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure the required domain name for remote access hosts"
msgstr ""

#. IDS_POLICY_ENUM_ALLOWPOPUPS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultPopupsSetting' of 'AllowPopups'
#: id: 2805707493867224476 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow all sites to show pop-ups"
msgstr ""

#. IDS_POLICY_INCOGNITOENABLED_CAPTION
#. - description: Caption of the 'IncognitoEnabled' policy.
#: id: 2824715612115726353 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable Incognito mode"
msgstr ""

#. IDS_POLICY_DISABLEAUTHNEGOTIATECNAMELOOKUP_CAPTION
#. - description: Caption of the 'DisableAuthNegotiateCnameLookup' policy.
#: id: 2877225735001246144 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable CNAME lookup when negotiating Kerberos authentication"
msgstr ""

#. IDS_POLICY_COOKIESSESSIONONLYFORURLS_CAPTION
#. - description: Caption of the 'CookiesSessionOnlyForUrls' policy.
#: id: 2884728160143956392 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow session only cookies on these sites"
msgstr ""

#. IDS_POLICY_DEVICEAPPPACK_CAPTION
#. - description: Caption of the 'DeviceAppPack' policy.
#: id: 2906874737073861391 (used in the following branches: trunk, dev, beta, stable)
msgid "List of AppPack extensions"
msgstr ""

#. IDS_POLICY_MAXCONNECTIONSPERPROXY_CAPTION
#. - description: Caption of the 'MaxConnectionsPerProxy' policy.
#: id: 2908277604670530363 (used in the following branches: trunk, dev, beta, stable)
msgid "Maximal number of concurrent connections to the proxy server"
msgstr ""

#. IDS_POLICY_PROXYBYPASSLIST_DESC
#. - description: Description of the 'ProxyBypassList' policy.
#: id: 2948381198510798695 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"%{PRODUCT_NAME} will bypass any proxy for the list of hosts given here.\n"
"\n"
"          This policy only takes effect if you have selected manual proxy "
"settings at 'Choose how to specify proxy server settings'.\n"
"\n"
"          You should leave this policy not set if you have selected any "
"other mode for setting proxy policies.\n"
"\n"
"          For more detailed examples, visit:\n"
"          %{PROXY_HELP_URL}"
msgstr ""

#. IDS_POLICY_PROXYBYPASSLIST_CAPTION
#. - description: Caption of the 'ProxyBypassList' policy.
#: id: 2959898425599642200 (used in the following branches: trunk, dev, beta, stable)
msgid "Proxy bypass rules"
msgstr ""

#. IDS_POLICY_DISABLEPLUGINFINDER_LABEL
#. - description: Label of the 'DisablePluginFinder' policy.
#: id: 3021409116652377124 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable plugin finder"
msgstr ""

#. IDS_POLICY_DEVICEMETRICSREPORTINGENABLED_CAPTION
#. - description: Caption of the 'DeviceMetricsReportingEnabled' policy.
#: id: 3030000825273123558 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable metrics reporting"
msgstr ""

#. IDS_POLICY_DEFAULTJAVASCRIPTSETTING_DESC
#. - description: Description of the 'DefaultJavaScriptSetting' policy.
#: id: 3034580675120919256 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'AllowJavaScript' will be used and"
" the user will be able to change it."
msgstr ""

#. IDS_POLICY_BACKGROUNDMODEENABLED_CAPTION
#. - description: Caption of the 'BackgroundModeEnabled' policy.
#: id: 3038323923255997294 (used in the following branches: trunk, dev, beta, stable)
msgid "Continue running background apps when %{PRODUCT_NAME} is closed"
msgstr ""

#. IDS_POLICY_DEVICELOGINSCREENSAVERID_CAPTION
#. - description: Caption of the 'DeviceLoginScreenSaverId' policy.
#: id: 3072045631333522102 (used in the following branches: trunk, dev, beta, stable)
msgid "Screen saver to be used on the sign-in screen in retail mode"
msgstr ""

#. IDS_POLICY_GDATADISABLEDOVERCELLULAR_DESC
#. - description: Description of the 'GDataDisabledOverCellular' policy.
#: id: 3088288048720661397 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables Google Docs syncing when using a cellular connection when set to "
"True. In that case, data is only synced to Google Docs when connected via "
"WiFi or Ethernet.\n"
"\n"
"          If not set or set to False, then users will be able to transfer "
"files to Google Docs via cellular connections."
msgstr ""

#. IDS_POLICY_ENABLEDPLUGINS_LABEL
#. - description: Label of the 'EnabledPlugins' policy.
#: id: 3096595567015595053 (used in the following branches: trunk, dev, beta, stable)
msgid "List of enabled plugins"
msgstr ""

#. IDS_POLICY_PROXYMODE_CAPTION
#. - description: Caption of the 'ProxyMode' policy.
#. IDS_POLICY_PROXYSERVERMODE_CAPTION
#. - description: Caption of the 'ProxyServerMode' policy.
#: id: 3101501961102569744 (used in the following branches: trunk, dev, beta, stable)
msgid "Choose how to specify proxy server settings"
msgstr ""

#. IDS_POLICY_CLEARSITEDATAONEXIT_DESC
#. - description: Description of the 'ClearSiteDataOnExit' policy.
#: id: 3120725863988702582 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is an override for the \"Clear cookies and other site data when "
"I close my browser\" content settings option that %{PRODUCT_NAME} supported "
"prior to version 21.\n"
"\n"
"      This policy exists only for backward-compatibility and will go away in"
" the future. The recommended way to clear site data on exit on version 21 "
"and later is to configure the DefaultCookiesSetting policy to "
"session-only.\n"
"\n"
"      If this policy is enabled it will be translated to the appropriate "
"policy setting for the DefaultCookiesSetting policy, setting it to "
"session-only if the DefaultCookiesSetting policy is not configured or set to"
" Allow.\n"
"\n"
"      If this policy is disabled or left unconfigured the policy for storing"
" site data is determined by the DefaultCookiesSetting policy."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLBLACKLIST_DESC
#. - description: Description of the 'ExtensionInstallBlacklist' policy.
#: id: 3153348162326497318 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify which extensions the users can NOT install. Extensions"
" already installed will be removed if blacklisted.\n"
"\n"
"          A blacklist value of '*' means all extensions are blacklisted "
"unless they are explicitly listed in the whitelist.\n"
"\n"
"          If this policy is left not set the user can install any extension "
"in %{PRODUCT_NAME}."
msgstr ""

#. IDS_POLICY_DOC_SINCE_VERSION
#. - description: Text in the summary chart of a policy that specifies the version number in which the policy was introduced.
#: id: 3185009703220253572 (used in the following branches: trunk, dev, beta, stable)
msgid "since version %{SINCE_VERSION}"
msgstr ""

#. IDS_POLICY_DISABLESSLRECORDSPLITTING_DESC
#. - description: Description of the 'DisableSSLRecordSplitting' policy.
#: id: 3195451902035818945 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies whether SSL record splitting should be disabled. Record splitting "
"is a workaround for a weakness in SSL 3.0 and TLS 1.0 but can cause "
"compatibility issues with some HTTPS servers and proxies.\n"
"\n"
"      If the policy is not set, or is set to false, then record splitting "
"will be used on SSL/TLS connections which use CBC ciphersuites."
msgstr ""

#. IDS_POLICY_IMPORTHOMEPAGE_DESC
#. - description: Description of the 'ImportHomepage' policy.
#: id: 3214164532079860003 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy forces the home page to be imported from the current default "
"browser if enabled.\n"
"\n"
"      If disabled, the home page is not imported.\n"
"\n"
"      If it is not set, the user may be asked whether to import, or "
"importing may happen automatically."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLSOURCES_LABEL
#. - description: Label of the 'ExtensionInstallSources' policy.
#: id: 3236046242843493070 (used in the following branches: trunk, dev, beta, stable)
msgid "URL patterns to allow extension, app, and user script installs from"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERENCODINGS_CAPTION
#. - description: Caption of the 'DefaultSearchProviderEncodings' policy.
#: id: 3264793472749429012 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider encodings"
msgstr ""

#. IDS_POLICY_DEFAULTJAVASCRIPTSETTING_CAPTION
#. - description: Caption of the 'DefaultJavaScriptSetting' policy.
#: id: 3273221114520206906 (used in the following branches: trunk, dev, beta, stable)
msgid "Default JavaScript setting"
msgstr ""

#. IDS_POLICY_CHROMEOSRELEASECHANNEL_CAPTION
#. - description: Caption of the 'ChromeOsReleaseChannel' policy.
#: id: 3288595667065905535 (used in the following branches: trunk, dev, beta, stable)
msgid "Release channel"
msgstr ""

#. IDS_POLICY_ENUM_RENDERINHOST_CAPTION
#. - description: Label in a 'ChromeFrameRendererSettings' dropdown menu for selecting a 'ChromeFrameRendererSettings' of 'RenderInHost'
#: id: 3381968327636295719 (used in the following branches: trunk, dev, beta, stable)
msgid "Use the host browser by default"
msgstr ""

#. IDS_POLICY_ENTERPRISEWEBSTORENAME_CAPTION
#. - description: Caption of the 'EnterpriseWebStoreName' policy.
#: id: 3390940575626654915 (used in the following branches: trunk, dev, beta, stable)
msgid "Enterprise web store name"
msgstr ""

#. IDS_POLICY_ENTERPRISEWEBSTOREURL_CAPTION
#. - description: Caption of the 'EnterpriseWebStoreURL' policy.
#: id: 3406810703404235731 (used in the following branches: trunk, dev, beta, stable)
msgid "Enterprise web store URL"
msgstr ""

#. IDS_POLICY_DEVICEGUESTMODEENABLED_DESC
#. - description: Description of the 'DeviceGuestModeEnabled' policy.
#: id: 3417418267404583991 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"If this policy is set to true or not configured, %{PRODUCT_OS_NAME} will "
"enable guest logins. Guest logins are anonymous user sessions and do not "
"require a password.\n"
"\n"
"      If this policy is set to false, %{PRODUCT_OS_NAME} will not allow "
"guest sessions to be started."
msgstr ""

#. IDS_POLICY_DNSPREFETCHINGENABLED_CAPTION
#. - description: Caption of the 'DnsPrefetchingEnabled' policy.
#: id: 3428247105888806363 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable network prediction"
msgstr ""

#. IDS_POLICY_SYSTEMTIMEZONE_DESC
#. - description: Description of the 'SystemTimezone' policy.
#: id: 3442095178490656861 (used in the following branches: trunk, dev)
msgid ""
"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.\n"
"\n"
"      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.\n"
"\n"
"      New devices start out with the timezone set to \"US/Pacific\".\n"
"\n"
"      The format of the value follows the names of timezones in the \"IANA "
"Time Zone Database\" (see "
"\"http://en.wikipedia.org/wiki/List_of_tz_database_time\"). In particular, "
"most timezones can be referred to by \"continent/large_city\" or "
"\"ocean/large_city\"."
msgstr ""

#. IDS_POLICY_REPORTDEVICEBOOTMODE_DESC
#. - description: Description of the 'ReportDeviceBootMode' policy.
#: id: 3450318623141983471 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Report the state of the device's dev switch at boot.\n"
"\n"
"      If the policy is not set, or set to false, the state of the dev switch"
" will not be reported."
msgstr ""

#. IDS_POLICY_DEVICEEPHEMERALUSERSENABLED_CAPTION
#. - description: Caption of the 'DeviceEphemeralUsersEnabled' policy.
#: id: 3478024346823118645 (used in the following branches: trunk, dev, beta, stable)
msgid "Wipe user data on sign-out"
msgstr ""

#. IDS_POLICY_PASSWORDMANAGER_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_PASSWORDMANAGER' related policies.
#: id: 3496296378755072552 (used in the following branches: trunk, dev, beta, stable)
msgid "Password manager"
msgstr ""

#. IDS_POLICY_TRANSLATEENABLED_CAPTION
#. - description: Caption of the 'TranslateEnabled' policy.
#: id: 350797926066071931 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable Translate"
msgstr ""

#. IDS_POLICY_ALTERNATEERRORPAGESENABLED_CAPTION
#. - description: Caption of the 'AlternateErrorPagesEnabled' policy.
#: id: 3528000905991875314 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable alternate error pages"
msgstr ""

#. IDS_POLICY_PLUGINSBLOCKEDFORURLS_CAPTION
#. - description: Caption of the 'PluginsBlockedForUrls' policy.
#: id: 3570008976476035109 (used in the following branches: trunk, dev, beta, stable)
msgid "Block plugins on these sites"
msgstr ""

#. IDS_POLICY_ENUM_ENABLED_CAPTION
#. - description: Label in a 'IncognitoModeAvailability' dropdown menu for selecting 'Enabled'
#: id: 3612784419634427880 (used in the following branches: trunk, dev, beta, stable)
msgid "Incognito mode available."
msgstr ""

#. IDS_POLICY_SPELLCHECKSERVICEENABLED_CAPTION
#. - description: Caption of the 'SpellCheckServiceEnabled' policy.
#: id: 3627678165642179114 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable or disable spell checking web service"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERICONURL_CAPTION
#. - description: Caption of the 'DefaultSearchProviderIconURL' policy.
#: id: 3653237928288822292 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider icon"
msgstr ""

#. IDS_POLICY_GDATADISABLEDOVERCELLULAR_CAPTION
#. - description: Caption of the 'GDataDisabledOverCellular' policy.
#: id: 3664573135939978914 (used in the following branches: trunk, dev, beta, stable)
msgid "Disables GData over Cellular connections"
msgstr ""

#. IDS_POLICY_DNSPREFETCHINGENABLED_DESC
#. - description: Description of the 'DnsPrefetchingEnabled' policy.
#: id: 36674322972891584 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables network prediction in %{PRODUCT_NAME} and prevents users from "
"changing this setting.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLBLACKLIST_CAPTION
#. - description: Caption of the 'ExtensionInstallBlacklist' policy.
#: id: 3709266154059827597 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure extension installation blacklist"
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINSEXCEPTIONS_DESC
#. - description: Description of the 'DisabledPluginsExceptions' policy.
#: id: 3723474915949495925 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies a list of plugins that user can enable or disable in "
"%{PRODUCT_NAME}.\n"
"\n"
"      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.\n"
"\n"
"      If you enable this setting, the specified list of plugins can be used "
"in %{PRODUCT_NAME}. Users can enable or disable them in 'about:plugins', "
"even if the plugin also matches a pattern in DisabledPlugins. Users can also"
" enable and disable plugins that don't match any patterns in "
"DisabledPlugins, DisabledPluginsExceptions and EnabledPlugins.\n"
"\n"
"      This policy is meant to allow for strict plugin blacklisting where the"
" 'DisabledPlugins' list contains wildcarded entries like disable all plugins"
" '*' or disable all Java plugins '*Java*' but the administrator wishes to "
"enable some particular version like 'IcedTea Java 2.3'. This particular "
"versions can be specified in this policy.\n"
"\n"
"      If this policy is left not set any plugin that matches the patterns in"
" the 'DisabledPlugins' will be locked disabled and the user won't be able to"
" enable them."
msgstr ""

#. IDS_POLICY_DEVELOPERTOOLSDISABLED_CAPTION
#. - description: Caption of the 'DeveloperToolsDisabled' policy.
#: id: 3758249152301468420 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable Developer Tools"
msgstr ""

#. IDS_POLICY_DEVICEIDLELOGOUTWARNINGDURATION_CAPTION
#. - description: Caption of the 'DeviceIdleLogoutWarningDuration' policy.
#: id: 3765260570442823273 (used in the following branches: trunk, dev, beta, stable)
msgid "Duration of the idle log-out warning message"
msgstr ""

#. IDS_POLICY_ENABLEAUTHNEGOTIATEPORT_CAPTION
#. - description: Caption of the 'EnableAuthNegotiatePort' policy.
#: id: 3780152581321609624 (used in the following branches: trunk, dev, beta, stable)
msgid "Include non-standard port in Kerberos SPN"
msgstr ""

#. IDS_POLICY_DEFAULTBROWSERSETTINGENABLED_DESC
#. - description: Description of the 'DefaultBrowserSettingEnabled' policy.
#: id: 3793095274466276777 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the default browser checks in %{PRODUCT_NAME} and prevents users "
"from changing them.\n"
"\n"
"      If you enable this setting, %{PRODUCT_NAME} will always check on "
"startup whether it is the default browser and automatically register itself "
"if possible.\n"
"\n"
"      If this setting is disabled, %{PRODUCT_NAME} will never check if it is"
" the default browser and will disable user controls for setting this "
"option.\n"
"\n"
"      If this setting is not set, %{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."
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINS_CAPTION
#. - description: Caption of the 'DisabledPlugins' policy.
#: id: 3808945828600697669 (used in the following branches: trunk, dev, beta, stable)
msgid "Specify a list of disabled plugins"
msgstr ""

#. IDS_POLICY_RESTOREONSTARTUPURLS_DESC
#. - description: Description of the 'RestoreOnStartupURLs' policy.
#: id: 3809527282695568696 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          This policy only works if the 'RestoreOnStartup' policy is set to "
"'RestoreOnStartupIsURLs'."
msgstr ""

#. IDS_POLICY_SAVINGBROWSERHISTORYDISABLED_DESC
#. - description: Description of the 'SavingBrowserHistoryDisabled' policy.
#: id: 3823029528410252878 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables saving browser history in %{PRODUCT_NAME} and prevents users from "
"changing this setting.\n"
"\n"
"      If this setting is enabled, browsing history is not saved.\n"
"\n"
"      If this setting is disabled or not set, browsing history is saved."
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTTALKGADGETPREFIX_CAPTION
#. - description: Caption of the 'RemoteAccessHostTalkGadgetPrefix' policy.
#: id: 382476126209906314 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure the TalkGadget prefix for remote access hosts"
msgstr ""

#. IDS_POLICY_POPUPSBLOCKEDFORURLS_DESC
#. - description: Description of the 'PopupsBlockedForUrls' policy.
#: id: 384743459174066962 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are not "
"allowed to open popups.\n"
"\n"
"          If this policy is left not set the global default value will be "
"used for all sites either from the 'DefaultPopupsSetting' policy if it is "
"set, or the user's personal configuration otherwise."
msgstr ""

#. IDS_POLICY_DEFAULTPLUGINSSETTING_CAPTION
#. - description: Caption of the 'DefaultPluginsSetting' policy.
#: id: 3864818549971490907 (used in the following branches: trunk, dev, beta, stable)
msgid "Default plugins setting"
msgstr ""

#. IDS_POLICY_DOC_DESCRIPTION_COLUMN_TITLE
#. - description: Appears at the top of the policy summary table, over the column of short policy descriptions, in the generated policy documentation
#: id: 3866249974567520381 (used in the following branches: trunk, dev, beta, stable)
msgid "Description"
msgstr ""

#. IDS_POLICY_DEVICESHOWUSERNAMESONSIGNIN_DESC
#. - description: Description of the 'DeviceShowUserNamesOnSignin' policy.
#: id: 3866530186104388232 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"If this policy is set to true or not configured, %{PRODUCT_OS_NAME} will "
"show existing users on the login screen and allow to pick one. If this "
"policy is set to false, %{PRODUCT_OS_NAME} will use the username/password "
"prompt for login."
msgstr ""

#. IDS_POLICY_DEVICEAPPPACK_DESC
#. - description: Description of the 'DeviceAppPack' policy.
#: id: 3868347814555911633 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is active in retail mode only.\n"
"\n"
"      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.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_JAVASCRIPTENABLED_CAPTION
#. - description: Caption of the 'JavascriptEnabled' policy.
#: id: 3891357445869647828 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable JavaScript"
msgstr ""

#. IDS_POLICY_PROXY_DESC
#. - description: Description of the group of 'IDS_POLICY_PROXY' related policies.
#: id: 389421284571827139 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify the proxy server used by %{PRODUCT_NAME} and prevents "
"users from changing proxy settings.\n"
"\n"
"      If you choose to never use a proxy server and always connect directly,"
" all other options are ignored.\n"
"\n"
"      If you choose to auto detect the proxy server, all other options are "
"ignored.\n"
"\n"
"      For detailed examples, visit:\n"
"      %{PROXY_HELP_URL}\n"
"\n"
"      If you enable this setting, %{PRODUCT_NAME} ignores all proxy-related "
"options specified from the command line.\n"
"\n"
"      Leaving these policies not set will allow the users to choose the "
"proxy settings on their own."
msgstr ""

#. IDS_POLICY_PROXYPACURL_CAPTION
#. - description: Caption of the 'ProxyPacUrl' policy.
#: id: 3915395663995367577 (used in the following branches: trunk, dev, beta, stable)
msgid "URL to a proxy .pac file"
msgstr ""

#. IDS_POLICY_URLWHITELIST_CAPTION
#. - description: Caption of the 'URLWhitelist' policy.
#: id: 3964909636571393861 (used in the following branches: trunk, dev, beta, stable)
msgid "Allows access to a list of URLs"
msgstr ""

#. IDS_POLICY_DEVICEIDLELOGOUTTIMEOUT_CAPTION
#. - description: Caption of the 'DeviceIdleLogoutTimeout' policy.
#: id: 3965339130942650562 (used in the following branches: trunk, dev, beta, stable)
msgid "Timeout until idle user log-out is executed"
msgstr ""

#. IDS_POLICY_DEVICEEPHEMERALUSERSENABLED_DESC
#. - description: Description of the 'DeviceEphemeralUsersEnabled' policy.
#: id: 3984028218719007910 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Determines whether %{PRODUCT_OS_NAME} keeps local account data after logout."
" If set to true, no persistent accounts are kept by %{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."
msgstr ""

#. IDS_POLICY_ALLOWFILESELECTIONDIALOGS_CAPTION
#. - description: Caption of the 'AllowFileSelectionDialogs' policy.
#: id: 4010738624545340900 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow invocation of file selection dialogs"
msgstr ""

#. IDS_POLICY_BLOCKTHIRDPARTYCOOKIES_DESC
#. - description: Description of the 'BlockThirdPartyCookies' policy.
#: id: 4025586928523884733 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Blocks third party cookies.\n"
"\n"
"      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.\n"
"\n"
"      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.\n"
"\n"
"      If this policy is left not set, third party cookies will be enabled "
"but the user will be able to change that."
msgstr ""

#. IDS_POLICY_ENUM_BLOCKJAVASCRIPT_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultJavaScriptSetting' of 'BlockJavaScript'
#: id: 402759845255257575 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to run JavaScript"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERENABLED_CAPTION
#. - description: Caption of the 'DefaultSearchProviderEnabled' policy.
#: id: 4027608872760987929 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable the default search provider"
msgstr ""

#. IDS_POLICY_ALLOWCROSSORIGINAUTHPROMPT_DESC
#. - description: Description of the 'AllowCrossOriginAuthPrompt' policy.
#: id: 4039085364173654945 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Controls whether third-party sub-content on a page is allowed to pop-up an "
"HTTP Basic Auth dialog box.\n"
"\n"
"          Typically this is disabled as a phishing defense. 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 dialog box."
msgstr ""

#. IDS_POLICY_DEVICEUPDATEALLOWEDCONNECTIONTYPES_DESC
#. - description: Description of the 'DeviceUpdateAllowedConnectionTypes' policy.
#: id: 4043912146394966243 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"      The recognized connection type identifiers are \"ethernet\", \"wifi\","
" \"wimax\", \"bluetooth\" and \"cellular\"."
msgstr ""

#. IDS_POLICY_PASSWORDMANAGERALLOWSHOWPASSWORDS_DESC
#. - description: Description of the 'PasswordManagerAllowShowPasswords' policy.
#: id: 4052765007567912447 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Controls whether the user may show passwords in clear text in the password "
"manager.\n"
"\n"
"          If you disable this setting, the password manager does not allow "
"showing stored passwords in clear text in the password manager window.\n"
"\n"
"          If you enable or do not set this policy, users can view their "
"passwords in clear text in the password manager."
msgstr ""

#. IDS_POLICY_DISABLESPDY_CAPTION
#. - description: Caption of the 'DisableSpdy' policy.
#: id: 4056910949759281379 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable SPDY protocol"
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINSBYVERSION_LABEL
#. - description: Label of the 'DisabledPluginsByVersion' policy.
#: id: 4077659255287566841 (used in the following branches: trunk)
msgid "List of specific plugin versions that are disabled"
msgstr ""

#. IDS_POLICY_HOMEPAGEISNEWTABPAGE_DESC
#. - description: Description of the 'HomepageIsNewTabPage' policy.
#: id: 4101778963403261403 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the type of the default home page in %{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.\n"
"\n"
"          If you enable this setting, the New Tab Page is always used for "
"the home page, and the home page URL location is ignored.\n"
"\n"
"          If you disable this setting, the user's homepage will never be the"
" New Tab Page, unless its URL is set to 'chrome://newtab'.\n"
"\n"
"          If you enable or disable this setting, users cannot change their "
"homepage type in %{PRODUCT_NAME}.\n"
"\n"
"          Leaving this policy not set will allow the user to choose whether "
"the new tab page is his home page on his own."
msgstr ""

#. IDS_POLICY_HIDEWEBSTOREPROMO_CAPTION
#. - description: Caption of the 'HideWebStorePromo' policy.
#: id: 4121350739760194865 (used in the following branches: trunk, dev, beta, stable)
msgid "Prevent app promotions from appearing on the new tab page"
msgstr ""

#. IDS_POLICY_GDATADISABLED_DESC
#. - description: Description of the 'GDataDisabled' policy.
#: id: 4126767310980686012 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables Google Docs syncing when set to True. In that case, no data is "
"uploaded to Google Docs.\n"
"\n"
"          If not set or set to False, then users will be able to transfer "
"files to Google Docs."
msgstr ""

#. IDS_POLICY_REPORTDEVICEVERSIONINFO_CAPTION
#. - description: Caption of the 'ReportDeviceVersionInfo' policy.
#: id: 4157003184375321727 (used in the following branches: trunk, dev, beta, stable)
msgid "Report OS and firmware version"
msgstr ""

#. IDS_POLICY_DOC_NOT_SUPPORTED
#. - description: Appears next to the name of each unsupported feature in the 'list of supported policy features' in the generated policy documentation
#: id: 4250680216510889253 (used in the following branches: trunk, dev, beta, stable)
msgid "No"
msgstr ""

#. IDS_POLICY_WIN_SUPPORTED_WINXPSP2
#. - description: A label specifying the oldest possible compatible version of Windows. This text will appear right next to a label containing the text 'Supported on:'.
#: id: 4320376026953250541 (used in the following branches: trunk, dev, beta, stable)
msgid "Microsoft Windows XP SP2 or later"
msgstr ""

#. IDS_POLICY_ENUM_ALLOWIMAGES_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultImagesSetting' of 'AllowImages'
#: id: 4377599627073874279 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow all sites to show all images"
msgstr ""

#. IDS_POLICY_ENUM_PROXYSERVERMANUAL_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyServerMode' of 'ProxyServerManual'
#: id: 4423597592074154136 (used in the following branches: trunk, dev, beta, stable)
msgid "Manually specify proxy settings"
msgstr ""

#. IDS_POLICY_CLEARSITEDATAONEXIT_CAPTION
#. - description: Caption of the 'ClearSiteDataOnExit' policy.
#. IDS_POLICY_CLEARSITEDATAONEXIT_LABEL
#. - description: Label of the 'ClearSiteDataOnExit' policy.
#: id: 443665821428652897 (used in the following branches: trunk, dev, beta, stable)
msgid "Clear site data on browser shutdown (deprecated)"
msgstr ""

#. IDS_POLICY_CHROMEOSLOCKONIDLESUSPEND_CAPTION
#. - description: Caption of the 'ChromeOsLockOnIdleSuspend' policy.
#: id: 4442582539341804154 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable lock when the device become idle or suspended"
msgstr ""

#. IDS_POLICY_DEVELOPERTOOLSDISABLED_DESC
#. - description: Description of the 'DeveloperToolsDisabled' policy.
#: id: 4445684791305970001 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables the Developer Tools and the JavaScript console.\n"
"\n"
"      If you enable this setting, the Developer Tools can not be accessed "
"and web-site elements can not be inspected anymore. Any keyboard shortcuts "
"and any menu or context menu entries to open the Developer Tools or the "
"JavaScript Console will be disabled.\n"
"\n"
"      Setting this option to disabled or leaving it not set will allow the "
"use to use the Developer Tools and the JavaScript console."
msgstr ""

#. IDS_POLICY_BLOCKTHIRDPARTYCOOKIES_CAPTION
#. - description: Caption of the 'BlockThirdPartyCookies' policy.
#: id: 4467952432486360968 (used in the following branches: trunk, dev, beta, stable)
msgid "Block third party cookies"
msgstr ""

#. IDS_POLICY_SHOWHOMEBUTTON_DESC
#. - description: Description of the 'ShowHomeButton' policy.
#: id: 4482640907922304445 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Shows the Home button on %{PRODUCT_NAME}'s toolbar.\n"
"\n"
"      If you enable this setting, the Home button is always shown.\n"
"\n"
"      If you disable this setting, the Home button is never shown.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      Leaving this policy not set will allow the user to choose whether to "
"show the home button."
msgstr ""

#. IDS_POLICY_DISABLESCREENSHOTS_CAPTION
#. - description: Caption of the 'DisableScreenshots' policy.
#: id: 4492287494009043413 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable taking screenshots"
msgstr ""

#. IDS_POLICY_RENDERINCHROMEFRAMELIST_DESC
#. - description: Description of the 'RenderInChromeFrameList' policy.
#: id: 4507081891926866240 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Customize the list of URL patterns that should always be rendered by "
"%{PRODUCT_FRAME_NAME}.\n"
"\n"
"          If this policy is not set the default renderer will be used for "
"all sites as specified by the 'ChromeFrameRendererSettings' policy.\n"
"\n"
"          For example patterns see "
"http://www.chromium.org/developers/how-tos/chrome-frame-getting-started."
msgstr ""

#. IDS_POLICY_ENUM_ASKGEOLOCATION_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultGeolocationSetting' of 'AskGeolocation'
#: id: 4518251772179446575 (used in the following branches: trunk, dev, beta, stable)
msgid "Ask whenever a site wants to track the users' physical location"
msgstr ""

#. IDS_POLICY_IMAGESBLOCKEDFORURLS_DESC
#. - description: Description of the 'ImagesBlockedForUrls' policy.
#: id: 4525521128313814366 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are not "
"allowed to display images.\n"
"\n"
"          If this policy is left not set 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."
msgstr ""

#. IDS_POLICY_RENDERINHOSTLIST_DESC
#. - description: Description of the 'RenderInHostList' policy.
#: id: 4529945827292143461 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Customize the list of URL patterns that should always be rendered by the "
"host browser.\n"
"\n"
"          If this policy is not set the default renderer will be used for "
"all sites as specified by the 'ChromeFrameRendererSettings' policy.\n"
"\n"
"          For example patterns see "
"http://www.chromium.org/developers/how-tos/chrome-frame-getting-started."
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINSBYVERSION_DESC
#. - description: Description of the 'DisabledPluginsByVersion' policy.
#: id: 4625205951443228256 (used in the following branches: trunk)
msgid ""
"Specifies a list of plugins and specific versions of each of them that are "
"disabled in %{PRODUCT_NAME} and prevents users from changing this setting.\n"
"\n"
"      Each element of the list has the format "
"PLUGIN_PATTERN:VERSION_PATTERN_LIST. PLUGIN_PATTERN is a pattern that "
"matches the name of a plugin, 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. "
"PLUGIN_PATTERN can't have the character ':'.\n"
"\n"
"      VERSION_PATTERN_LIST is a comma separated list of version patterns. "
"Each version pattern consists of multiple integer components separated by "
"dots (e.g. 1.2.4) except for the last component that can take the wildcard "
"character '*' as well. Specifying the wildcard character '*' in the last "
"version component indicates that the version component up to (but not "
"including) the wildcard will only be used in version comparision.\n"
"\n"
"      If you enable this setting, the specified plugins with matching "
"versions are never used in %{PRODUCT_NAME}. These plugin versions are marked"
" as disabled in about:plugins and users cannot enable them. Note that this "
"policy overrides EnabledPlugins and DisabledPluginsExceptions. If this "
"policy is left not set or a version is not listed in VERSION_PATTERN_LIST, "
"the user can use the plugin or the specific plugin version installed on the "
"system except for hard-coded incompatible, outdated or dangerous plugins."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLWHITELIST_CAPTION
#. - description: Caption of the 'ExtensionInstallWhitelist' policy.
#: id: 4625915093043961294 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure extension installation whitelist"
msgstr ""

#. IDS_POLICY_CHROMEFRAMECONTENTTYPES_CAPTION
#. - description: Caption of the 'ChromeFrameContentTypes' policy.
#: id: 4632343302005518762 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow %{PRODUCT_FRAME_NAME} to handle the listed content types"
msgstr ""

#. IDS_POLICY_DISABLEDSCHEMES_CAPTION
#. - description: Caption of the 'DisabledSchemes' policy.
#: id: 4650759511838826572 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable URL protocol schemes"
msgstr ""

#. IDS_POLICY_EDITBOOKMARKSENABLED_DESC
#. - description: Description of the 'EditBookmarksEnabled' policy.
#: id: 4655130238810647237 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables or disables editing bookmarks in %{PRODUCT_NAME}.\n"
"\n"
"      If you enable this setting, bookmarks can be added, removed or "
"modified. This is the default also when this policy is not set.\n"
"\n"
"      If you disable this setting, bookmarks can not be added, removed or "
"modified. Existing bookmarks are still available."
msgstr ""

#. IDS_POLICY_DEFAULTIMAGESSETTING_CAPTION
#. - description: Caption of the 'DefaultImagesSetting' policy.
#: id: 4668325077104657568 (used in the following branches: trunk, dev, beta, stable)
msgid "Default images setting"
msgstr ""

#. IDS_POLICY_DOC_SUPPORTED_FEATURES
#. - description: Caption text of the list of 'policy features that this policy supports' in the summary chart of a policy in the generated documentation
#: id: 467236746355332046 (used in the following branches: trunk, dev, beta, stable)
msgid "Supported features:"
msgstr ""

#. IDS_POLICY_ENUM_RESTOREONSTARTUPISURLS_CAPTION
#. - description: Label in a 'RestoreOnStartupGroup' dropdown menu for selecting a 'RestoreOnStartup' of 'RestoreOnStartupIsURLs'
#: id: 467449052039111439 (used in the following branches: trunk, dev, beta, stable)
msgid "Open a list of URLs"
msgstr ""

#. IDS_POLICY_AUTOFILLENABLED_CAPTION
#. - description: Caption of the 'AutoFillEnabled' policy.
#: id: 4680961954980851756 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable AutoFill"
msgstr ""

#. IDS_POLICY_REMOTEACCESSCLIENTFIREWALLTRAVERSAL_CAPTION
#. - description: Caption of the 'RemoteAccessClientFirewallTraversal' policy.
#: id: 4723829699367336876 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable firewall traversal from remote access client"
msgstr ""

#. IDS_POLICY_HTTPAUTHENTICATION_DESC
#. - description: Description of the group of 'IDS_POLICY_HTTPAUTHENTICATION' related policies.
#: id: 4733471537137819387 (used in the following branches: trunk, dev, beta, stable)
msgid "Policies related to integrated HTTP authentication."
msgstr ""

#. IDS_POLICY_DISABLESAFEBROWSINGPROCEEDANYWAY_DESC
#. - description: Description of the 'DisableSafeBrowsingProceedAnyway' policy.
#: id: 4752214355598028025 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"The Safe Browsing service shows a warning page when users navigate to sites "
"that are flagged as potentially mallicious. Enabling this setting prevents "
"users from proceeding anyway from the warning page to the malicious site.\n"
"\n"
"      If this setting is disabled or not configured then users can choose to"
" proceed to the flagged site after being shown the warning."
msgstr ""

#. IDS_POLICY_RESTRICTSIGNINTOPATTERN_DESC
#. - description: Description of the 'RestrictSigninToPattern' policy.
#: id: 4838572175671839397 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Contains a regular expression which is used to determine which users can "
"sign in to %{PRODUCT_NAME}.\n"
"\n"
"      An appropriate error is displayed if a user tries to log in with a "
"username that does not match this pattern.\n"
"\n"
"      If this policy is left not set or blank, then any user can sign in to "
"%{PRODUCT_NAME}."
msgstr ""

#. IDS_POLICY_SAFEBROWSINGENABLED_CAPTION
#. - description: Caption of the 'SafeBrowsingEnabled' policy.
#: id: 4899708173828500852 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable Safe Browsing"
msgstr ""

#. IDS_POLICY_DEVICEPOLICYREFRESHRATE_CAPTION
#. - description: Caption of the 'DevicePolicyRefreshRate' policy.
#: id: 4906194810004762807 (used in the following branches: trunk, dev, beta, stable)
msgid "Refresh rate for Device Policy"
msgstr ""

#. IDS_POLICY_DEVICEALLOWNEWUSERS_DESC
#. - description: Description of the 'DeviceAllowNewUsers' policy.
#: id: 4928632305180102854 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Controls whether %{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.\n"
"\n"
"      If this policy is set to true or not configured, new user accounts "
"will be allowed to be created provided that "
"%{DEVICEUSERWHITELISTPROTO_POLICY_NAME} does not prevent the user from "
"logging in."
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERSEARCHURL_DESC
#. - description: Description of the 'DefaultSearchProviderSearchURL' policy.
#: id: 4962195944157514011 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the URL of the search engine used when doing a default search. The"
" URL should contain the string '%{SEARCH_TERM_MARKER}', which will be "
"replaced at query time by the terms the user is searching for.\n"
"\n"
"          This option must be set when the 'DefaultSearchProviderEnabled' "
"policy is enabled and will only be respected if this is the case."
msgstr ""

#. IDS_POLICY_DOC_DATA_TYPE
#. - description: Caption text of the field 'data type' in the summary chart of a policy in the generated documentation
#: id: 4980635395568992380 (used in the following branches: trunk, dev, beta, stable)
msgid "Data type:"
msgstr ""

#. IDS_POLICY_ALLOWOUTDATEDPLUGINS_CAPTION
#. - description: Caption of the 'AllowOutdatedPlugins' policy.
#: id: 4983201894483989687 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow running plugins that are outdated"
msgstr ""

#. IDS_POLICY_IMPORTHISTORY_DESC
#. - description: Description of the 'ImportHistory' policy.
#: id: 5052081091120171147 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy forces the browsing history to be imported from the current "
"default browser if enabled. If enabled, this policy also affects the import "
"dialog.\n"
"\n"
"      If disabled, no browsing history is imported.\n"
"\n"
"      If it is not set, the user may be asked whether to import, or "
"importing may happen automatically."
msgstr ""

#. IDS_POLICY_DEVICEUSERWHITELIST_CAPTION
#. - description: Caption of the 'DeviceUserWhitelist' policy.
#: id: 5067143124345820993 (used in the following branches: trunk, dev, beta, stable)
msgid "Login user white list"
msgstr ""

#. IDS_POLICY_DISABLEPRINTPREVIEW_CAPTION
#. - description: Caption of the 'DisablePrintPreview' policy.
#: id: 5085647276663819155 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable Print Preview"
msgstr ""

#. IDS_POLICY_SYNCDISABLED_DESC
#. - description: Description of the 'SyncDisabled' policy.
#: id: 510186355068252378 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables data synchronization in %{PRODUCT_NAME} using Google-hosted "
"synchronization services and prevents users from changing this setting.\n"
"\n"
"      If you enable this setting, users cannot change or override this "
"setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is left not set Google Sync will be available for the "
"user to choose whether to use it or not."
msgstr ""

#. IDS_POLICY_RENDERINCHROMEFRAMELIST_CAPTION
#. - description: Caption of the 'RenderInChromeFrameList' policy.
#: id: 5142301680741828703 (used in the following branches: trunk, dev, beta, stable)
msgid "Always render the following URL patterns in %{PRODUCT_FRAME_NAME}"
msgstr ""

#. IDS_POLICY_ADDITIONALLAUNCHPARAMETERS_DESC
#. - description: Description of the 'AdditionalLaunchParameters' policy.
#: id: 5148753489738115745 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify additional parameters that are used when "
"%{PRODUCT_FRAME_NAME} launches %{PRODUCT_NAME}.\n"
"\n"
"          If this policy is not set the default command line will be used."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLWHITELIST_DESC
#. - description: Description of the 'ExtensionInstallWhitelist' policy.
#: id: 5183383917553127163 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify which extensions are not subject to the blacklist.\n"
"\n"
"          A blacklist value of * means all extensions are blacklisted and "
"users can only install extensions listed in the whitelist.\n"
"\n"
"          By default, all extensions are whitelisted, but if all extensions "
"have been blacklisted by policy, the whitelist can be used to override that "
"policy."
msgstr ""

#. IDS_POLICY_ALTERNATEERRORPAGESENABLED_DESC
#. - description: Description of the 'AlternateErrorPagesEnabled' policy.
#: id: 5192837635164433517 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables the use of alternate error pages that are built into %{PRODUCT_NAME}"
" (such as 'page not found') and prevents users from changing this setting.\n"
"\n"
"      If you enable this setting, alternate error pages are used.\n"
"\n"
"      If you disable this setting, alternate error pages are never used.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_NOTIFICATIONSBLOCKEDFORURLS_DESC
#. - description: Description of the 'NotificationsBlockedForUrls' policy.
#: id: 5208240613060747912 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are not "
"allowed to display notifications.\n"
"\n"
"          If this policy is left not set 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."
msgstr ""

#. IDS_POLICY_DISABLEPLUGINFINDER_CAPTION
#. - description: Caption of the 'DisablePluginFinder' policy.
#: id: 5226033722357981948 (used in the following branches: trunk, dev, beta, stable)
msgid "Specify whether the plugin finder should be disabled"
msgstr ""

#. IDS_POLICY_DOC_FEATURE_CAN_BE_RECOMMENDED
#. - description: The name of the feature that indicates for a given policy that it can be recommended, instead of mandatory
#: id: 5255162913209987122 (used in the following branches: trunk, dev, beta, stable)
msgid "Can Be Recommended"
msgstr ""

#. IDS_POLICY_AUDIOCAPTUREALLOWED_DESC
#. - description: Description of the 'AudioCaptureAllowed' policy.
#: id: 5281259077246025371 (used in the following branches: trunk, dev)
msgid ""
"Allow capturing audio.\n"
"\n"
"      When this policy is set to false, audio capturing will not be "
"available on the device while the user is logged in.\n"
"\n"
"      This policy affects all types of audio inputs and not only the "
"built-in microphone.\n"
"\n"
"      If this setting is set to true or not configured then users can use "
"all supported audio inputs on their device."
msgstr ""

#. IDS_POLICY_URLBLACKLIST_DESC
#. - description: Description of the 'URLBlacklist' policy.
#: id: 5289914968905023866 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Blocks access to the listed URLs.\n"
"\n"
"      This policy prevents the user from loading web pages from blacklisted "
"URLs.\n"
"\n"
"      A URL has the format 'scheme://host:port/path'.\n"
"      The optional scheme can be http, https or ftp. Only this scheme will "
"be blocked; if none is specified, all schemes are blocked.\n"
"      The host 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.\n"
"      The optional port is a valid port number from 1 to 65535. If none is "
"specified, all ports are blocked.\n"
"      If the optional path is specified, only paths with that prefix will be"
" blocked.\n"
"\n"
"      Exceptions can be defined in the URL whitelist policy. These policies "
"are limited to 100 entries; subsequent entries will be ignored.\n"
"\n"
"      If this policy is not set no URL will be blacklisted in the browser."
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINSEXCEPTIONS_CAPTION
#. - description: Caption of the 'DisabledPluginsExceptions' policy.
#: id: 5290940294294002042 (used in the following branches: trunk, dev, beta, stable)
msgid "Specify a list of plugins that the user can enable or disable"
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTREQUIRECURTAIN_CAPTION
#. - description: Caption of the 'RemoteAccessHostRequireCurtain' policy.
#: id: 5293547923319914979 (used in the following branches: trunk, dev)
msgid "Enable curtaining of remote access hosts."
msgstr ""

#. IDS_POLICY_INCOGNITOMODEAVAILABILITY_CAPTION
#. - description: Caption of the 'IncognitoModeAvailability' policy.
#: id: 5307432759655324440 (used in the following branches: trunk, dev, beta, stable)
msgid "Incognito mode availability"
msgstr ""

#. IDS_POLICY_DEFAULTCOOKIESSETTING_DESC
#. - description: Description of the 'DefaultCookiesSetting' policy.
#: id: 5316405756476735914 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'AllowCookies' will be used and "
"the user will be able to change it."
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTFIREWALLTRAVERSAL_DESC
#. - description: Description of the 'RemoteAccessHostFirewallTraversal' policy.
#: id: 5317965872570843334 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables usage of STUN and relay servers when remote clients are trying to "
"establish a connection to this machine.\n"
"\n"
"          If this setting is enabled, then remote clients can discover and "
"connect to this machines even if they are separated by a firewall.\n"
"\n"
"          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.\n"
"\n"
"          If this policy is left not set the setting will be enabled."
msgstr ""

#. IDS_POLICY_CHROMEFRAMECONTENTTYPES_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_CHROMEFRAMECONTENTTYPES' related policies.
#: id: 5330684698007383292 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow %{PRODUCT_FRAME_NAME} to handle the following content types"
msgstr ""

#. IDS_POLICY_SHOWHOMEBUTTON_CAPTION
#. - description: Caption of the 'ShowHomeButton' policy.
#: id: 5365946944967967336 (used in the following branches: trunk, dev, beta, stable)
msgid "Show Home button on toolbar"
msgstr ""

#. IDS_POLICY_DEFAULTNOTIFICATIONSSETTING_DESC
#. - description: Description of the 'DefaultNotificationsSetting' policy.
#: id: 5378985487213287085 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'AskNotifications' will be used "
"and the user will be able to change it."
msgstr ""

#. IDS_POLICY_CHROMEFRAMECONTENTTYPES_DESC
#. - description: Description of the group of 'IDS_POLICY_CHROMEFRAMECONTENTTYPES' related policies.
#: id: 538108065117008131 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow %{PRODUCT_FRAME_NAME} to handle the following content types."
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTREQUIRECURTAIN_DESC
#. - description: Description of the 'RemoteAccessHostRequireCurtain' policy.
#: id: 5395271912574071439 (used in the following branches: trunk, dev)
msgid ""
"Enables curtaining of remote access hosts while a connection is in "
"progress.\n"
"\n"
"          If this setting is enabled, then hosts' physical input and output "
"devices are disabled while a remote connection is in progress.\n"
"\n"
"          If this setting is disabled or not set, then both local and remote"
" users can interact with the host when it is being shared."
msgstr ""

#. IDS_POLICY_IMPORTSEARCHENGINE_DESC
#. - description: Description of the 'ImportSearchEngine' policy.
#: id: 5423001109873148185 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy forces search engines to be imported from the current default "
"browser if enabled. If enabled, this policy also affects the import "
"dialog.\n"
"\n"
"      If disabled, the default search engine is not imported.\n"
"\n"
"      If it is not set, the user may be asked whether to import, or "
"importing may happen automatically."
msgstr ""

#. IDS_POLICY_ENABLEMEMORYINFO_DESC
#. - description: Description of the 'EnableMemoryInfo' policy.
#: id: 5457296720557564923 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows pages to access JavaScript memory usage statistics.\n"
"\n"
"      This settings makes the memory statistics from the Developer Tools "
"Profiles panel available to the web page itself."
msgstr ""

#. IDS_POLICY_CHROMEFRAMERENDERERSETTINGS_DESC
#. - description: Description of the 'ChromeFrameRendererSettings' policy.
#: id: 5457924070961220141 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to configure the default HTML renderer when %{PRODUCT_FRAME_NAME}"
" is installed.\n"
"          The default setting used when this policy is left not set is to "
"allow the host browser do the rendering, but you can optionally override "
"this and have %{PRODUCT_FRAME_NAME} render HTML pages by default."
msgstr ""

#. IDS_POLICY_COOKIESALLOWEDFORURLS_DESC
#. - description: Description of the 'CookiesAllowedForUrls' policy.
#: id: 5469484020713359236 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to set cookies.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_IMAGESBLOCKEDFORURLS_CAPTION
#. - description: Caption of the 'ImagesBlockedForUrls' policy.
#: id: 5469825884154817306 (used in the following branches: trunk, dev, beta, stable)
msgid "Block images on these sites"
msgstr ""

#. IDS_POLICY_PRINTINGENABLED_CAPTION
#. - description: Caption of the 'PrintingEnabled' policy.
#: id: 5475361623548884387 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable printing"
msgstr ""

#. IDS_POLICY_SEARCHSUGGESTENABLED_DESC
#. - description: Description of the 'SearchSuggestEnabled' policy.
#: id: 5493552890659553833 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables search suggestions in %{PRODUCT_NAME}'s Omnibox and prevents users "
"from changing this setting.\n"
"\n"
"      If you enable this setting, search suggestions are used.\n"
"\n"
"      If you disable this setting, search suggestions are never used.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_DEVICEIDLELOGOUTTIMEOUT_DESC
#. - description: Description of the 'DeviceIdleLogoutTimeout' policy.
#: id: 5499375345075963939 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is active in retail mode only.\n"
"\n"
"      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.\n"
"\n"
"      The policy value should be specified in milliseconds."
msgstr ""

#. IDS_POLICY_BOOKMARKBARENABLED_CAPTION
#. - description: Caption of the 'BookmarkBarEnabled' policy.
#: id: 5511702823008968136 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable Bookmark Bar"
msgstr ""

#. IDS_POLICY_HOMEPAGELOCATION_LABEL
#. - description: Label of the 'HomepageLocation' policy.
#: id: 5512418063782665071 (used in the following branches: trunk, dev, beta, stable)
msgid "Home page URL"
msgstr ""

#. IDS_POLICY_AUTHNEGOTIATEDELEGATEWHITELIST_CAPTION
#. - description: Caption of the 'AuthNegotiateDelegateWhitelist' policy.
#: id: 5535973522252703021 (used in the following branches: trunk, dev, beta, stable)
msgid "Kerberos delegation server whitelist"
msgstr ""

#. IDS_POLICY_PASSWORDMANAGER_DESC
#. - description: Description of the group of 'IDS_POLICY_PASSWORDMANAGER' related policies.
#: id: 5564962323737505851 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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."
msgstr ""

#. IDS_POLICY_EDITBOOKMARKSENABLED_CAPTION
#. - description: Caption of the 'EditBookmarksEnabled' policy.
#: id: 557658534286111200 (used in the following branches: trunk, dev, beta, stable)
msgid "Enables or disables bookmark editing"
msgstr ""

#. IDS_POLICY_ENUM_RESTOREONSTARTUPISLASTSESSION_CAPTION
#. - description: Label in a 'RestoreOnStartupGroup' dropdown menu for selecting a 'RestoreOnStartup' of 'RestoreOnStartupIsLastSession'
#: id: 5630352020869108293 (used in the following branches: trunk, dev, beta, stable)
msgid "Restore the last session"
msgstr ""

#. IDS_POLICY_COOKIESALLOWEDFORURLS_CAPTION
#. - description: Caption of the 'CookiesAllowedForUrls' policy.
#: id: 5645779841392247734 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow cookies on these sites"
msgstr ""

#. IDS_POLICY_DOC_DESCRIPTION
#. - description: Caption text of the 'description text' in the summary chart of a policy in the generated documentation
#: id: 5765780083710877561 (used in the following branches: trunk, dev, beta, stable)
msgid "Description:"
msgstr ""

#. IDS_POLICY_ENUM_DEVCHANNEL_CAPTION
#. - description: Label in a 'ChromeOsReleaseChannel' dropdown menu for selecting 'DevChannel'
#: id: 5770738360657678870 (used in the following branches: trunk, dev, beta, stable)
msgid "Dev channel (may be unstable)"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERSEARCHURL_CAPTION
#. - description: Caption of the 'DefaultSearchProviderSearchURL' policy.
#: id: 5774856474228476867 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider search URL"
msgstr ""

#. IDS_POLICY_ENUM_ASKNOTIFICATIONS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultNotificationsSetting' of 'AskNotifications'
#: id: 5776485039795852974 (used in the following branches: trunk, dev, beta, stable)
msgid "Ask every time a site wants to show desktop notifications"
msgstr ""

#. IDS_POLICY_INCOGNITOMODEAVAILABILITY_DESC
#. - description: Description of the 'IncognitoModeAvailability' policy.
#: id: 5826047473100157858 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies whether the user may open pages in Incognito mode in "
"%{PRODUCT_NAME}.\n"
"\n"
"      If 'Enabled' is selected or the policy is left unset, pages may be "
"opened in Incognito mode.\n"
"\n"
"      If 'Disabled' is selected, pages may not be opened in Incognito "
"mode.\n"
"\n"
"      If 'Forced' is selected, pages may be opened ONLY in Incognito mode."
msgstr ""

#. IDS_POLICY_OPENNETWORKCONFIGURATION_CAPTION
#. - description: Caption of the 'OpenNetworkConfiguration' policy.
#: id: 5868414965372171132 (used in the following branches: trunk, dev, beta, stable)
msgid "User-level network configuration"
msgstr ""

#. IDS_POLICY_DEFAULTCOOKIESSETTING_CAPTION
#. - description: Caption of the 'DefaultCookiesSetting' policy.
#: id: 5883015257301027298 (used in the following branches: trunk, dev, beta, stable)
msgid "Default cookies setting"
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTTALKGADGETPREFIX_DESC
#. - description: Description of the 'RemoteAccessHostTalkGadgetPrefix' policy.
#: id: 5887414688706570295 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the TalkGadget prefix that will be used by remote access hosts "
"and prevents users from changing it.\n"
"\n"
"          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'.\n"
"\n"
"          If this setting is enabled, then hosts will use the custom domain "
"name when accessing the TalkGadget instead of the default domain name.\n"
"\n"
"          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.\n"
"\n"
"          Remote access clients are not affected by this policy setting. "
"They will always use 'chromoting-client.talkgadget.google.com' to access the"
" TalkGadget."
msgstr ""

#. IDS_POLICY_PASSWORDMANAGERALLOWSHOWPASSWORDS_CAPTION
#. - description: Caption of the 'PasswordManagerAllowShowPasswords' policy.
#: id: 5912364507361265851 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow users to show passwords in Password Manager"
msgstr ""

#. IDS_POLICY_ENUM_BETACHANNEL_CAPTION
#. - description: Label in a 'ChromeOsReleaseChannel' dropdown menu for selecting 'BetaChannel'
#: id: 5946082169633555022 (used in the following branches: trunk, dev, beta, stable)
msgid "Beta channel"
msgstr ""

#. IDS_POLICY_CHROMEFRAMECONTENTTYPES_DESC
#. - description: Description of the 'ChromeFrameContentTypes' policy.
#: id: 6009903244351574348 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allow %{PRODUCT_FRAME_NAME} to handle the listed content types.\n"
"\n"
"          If this policy is not set the default renderer will be used for "
"all sites as specified by the 'ChromeFrameRendererSettings' policy."
msgstr ""

#. IDS_POLICY_RESTOREONSTARTUP_CAPTION
#. - description: Caption of the 'RestoreOnStartup' policy.
#: id: 6022948604095165524 (used in the following branches: trunk, dev, beta, stable)
msgid "Action on startup"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERINSTANTURL_CAPTION
#. - description: Caption of the 'DefaultSearchProviderInstantURL' policy.
#: id: 602728333950205286 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider instant URL"
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTFIREWALLTRAVERSAL_CAPTION
#. - description: Caption of the 'RemoteAccessHostFirewallTraversal' policy.
#: id: 6036523166753287175 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable firewall traversal from remote access host"
msgstr ""

#. IDS_POLICY_ENUM_BLOCKNOTIFICATIONS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultNotificationsSetting' of 'BlockNotifications'
#: id: 6074963268421707432 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to show desktop notifications"
msgstr ""

#. IDS_POLICY_EXTERNALSTORAGEDISABLED_DESC
#. - description: Description of the 'ExternalStorageDisabled' policy.
#: id: 6076008833763548615 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disable mounting of external storage.\n"
"\n"
"      When this policy is set to true, external storage will not be "
"available in the file browser.\n"
"\n"
"      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.\n"
"\n"
"      If this setting is disabled or not configured then users can use all "
"supported types of external storage on their device."
msgstr ""

#. IDS_POLICY_PASSWORDMANAGERENABLED_CAPTION
#. - description: Caption of the 'PasswordManagerEnabled' policy.
#: id: 6106630674659980926 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable the password manager"
msgstr ""

#. IDS_POLICY_DOC_DEPRECATED
#. - description: Text appended in parentheses to the policy name to indicate that it has been deprecated
#: id: 6114416803310251055 (used in the following branches: trunk, dev, beta, stable)
msgid "deprecated"
msgstr ""

#. IDS_POLICY_JAVASCRIPTALLOWEDFORURLS_DESC
#. - description: Description of the 'JavaScriptAllowedForUrls' policy.
#: id: 6145799962557135888 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to run JavaScript.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_PROXYBYPASSLIST_LABEL
#. - description: Label of the 'ProxyBypassList' policy.
#: id: 6157537876488211233 (used in the following branches: trunk, dev, beta, stable)
msgid "Comma-separated list of proxy bypass rules"
msgstr ""

#. IDS_POLICY_DEVICETARGETVERSIONPREFIX_DESC
#. - description: Description of the 'DeviceTargetVersionPrefix' policy.
#: id: 6177482277304066047 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Sets a target version for Auto Updates.\n"
"\n"
"      Specifies the prefix of a target version %{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:\n"
"\n"
"      \"\" (or not configured): update to latest version available.\n"
"      \"1412.\": update to any minor version of 1412 (e.g. 1412.24.34 or "
"1412.60.2)\n"
"      \"1412.2.\": update to any minor version of 1412.2 (e.g. 1412.2.34 or "
"1412.2.2)\n"
"      \"1412.24.34\": update to this specific version only"
msgstr ""

#. IDS_POLICY_DEFAULTPOPUPSSETTING_CAPTION
#. - description: Caption of the 'DefaultPopupsSetting' policy.
#: id: 6190022522129724693 (used in the following branches: trunk, dev, beta, stable)
msgid "Default popups setting"
msgstr ""

#. IDS_POLICY_DOWNLOADDIRECTORY_CAPTION
#. - description: Caption of the 'DownloadDirectory' policy.
#. IDS_POLICY_DOWNLOADDIRECTORY_LABEL
#. - description: Label of the 'DownloadDirectory' policy.
#: id: 6233173491898450179 (used in the following branches: trunk, dev, beta, stable)
msgid "Set download directory"
msgstr ""

#. IDS_POLICY_RESTOREONSTARTUPURLS_CAPTION
#. - description: Caption of the 'RestoreOnStartupURLs' policy.
#: id: 6244210204546589761 (used in the following branches: trunk, dev, beta, stable)
msgid "URLs to open on startup"
msgstr ""

#. IDS_POLICY_ENABLEAUTHNEGOTIATEPORT_DESC
#. - description: Description of the 'EnableAuthNegotiatePort' policy.
#: id: 6258193603492867656 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies whether the generated Kerberos SPN should include a non-standard "
"port.\n"
"\n"
"          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.\n"
"\n"
"          If you disable this setting or leave it not set, the generated "
"Kerberos SPN will not include a port in any case."
msgstr ""

#. IDS_POLICY_CHROMEOSRELEASECHANNELDELEGATED_CAPTION
#. - description: Caption of the 'ChromeOsReleaseChannelDelegated' policy.
#: id: 6367755442345892511 (used in the following branches: trunk, dev, beta, stable)
msgid "Whether the release channel should be configurable by the user"
msgstr ""

#. IDS_POLICY_HOMEPAGELOCATION_CAPTION
#. - description: Caption of the 'HomepageLocation' policy.
#: id: 6368011194414932347 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure the home page URL"
msgstr ""

#. IDS_POLICY_JAVASCRIPTALLOWEDFORURLS_CAPTION
#. - description: Caption of the 'JavaScriptAllowedForUrls' policy.
#: id: 6368403635025849609 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow JavaScript on these sites"
msgstr ""

#. IDS_POLICY_DEVICEAUTOUPDATEDISABLED_DESC
#. - description: Description of the 'DeviceAutoUpdateDisabled' policy.
#: id: 6373222873250380826 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables automatic updates when set to True.\n"
"\n"
"      %{PRODUCT_OS_NAME} devices automatically check for updates when this "
"setting is not configured or set to False."
msgstr ""

#. IDS_POLICY_AUTOFILLENABLED_DESC
#. - description: Description of the 'AutoFillEnabled' policy.
#: id: 6392973646875039351 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables %{PRODUCT_NAME}'s AutoFill feature and allows users to auto complete"
" web forms using previously stored information such as address or credit "
"card information.\n"
"\n"
"      If you disable this setting, AutoFill will be inaccessible to users.\n"
"\n"
"      If you enable this setting or do not set a value, AutoFill will remain"
" under the control of the user. This will allow them to configure AutoFill "
"profiles and to switch AutoFill on or off at their own discretion."
msgstr ""

#. IDS_POLICY_COOKIESBLOCKEDFORURLS_DESC
#. - description: Description of the 'CookiesBlockedForUrls' policy.
#: id: 6417861582779909667 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are not "
"allowed to set cookies.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_PLUGINSBLOCKEDFORURLS_DESC
#. - description: Description of the 'PluginsBlockedForUrls' policy.
#: id: 6467433935902485842 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are not "
"allowed to run plugins.\n"
"\n"
"          If this policy is left not set the global default value will be "
"used for all sites either from the 'DefaultPluginsSetting' policy if it is "
"set, or the user's personal configuration otherwise."
msgstr ""

#. IDS_POLICY_DISABLE3DAPIS_DESC
#. - description: Description of the 'Disable3DAPIs' policy.
#: id: 649418342108050703 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disable support for 3D graphics APIs.\n"
"\n"
"      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.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_PROXYMODE_DESC
#. - description: Description of the 'ProxyMode' policy.
#: id: 6513756852541213407 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify the proxy server used by %{PRODUCT_NAME} and prevents "
"users from changing proxy settings.\n"
"\n"
"          If you choose to never use a proxy server and always connect "
"directly, all other options are ignored.\n"
"\n"
"          If you choose to use system proxy settings or auto detect the "
"proxy server, all other options are ignored.\n"
"\n"
"          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'.\n"
"\n"
"          If you choose to use a .pac proxy script, you must specify the URL"
" to the script in 'URL to a proxy .pac file'.\n"
"\n"
"          For detailed examples, visit:\n"
"          %{PROXY_HELP_URL}\n"
"\n"
"          If you enable this setting, %{PRODUCT_NAME} ignores all "
"proxy-related options specified from the command line.\n"
"\n"
"          Leaving this policy not set will allow the users to choose the "
"proxy settings on their own."
msgstr ""

#. IDS_POLICY_IMPORTSEARCHENGINE_CAPTION
#. - description: Caption of the 'ImportSearchEngine' policy.
#. IDS_POLICY_IMPORTSEARCHENGINE_LABEL
#. - description: Label of the 'ImportSearchEngine' policy.
#: id: 6520802717075138474 (used in the following branches: trunk, dev, beta, stable)
msgid "Import search engines from default browser on first run"
msgstr ""

#. IDS_POLICY_CHROMEOSRELEASECHANNELDELEGATED_DESC
#. - description: Description of the 'ChromeOsReleaseChannelDelegated' policy.
#: id: 6544897973797372144 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINSBYVERSION_CAPTION
#. - description: Caption of the 'DisabledPluginsByVersion' policy.
#: id: 6635365038304268275 (used in the following branches: trunk)
msgid ""
"Specify a list of plugins and specific versions of each plugin that are "
"disabled."
msgstr ""

#. IDS_POLICY_DISABLE3DAPIS_CAPTION
#. - description: Caption of the 'Disable3DAPIs' policy.
#: id: 6641981670621198190 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable support for 3D graphics APIs"
msgstr ""

#. IDS_POLICY_DEVICEUPDATESCATTERFACTOR_DESC
#. - description: Description of the 'DeviceUpdateScatterFactor' policy.
#: id: 6658245400435704251 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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."
msgstr ""

#. IDS_POLICY_PROXYSERVERMODE_DESC
#. - description: Description of the 'ProxyServerMode' policy.
#: id: 6672934768721876104 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is deprecated, use ProxyMode instead.\n"
"\n"
"          Allows you to specify the proxy server used by %{PRODUCT_NAME} and"
" prevents users from changing proxy settings.\n"
"\n"
"          If you choose to never use a proxy server and always connect "
"directly, all other options are ignored.\n"
"\n"
"          If you choose to use system proxy settings or auto detect the "
"proxy server, all other options are ignored.\n"
"\n"
"          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'.\n"
"\n"
"          For detailed examples, visit:\n"
"          %{PROXY_HELP_URL}\n"
"\n"
"          If you enable this setting, %{PRODUCT_NAME} ignores all "
"proxy-related options specified from the command line.\n"
"\n"
"          Leaving this policy not set will allow the users to choose the "
"proxy settings on their own."
msgstr ""

#. IDS_POLICY_DISABLEPLUGINFINDER_DESC
#. - description: Description of the 'DisablePluginFinder' policy.
#: id: 6693751878507293182 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"If you set this setting to enabled the automatic search and installation of "
"missing plugins will be disabled in %{PRODUCT_NAME}.\n"
"\n"
"      Setting this option to disabled or leave it not set the plugin finder "
"will be active."
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTREQUIRETWOFACTOR_CAPTION
#. - description: Caption of the 'RemoteAccessHostRequireTwoFactor' policy.
#: id: 6699880231565102694 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable two-factor authentication for remote access hosts"
msgstr ""

#. IDS_POLICY_GDATADISABLED_CAPTION
#. - description: Caption of the 'GDataDisabled' policy.
#: id: 6771644447620682565 (used in the following branches: trunk, dev, beta, stable)
msgid "Disables GData"
msgstr ""

#. IDS_POLICY_EXTENSIONS_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_EXTENSIONS' related policies.
#: id: 6786747875388722282 (used in the following branches: trunk, dev, beta, stable)
msgid "Extensions"
msgstr ""

#. IDS_POLICY_JAVASCRIPTBLOCKEDFORURLS_CAPTION
#. - description: Caption of the 'JavaScriptBlockedForUrls' policy.
#: id: 6810445994095397827 (used in the following branches: trunk, dev, beta, stable)
msgid "Block JavaScript on these sites"
msgstr ""

#. IDS_POLICY_AUTHSCHEMES_CAPTION
#. - description: Caption of the 'AuthSchemes' policy.
#: id: 681446116407619279 (used in the following branches: trunk, dev, beta, stable)
msgid "Supported authentication schemes"
msgstr ""

#. IDS_POLICY_ENUM_PROXYAUTODETECT_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyMode' of 'ProxyAutoDetect'
#. IDS_POLICY_ENUM_PROXYSERVERAUTODETECT_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyServerMode' of 'ProxyServerAutoDetect'
#: id: 6899705656741990703 (used in the following branches: trunk, dev, beta, stable)
msgid "Auto detect proxy settings"
msgstr ""

#. IDS_POLICY_DEVICESTARTUPURLS_DESC
#. - description: Description of the 'DeviceStartUpUrls' policy.
#: id: 6903814433019432303 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is active in retail mode only.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDER_DESC
#. - description: Description of the group of 'IDS_POLICY_DEFAULTSEARCHPROVIDER' related policies.
#: id: 6908640907898649429 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the default search provider. You can specify the default search "
"provider that the user will use or choose to disable default search."
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERNAME_DESC
#. - description: Description of the 'DefaultSearchProviderName' policy.
#: id: 6923366716660828830 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          This policy is only considered if the "
"'DefaultSearchProviderEnabled' policy is enabled."
msgstr ""

#. IDS_POLICY_SYNCDISABLED_CAPTION
#. - description: Caption of the 'SyncDisabled' policy.
#: id: 6931242315485576290 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable synchronization of data with Google"
msgstr ""

#. IDS_POLICY_MAXCONNECTIONSPERPROXY_DESC
#. - description: Description of the 'MaxConnectionsPerProxy' policy.
#: id: 6936894225179401731 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the maximal number of simultaneous connections to the proxy "
"server.\n"
"\n"
"      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.\n"
"\n"
"      The value of this policy should be lower than 100 and higher than 6 "
"and the default value is 32.\n"
"\n"
"      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.\n"
"\n"
"      If this policy is left not set the default value will be used which is"
" 32."
msgstr ""

#. IDS_POLICY_DOC_MAC_LINUX_PREF_NAME
#. - description: Caption text of the field 'mac/linux preference name' in the summary chart of a policy in the generated documentation
#: id: 6943577887654905793 (used in the following branches: trunk, dev, beta, stable)
msgid "Mac/Linux preference name:"
msgstr ""

#. IDS_POLICY_ENTERPRISEWEBSTORENAME_DESC
#. - description: Description of the 'EnterpriseWebStoreName' policy.
#: id: 6985168562472482191 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"The name of the enterprise web store, which will appear underneath the app "
"icon on the new tab page. This setting has no effect if "
"EnterpriseWebStoreURL is not set.\n"
"\n"
"      If this setting is disabled, the enterprise web store app (if it "
"exists) will be labeled with its URL."
msgstr ""

#. IDS_POLICY_IMPORTSAVEDPASSWORDS_DESC
#. - description: Description of the 'ImportSavedPasswords' policy.
#: id: 7003334574344702284 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy forces the saved passwords to be imported from the previous "
"default browser if enabled. If enabled, this policy also affects the import "
"dialog.\n"
"\n"
"      If disabled, the saved passwords are not imported.\n"
"\n"
"      If it is not set, the user may be asked whether to import, or "
"importing may happen automatically."
msgstr ""

#. IDS_POLICY_MAC_CHROME_PREFERENCES
#. - description: A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited
#: id: 7003746348783715221 (used in the following branches: trunk, dev, beta, stable)
msgid "%{PRODUCT_NAME} preferences"
msgstr ""

#. IDS_POLICY_CONTENTSETTINGS_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_CONTENTSETTINGS' related policies.
#: id: 7006788746334555276 (used in the following branches: trunk, dev, beta, stable)
msgid "Content Settings"
msgstr ""

#. IDS_POLICY_DOC_EXAMPLE_VALUE
#. - description: Caption text of the field 'example value' in the summary chart of a policy in the generated documentation
#: id: 7040229947030068419 (used in the following branches: trunk, dev, beta, stable)
msgid "Example value:"
msgstr ""

#. IDS_POLICY_CLOUDPRINTSUBMITENABLED_DESC
#. - description: Description of the 'CloudPrintSubmitEnabled' policy.
#: id: 7049373494483449255 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables %{PRODUCT_NAME} to submit documents to %{CLOUD_PRINT_NAME} for "
"printing.  NOTE: This only affects %{CLOUD_PRINT_NAME} support in "
"%{PRODUCT_NAME}.  It does not prevent users from submitting print jobs on "
"web sites.\n"
"\n"
"      If this setting is enabled or not configured, users can print to "
"%{CLOUD_PRINT_NAME} from the %{PRODUCT_NAME} print dialog.\n"
"\n"
"      If this setting is disabled, users cannot print to %{CLOUD_PRINT_NAME}"
" from the %{PRODUCT_NAME} print dialog"
msgstr ""

#. IDS_POLICY_IMPORTBOOKMARKS_DESC
#. - description: Description of the 'ImportBookmarks' policy.
#: id: 7053678646221257043 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy forces bookmarks to be imported from the current default browser"
" if enabled. If enabled, this policy also affects the import dialog.\n"
"\n"
"      If disabled, no bookmarks are imported.\n"
"\n"
"      If it is not set, the user may be asked whether to import, or "
"importing may happen automatically."
msgstr ""

#. IDS_POLICY_POPUPSALLOWEDFORURLS_CAPTION
#. - description: Caption of the 'PopupsAllowedForUrls' policy.
#: id: 7063895219334505671 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow popups on these sites"
msgstr ""

#. IDS_POLICY_ENUM_ALLOWNOTIFICATIONS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultNotificationsSetting' of 'AllowNotifications'
#: id: 706669471845501145 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow sites to show desktop notifications"
msgstr ""

#. IDS_POLICY_POPUPSBLOCKEDFORURLS_CAPTION
#. - description: Caption of the 'PopupsBlockedForUrls' policy.
#: id: 7079519252486108041 (used in the following branches: trunk, dev, beta, stable)
msgid "Block popups on these sites"
msgstr ""

#. IDS_POLICY_ALWAYSAUTHORIZEPLUGINS_CAPTION
#. - description: Caption of the 'AlwaysAuthorizePlugins' policy.
#: id: 7091198954851103976 (used in the following branches: trunk, dev, beta, stable)
msgid "Always runs plugins that require authorization"
msgstr ""

#. IDS_POLICY_PINNEDLAUNCHERAPPS_DESC
#. - description: Description of the 'PinnedLauncherApps' policy.
#: id: 7128918109610518786 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Lists the application identifiers %{PRODUCT_OS_NAME} shows as pinned apps in"
" the launcher bar.\n"
"\n"
"      If this policy is configured, the set of applications is fixed and "
"can't be changed by the user.\n"
"\n"
"      If this policy is left unset, the user may change the list of pinned "
"apps in the launcher."
msgstr ""

#. IDS_POLICY_BACKGROUNDMODEENABLED_DESC
#. - description: Description of the 'BackgroundModeEnabled' policy.
#: id: 7151201297958662315 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Determines whether a %{PRODUCT_NAME} process is started on OS login and "
"keeps running when the last browser window is closed, allowing background "
"apps to remain active. The background process displays an icon in the system"
" tray and can always be closed from there.\n"
"\n"
"      If this policy is set to True, background mode is enabled and cannot "
"be controlled by the user in the browser settings.\n"
"\n"
"      If this policy is set to False, background mode is disabled and cannot"
" be controlled by the user in the browser settings.\n"
"\n"
"      If this policy is left unset, background mode is initially disabled "
"and can be controlled by the user in the browser settings."
msgstr ""

#. IDS_POLICY_ENUM_DISABLED_CAPTION
#. - description: Label in a 'IncognitoModeAvailability' dropdown menu for selecting 'Disabled'
#: id: 7161193985878519056 (used in the following branches: trunk, dev, beta, stable)
msgid "Incognito mode disabled."
msgstr ""

#. IDS_POLICY_DISKCACHEDIR_DESC
#. - description: Description of the 'DiskCacheDir' policy.
#: id: 717221064259627503 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the directory that %{PRODUCT_NAME} will use for storing cached "
"files on the disk.\n"
"\n"
"      If you set this policy, %{PRODUCT_NAME} will use the provided "
"directory regardless whether the user has specified the '--disk-cache-dir' "
"flag or not.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_DEVICEUPDATEALLOWEDCONNECTIONTYPES_CAPTION
#. - description: Caption of the 'DeviceUpdateAllowedConnectionTypes' policy.
#: id: 718956142899066210 (used in the following branches: trunk, dev, beta, stable)
msgid "Connection types allowed for updates"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERNAME_CAPTION
#. - description: Caption of the 'DefaultSearchProviderName' policy.
#: id: 7194407337890404814 (used in the following branches: trunk, dev, beta, stable)
msgid "Default search provider name"
msgstr ""

#. IDS_POLICY_ENUM_ALLOWCOOKIES_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultCookiesSetting' of 'AllowCookies'
#: id: 7202926611616207807 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow all sites to set local data."
msgstr ""

#. IDS_POLICY_DEVICEUSERWHITELIST_DESC
#. - description: Description of the 'DeviceUserWhitelist' policy.
#: id: 7227967227357489766 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Defines the list of users that are allowed to login to the device. Entries "
"are of the form %{USER_WHITELIST_ENTRY_FORMAT}, such as "
"%{USER_WHITELIST_ENTRY_EXAMPLE}. To allow arbitrary users on a domain, use "
"entries of the form %{USER_WHITELIST_ENTRY_WILDCARD}.\n"
"\n"
"      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 %{DEVICEALLOWNEWUSERS_POLICY_NAME} policy to be configured "
"appropriately."
msgstr ""

#. IDS_POLICY_HOMEPAGELOCATION_DESC
#. - description: Description of the 'HomepageLocation' policy.
#: id: 726580293849003996 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the default home page URL in %{PRODUCT_NAME} and prevents users "
"from changing it.\n"
"\n"
"          The home page is the page opened by the Home button. The pages "
"that open on startup are controlled by the RestoreOnStartup policies.\n"
"\n"
"          The home page 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 is"
" ignored.\n"
"\n"
"          If you enable this setting, users cannot change their home page "
"URL in %{PRODUCT_NAME}, but they can still can choose the New Tab Page as "
"their home page.\n"
"\n"
"          Leaving this policy not set will allow the user to choose his home"
" page on his own if HomepageIsNewTabPage is not set too."
msgstr ""

#. IDS_POLICY_IMPORTHOMEPAGE_CAPTION
#. - description: Caption of the 'ImportHomepage' policy.
#. IDS_POLICY_IMPORTHOMEPAGE_LABEL
#. - description: Label of the 'ImportHomepage' policy.
#: id: 7271085005502526897 (used in the following branches: trunk, dev, beta, stable)
msgid "Import of homepage from default browser on first run"
msgstr ""

#. IDS_POLICY_DEFAULTPLUGINSSETTING_DESC
#. - description: Description of the 'DefaultPluginsSetting' policy.
#: id: 7271483295221961083 (used in the following branches: beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'AllowPlugins' will be used and "
"the user will be able to change it."
msgstr ""

#. IDS_POLICY_DOC_RECOMMENDED
#. - description: Text appended in parentheses next to the policies top-level container to indicate that those policies are of the Recommended level
#: id: 7298195798382681320 (used in the following branches: trunk, dev, beta, stable)
msgid "Recommended"
msgstr ""

#. IDS_POLICY_ADDITIONALLAUNCHPARAMETERS_CAPTION
#. - description: Caption of the 'AdditionalLaunchParameters' policy.
#: id: 7323896582714668701 (used in the following branches: trunk, dev, beta, stable)
msgid "Additional command line parameters for %{PRODUCT_NAME}"
msgstr ""

#. IDS_POLICY_HIDEWEBSTOREPROMO_DESC
#. - description: Description of the 'HideWebStorePromo' policy.
#: id: 7331962793961469250 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"When set to True, promotions for Chrome Web Store apps will not appear on "
"the new tab page.\n"
"\n"
"      Setting this option to False or leaving it not set will make the "
"promotions for Chrome Web Store apps appear on the new tab page"
msgstr ""

#. IDS_POLICY_REPORTDEVICEACTIVITYTIMES_CAPTION
#. - description: Caption of the 'ReportDeviceActivityTimes' policy.
#: id: 7340034977315324840 (used in the following branches: trunk, dev, beta, stable)
msgid "Report device activity times"
msgstr ""

#. IDS_POLICY_DISABLESPDY_DESC
#. - description: Description of the 'DisableSpdy' policy.
#: id: 7381326101471547614 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables use of the SPDY protocol in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is enabled the SPDY protocol will not be available in "
"%{PRODUCT_NAME}.\n"
"\n"
"      Setting this policy to disabled will allow the usage of SPDY.\n"
"\n"
"      If this policy is left not set, SPDY will be available."
msgstr ""

#. IDS_POLICY_JAVASCRIPTENABLED_DESC
#. - description: Description of the 'JavascriptEnabled' policy.
#: id: 7393895128271703858 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is deprecated, please use DefaultJavaScriptSetting instead.\n"
"\n"
"      Enables JavaScript in %{PRODUCT_NAME} and prevents users from changing"
" this setting.\n"
"\n"
"      If this setting is enabled or not configured, web pages can use "
"JavaScript.\n"
"\n"
"      If this setting is disabled, web pages cannot use JavaScript.\n"
"\n"
"      If this policy is left not set the default value will be used which is"
" enabled and the user will be able to change it.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_COOKIESSESSIONONLYFORURLS_DESC
#. - description: Description of the 'CookiesSessionOnlyForUrls' policy.
#: id: 7412982067535265896 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to set session only cookies.\n"
"\n"
"          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.\n"
"\n"
"          If the \"RestoreOnStartup\" policy is set to restore URLs from "
"previous sessions this policy will not be respectred and cookies will be "
"stored permanently for those sites."
msgstr ""

#. IDS_POLICY_RESTOREONSTARTUP_DESC
#. - description: Description of the 'RestoreOnStartup' policy.
#: id: 741903087521737762 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify the behavior on startup.\n"
"\n"
"          If you choose 'Open New Tab Page' the New Tab Page will always be "
"opened when you start %{PRODUCT_NAME}.\n"
"\n"
"          If you choose 'Restore the last session', the URLs that were open "
"last time %{PRODUCT_NAME} was closed will be reopened and the browsing "
"session will be restored as it was left.\n"
"          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).\n"
"\n"
"          If you choose 'Open a list of URLs', the list of 'URLs to open on "
"startup' will be opened when a user starts %{PRODUCT_NAME}.\n"
"\n"
"          If you enable this setting, users cannot change or override it in "
"%{PRODUCT_NAME}.\n"
"\n"
"          Disabling this setting is equvalent to leaving it not configured. "
"The user will still be able to change it in %{PRODUCT_NAME}."
msgstr ""

#. IDS_POLICY_MEDIACACHESIZE_CAPTION
#. - description: Caption of the 'MediaCacheSize' policy.
#: id: 7421483919690710988 (used in the following branches: trunk, dev, beta, stable)
msgid "Set media disk cache size in bytes"
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINSEXCEPTIONS_LABEL
#. - description: Label of the 'DisabledPluginsExceptions' policy.
#: id: 7424751532654212117 (used in the following branches: trunk, dev, beta, stable)
msgid "List of exceptions to the list of disabled plugins"
msgstr ""

#. IDS_POLICY_INSTANTENABLED_CAPTION
#. - description: Caption of the 'InstantEnabled' policy.
#: id: 7433714841194914373 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable Instant"
msgstr ""

#. IDS_POLICY_ALLOWCROSSORIGINAUTHPROMPT_CAPTION
#. - description: Caption of the 'AllowCrossOriginAuthPrompt' policy.
#: id: 7443616896860707393 (used in the following branches: trunk, dev, beta, stable)
msgid "Cross-origin HTTP Basic Auth prompts"
msgstr ""

#. IDS_POLICY_PASSWORDMANAGERENABLED_DESC
#. - description: Description of the 'PasswordManagerEnabled' policy.
#: id: 7447786363267535722 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables saving passwords and using saved passwords in %{PRODUCT_NAME}.\n"
"\n"
"          If you enable this setting, users can have %{PRODUCT_NAME} "
"memorize passwords and provide them automatically the next time they log in "
"to a site.\n"
"\n"
"          If you disable this setting, users are not able to save passwords "
"or use already saved passwords.\n"
"\n"
"          If you enable or disable this setting, users cannot change or "
"override this setting in %{PRODUCT_NAME}.\n"
"\n"
"          If this policy is left not set, this will be enabled but the user "
"will be able to change it."
msgstr ""

#. IDS_POLICY_GDATA_DESC
#. - description: Description of the group of 'IDS_POLICY_GDATA' related policies.
#: id: 7459381849362539054 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure GData in %{PRODUCT_OS_NAME}."
msgstr ""

#. IDS_POLICY_DOC_WIN_REG_LOC
#. - description: Caption text of the field 'windows registry location' in the summary chart of a policy in the generated documentation
#: id: 7468416082528382842 (used in the following branches: trunk, dev, beta, stable)
msgid "Windows registry location:"
msgstr ""

#. IDS_POLICY_SEARCHSUGGESTENABLED_CAPTION
#. - description: Caption of the 'SearchSuggestEnabled' policy.
#: id: 7469554574977894907 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable search suggestions"
msgstr ""

#. IDS_POLICY_POPUPSALLOWEDFORURLS_DESC
#. - description: Description of the 'PopupsAllowedForUrls' policy.
#: id: 7529100000224450960 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to open popups.\n"
"\n"
"          If this policy is left not set the global default value will be "
"used for all sites either from the 'DefaultPopupsSetting' policy if it is "
"set, or the user's personal configuration otherwise."
msgstr ""

#. IDS_POLICY_DEVICEUPDATESCATTERFACTOR_CAPTION
#. - description: Caption of the 'DeviceUpdateScatterFactor' policy.
#: id: 7529144158022474049 (used in the following branches: trunk, dev, beta, stable)
msgid "Auto update scatter factor"
msgstr ""

#. IDS_POLICY_INSTANTENABLED_DESC
#. - description: Description of the 'InstantEnabled' policy.
#: id: 7547044444554936129 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables %{PRODUCT_NAME}'s Instant feature and prevents users from changing "
"this setting.\n"
"\n"
"      If you enable this setting, %{PRODUCT_NAME} Instant is enabled.\n"
"\n"
"      If you disable this setting, %{PRODUCT_NAME} Instant is disabled.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting.\n"
"\n"
"      If this setting is left not set the user can decide to use this "
"function or not."
msgstr ""

#. IDS_POLICY_PLUGINSALLOWEDFORURLS_CAPTION
#. - description: Caption of the 'PluginsAllowedForUrls' policy.
#: id: 7567380065339179813 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow plugins on these sites"
msgstr ""

#. IDS_POLICY_DISABLEDSCHEMES_LABEL
#. - description: Label of the 'DisabledSchemes' policy.
#: id: 7614663184588396421 (used in the following branches: trunk, dev, beta, stable)
msgid "List of disabled protocol schemes"
msgstr ""

#. IDS_POLICY_CHROMEOSRELEASECHANNEL_DESC
#. - description: Description of the 'ChromeOsReleaseChannel' policy.
#: id: 7625444193696794922 (used in the following branches: trunk, dev, beta, stable)
msgid "Specifies the release channel that this device should be locked to."
msgstr ""

#. IDS_POLICY_GSSAPILIBRARYNAME_CAPTION
#. - description: Caption of the 'GSSAPILibraryName' policy.
#: id: 7632724434767231364 (used in the following branches: trunk, dev, beta, stable)
msgid "GSSAPI library name"
msgstr ""

#. IDS_POLICY_APPLICATIONLOCALEVALUE_DESC
#. - description: Description of the 'ApplicationLocaleValue' policy.
#: id: 7635471475589566552 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the application locale in %{PRODUCT_NAME} and prevents users from"
" changing the locale.\n"
"\n"
"      If you enable this setting, %{PRODUCT_NAME} uses the specified locale."
" If the configured locale is not supported, 'en-US' is used instead.\n"
"\n"
"      If this setting is disabled or not set, %{PRODUCT_NAME} uses either "
"the user-specified preferred locale (if configured), the system locale or "
"the fallback locale 'en-US'."
msgstr ""

#. IDS_POLICY_DEVICEDATAROAMINGENABLED_DESC
#. - description: Description of the 'DeviceDataRoamingEnabled' policy.
#: id: 7651739109954974365 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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 not available."
msgstr ""

#. IDS_POLICY_DOC_FEATURE_DYNAMIC_REFRESH
#. - description: The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart
#: id: 7683777542468165012 (used in the following branches: trunk, dev, beta, stable)
msgid "Dynamic Policy Refresh"
msgstr ""

#. IDS_POLICY_DEVICEMETRICSREPORTINGENABLED_DESC
#. - description: Description of the 'DeviceMetricsReportingEnabled' policy.
#: id: 7719251660743813569 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Controls whether usage metrics are reported back to Google. If set to true, "
"%{PRODUCT_OS_NAME} will report usage metrics. If not configured or set to "
"false, metrics reporting will be disabled."
msgstr ""

#. IDS_POLICY_ENABLEORIGINBOUNDCERTS_CAPTION
#. - description: Caption of the 'EnableOriginBoundCerts' policy.
#: id: 7736666549200541892 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable TLS domain-bound certificates extension"
msgstr ""

#. IDS_POLICY_REMOTEACCESSHOSTREQUIRETWOFACTOR_DESC
#. - description: Description of the 'RemoteAccessHostRequireTwoFactor' policy.
#: id: 7749402620209366169 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables two-factor authentication for remote access hosts instead of a "
"user-specified PIN.\n"
"\n"
"          If this setting is enabled, then users must provide a valid "
"two-factor code when accessing a host.\n"
"\n"
"          If this setting is disabled or not set, then two-factor will not "
"be enabled and the default behavior of having a user-defined PIN will be "
"used."
msgstr ""

#. IDS_POLICY_ENUM_RESTOREONSTARTUPISNEWTABPAGE_CAPTION
#. - description: Label in a 'RestoreOnStartupGroup' dropdown menu for selecting a 'RestoreOnStartup' of 'RestoreOnStartupIsNewTabPage'
#: id: 7750991880413385988 (used in the following branches: trunk, dev, beta, stable)
msgid "Open New Tab Page"
msgstr ""

#. IDS_POLICY_DISABLEDSCHEMES_DESC
#. - description: Description of the 'DisabledSchemes' policy.
#: id: 7754863709994542614 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables the listed protocol schemes in %{PRODUCT_NAME}.\n"
"\n"
"      URLs using a scheme from this list will not load and can not be "
"navigated to.\n"
"\n"
"      If this policy is left not set or the list is empty all schemes will "
"be accessible in %{PRODUCT_NAME}."
msgstr ""

#. IDS_POLICY_DEFAULTIMAGESSETTING_DESC
#. - description: Description of the 'DefaultImagesSetting' policy.
#: id: 7763311235717725977 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'AllowImages' will be used and the"
" user will be able to change it."
msgstr ""

#. IDS_POLICY_ENUM_PROXYSERVERUSESYSTEM_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyServerMode' of 'ProxyServerUseSystem'
#. IDS_POLICY_ENUM_PROXYUSESYSTEM_CAPTION
#. - description: Label in a 'Proxy' dropdown menu for selecting a 'ProxyMode' of 'ProxyUseSystem'
#: id: 7774768074957326919 (used in the following branches: trunk, dev, beta, stable)
msgid "Use system proxy settings"
msgstr ""

#. IDS_POLICY_USERDATADIR_DESC
#. - description: Description of the 'UserDataDir' policy.
#: id: 7782879802219764346 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the directory that %{PRODUCT_NAME} will use for storing user "
"data.\n"
"\n"
"      If you set this policy, %{PRODUCT_NAME} will use the provided "
"directory regardless whether the user has specified the '--user-data-dir' "
"flag or not.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_PLUGINSALLOWEDFORURLS_DESC
#. - description: Description of the 'PluginsAllowedForUrls' policy.
#: id: 7796141075993499320 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to set a list of url patterns that specify sites which are "
"allowed to run plugins.\n"
"\n"
"          If this policy is left not set the global default value will be "
"used for all sites either from the 'DefaultPluginsSetting' policy if it is "
"set, or the user's personal configuration otherwise."
msgstr ""

#. IDS_POLICY_CHROMEFRAMERENDERERSETTINGS_DESC
#. - description: Description of the group of 'IDS_POLICY_CHROMEFRAMERENDERERSETTINGS' related policies.
#: id: 7848840259379156480 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to configure the default HTML renderer when %{PRODUCT_FRAME_NAME}"
" is installed.\n"
"      The default setting is to allow the host browser do the rendering, but"
" you\n"
"      can optionally override this and have %{PRODUCT_FRAME_NAME} render "
"HTML pages by default."
msgstr ""

#. IDS_POLICY_AUTOSELECTCERTIFICATEFORURLS_DESC
#. - description: Description of the 'AutoSelectCertificateForUrls' policy.
#: id: 7880891067740158163 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows you to specify a list of url patterns that specify sites for which "
"%{PRODUCT_NAME} should automatically select a client certificates, if the "
"site requests a certificate.\n"
"\n"
"          If this policy is left not set no auto-selection will be done for "
"any site."
msgstr ""

#. IDS_POLICY_DEVICELOGINSCREENSAVERID_DESC
#. - description: Description of the 'DeviceLoginScreenSaverId' policy.
#: id: 7882585827992171421 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is active in retail mode only.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_ENABLEMEMORYINFO_CAPTION
#. - description: Caption of the 'EnableMemoryInfo' policy.
#: id: 7929480864713075819 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable reporting memory info (JS heap size) to page"
msgstr ""

#. IDS_POLICY_REMOTEACCESSCLIENTFIREWALLTRAVERSAL_DESC
#. - description: Description of the 'RemoteAccessClientFirewallTraversal' policy.
#: id: 7974114691960514888 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is no longer supported.\n"
"          Enables usage of STUN and relay servers when connecting to a "
"remote client.\n"
"\n"
"          If this setting is enabled, then this machine can discover and "
"connect to remote host machines even if they are separated by a firewall.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_REPORTDEVICEBOOTMODE_CAPTION
#. - description: Caption of the 'ReportDeviceBootMode' policy.
#: id: 8044493735196713914 (used in the following branches: trunk, dev, beta, stable)
msgid "Report device boot mode"
msgstr ""

#. IDS_POLICY_AUTHSERVERWHITELIST_DESC
#. - description: Description of the 'AuthServerWhitelist' policy.
#: id: 8079569179819932120 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies which servers should be whitelisted for integrated authentication."
" Integrated authentication is only enabled when %{PRODUCT_NAME} receives an "
"authentication challenge from a proxy or from a server which is in this "
"permitted list.\n"
"\n"
"          Separate multiple server names with commas. Wildcards (*) are "
"allowed.\n"
"\n"
"          If you leave this policy not set any server will be accepted for "
"integrated authentication."
msgstr ""

#. IDS_POLICY_ENABLEONLINEREVOCATIONCHECKS_DESC
#. - description: Description of the 'EnableOnlineRevocationChecks' policy.
#: id: 8101760444435022591 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"In light of the fact that soft-fail, online revocation checks provide no "
"effective security benefit, they are disabled by default in %{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.\n"
"\n"
"      If the policy is not set, or is set to false, then Chrome will not "
"perform online revocation checks in Chrome 19 and later."
msgstr ""

#. IDS_POLICY_DEFAULTMEDIASTREAMSETTING_CAPTION
#. - description: Caption of the 'DefaultMediaStreamSetting' policy.
#: id: 8102913158860568230 (used in the following branches: trunk, dev, beta, stable)
msgid "Default mediastream setting"
msgstr ""

#. IDS_POLICY_AUTOSELECTCERTIFICATEFORURLS_CAPTION
#. - description: Caption of the 'AutoSelectCertificateForUrls' policy.
#: id: 8104962233214241919 (used in the following branches: trunk, dev, beta, stable)
msgid "Automatically select client certificates for these sites"
msgstr ""

#. IDS_POLICY_MEDIACACHESIZE_LABEL
#. - description: Label of the 'MediaCacheSize' policy.
#: id: 8118665053362250806 (used in the following branches: trunk, dev, beta, stable)
msgid "Set media disk cache size"
msgstr ""

#. IDS_POLICY_AUDIOOUTPUTALLOWED_DESC
#. - description: Description of the 'AudioOutputAllowed' policy.
#: id: 8161570238552664224 (used in the following branches: trunk, dev)
msgid ""
"Allow playing audio.\n"
"\n"
"      When this policy is set to false, audio output will not be available "
"on the device while the user is logged in.\n"
"\n"
"      This policy affects all types of audio output and not only the "
"built-in speakers. Audio accessability features are also inhibited by this "
"policy. Do not enable this policy if a screen reader is required for the "
"user.\n"
"\n"
"      If this setting is set to true or not configured then users can use "
"all supported audio outputs on their device."
msgstr ""

#. IDS_POLICY_TRANSLATEENABLED_DESC
#. - description: Description of the 'TranslateEnabled' policy.
#: id: 8170878842291747619 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables the integrated Google Translate service on %{PRODUCT_NAME}.\n"
"\n"
"      If you enable this setting, %{PRODUCT_NAME} will show an integrated "
"toolbar offering to translate the page for the user, when appropriate.\n"
"\n"
"      If you disable this setting, users will never see the translation "
"bar.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this setting is left not set the user can decide to use this "
"function or not."
msgstr ""

#. IDS_POLICY_GDATA_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_GDATA' related policies.
#: id: 8170882486743832400 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure GData options"
msgstr ""

#. IDS_POLICY_ENUM_SESSIONONLY_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultCookiesSetting' of 'SessionOnly'
#: id: 8238143662496081361 (used in the following branches: trunk, dev, beta, stable)
msgid "Keep cookies for the duration of the session."
msgstr ""

#. IDS_POLICY_GSSAPILIBRARYNAME_DESC
#. - description: Description of the 'GSSAPILibraryName' policy.
#: id: 8303314579975657113 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies which GSSAPI library to use for HTTP Authentication. You can set "
"either just a library name, or a full path.\n"
"\n"
"          If no setting is provided, %{PRODUCT_NAME} will fall back to using"
" a default library name."
msgstr ""

#. IDS_POLICY_DEVICEIDLELOGOUTWARNINGDURATION_DESC
#. - description: Description of the 'DeviceIdleLogoutWarningDuration' policy.
#: id: 8329984337216493753 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is active in retail mode only.\n"
"\n"
"      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.\n"
"\n"
"      The policy value should be specified in milliseconds."
msgstr ""

#. IDS_POLICY_IMPORTBOOKMARKS_CAPTION
#. - description: Caption of the 'ImportBookmarks' policy.
#. IDS_POLICY_IMPORTBOOKMARKS_LABEL
#. - description: Label of the 'ImportBookmarks' policy.
#: id: 8344454543174932833 (used in the following branches: trunk, dev, beta, stable)
msgid "Import bookmarks from default browser on first run"
msgstr ""

#. IDS_POLICY_DEVICEDATAROAMINGENABLED_CAPTION
#. - description: Caption of the 'DeviceDataRoamingEnabled' policy.
#: id: 838870586332499308 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable data roaming"
msgstr ""

#. IDS_POLICY_REPORTDEVICEVERSIONINFO_DESC
#. - description: Description of the 'ReportDeviceVersionInfo' policy.
#: id: 8391419598427733574 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Report OS and firmware version of enrolled devices.\n"
"\n"
"      If this setting is set to True, enrolled devices will report the OS "
"and firmware version periodically. If this setting is not set or set to "
"False, version info will not be reported."
msgstr ""

#. IDS_POLICY_ENABLEONLINEREVOCATIONCHECKS_CAPTION
#. - description: Caption of the 'EnableOnlineRevocationChecks' policy.
#: id: 8412312801707973447 (used in the following branches: trunk, dev, beta, stable)
msgid "Whether online OCSP/CRL checks are performed"
msgstr ""

#. IDS_POLICY_HOMEPAGEISNEWTABPAGE_CAPTION
#. - description: Caption of the 'HomepageIsNewTabPage' policy.
#: id: 8451988835943702790 (used in the following branches: trunk, dev, beta, stable)
msgid "Use New Tab Page as homepage"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERENABLED_DESC
#. - description: Description of the 'DefaultSearchProviderEnabled' policy.
#: id: 8469342921412620373 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables the use of a default search provider.\n"
"\n"
"          If you enable this setting, a default search is performed when the"
" user types text in the omnibox that is not a URL.\n"
"\n"
"          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.\n"
"\n"
"          If you disable this setting, no search is performed when the user "
"enters non-URL text in the omnibox.\n"
"\n"
"          If you enable or disable this setting, users cannot change or "
"override this setting in %{PRODUCT_NAME}.\n"
"\n"
"          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."
msgstr ""

#. IDS_POLICY_ENUM_BLOCKPOPUPS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultPopupsSetting' of 'BlockPopups'
#: id: 847472800012384958 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to show popups"
msgstr ""

#. IDS_POLICY_SAVINGBROWSERHISTORYDISABLED_CAPTION
#. - description: Caption of the 'SavingBrowserHistoryDisabled' policy.
#: id: 8493645415242333585 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable saving browser history"
msgstr ""

#. IDS_POLICY_CHROMEFRAMERENDERERSETTINGS_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_CHROMEFRAMERENDERERSETTINGS' related policies.
#. IDS_POLICY_CHROMEFRAMERENDERERSETTINGS_CAPTION
#. - description: Caption of the 'ChromeFrameRendererSettings' policy.
#: id: 8544375438507658205 (used in the following branches: trunk, dev, beta, stable)
msgid "Default HTML renderer for %{PRODUCT_FRAME_NAME}"
msgstr ""

#. IDS_POLICY_DEVICEALLOWNEWUSERS_CAPTION
#. - description: Caption of the 'DeviceAllowNewUsers' policy.
#: id: 8587229956764455752 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow creation of new user accounts"
msgstr ""

#. IDS_POLICY_DISKCACHESIZE_DESC
#. - description: Description of the 'DiskCacheSize' policy.
#: id: 8592105098257899882 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configures the cache size that %{PRODUCT_NAME} will use for storing cached "
"files on the disk.\n"
"\n"
"      If you set this policy, %{PRODUCT_NAME} will use the provided cache "
"size regardless whether the user has specified the '--disk-cache-size' flag "
"or not.\n"
"\n"
"      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.\n"
"\n"
"      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."
msgstr ""

#. IDS_POLICY_DEVICEAUTOUPDATEDISABLED_CAPTION
#. - description: Caption of the 'DeviceAutoUpdateDisabled' policy.
#: id: 8614804915612153606 (used in the following branches: trunk, dev, beta, stable)
msgid "Disables Auto Update"
msgstr ""

#. IDS_POLICY_DOC_UNTIL_VERSION
#. - description: Text in the summary chart of a policy that specifies the version number after which the policy was dropped.
#: id: 8631434304112909927 (used in the following branches: trunk, dev, beta, stable)
msgid "until version %{UNTIL_VERSION}"
msgstr ""

#. IDS_POLICY_SAFEBROWSINGENABLED_DESC
#. - description: Description of the 'SafeBrowsingEnabled' policy.
#: id: 8642088216849640113 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables %{PRODUCT_NAME}'s Safe Browsing feature and prevents users from "
"changing this setting.\n"
"\n"
"      If you enable this setting, Safe Browsing is always active.\n"
"\n"
"      If you disable this setting, Safe Browsing is never active.\n"
"\n"
"      If you enable or disable this setting, users cannot change or override"
" this setting in %{PRODUCT_NAME}.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLFORCELIST_CAPTION
#. - description: Caption of the 'ExtensionInstallForcelist' policy.
#: id: 8665076741187546529 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure the list of force-installed extensions"
msgstr ""

#. IDS_POLICY_ENABLEDPLUGINS_DESC
#. - description: Description of the 'EnabledPlugins' policy.
#: id: 8668394701842594241 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies a list of plugins that are enabled in %{PRODUCT_NAME} and prevents"
" users from changing this setting.\n"
"\n"
"      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.\n"
"\n"
"      The specified list of plugins is always used in %{PRODUCT_NAME} if "
"they are installed. The plugins are marked as enabled in 'about:plugins' and"
" users cannot disable them.\n"
"\n"
"      Note that this policy overrides both DisabledPlugins and "
"DisabledPluginsExceptions.\n"
"\n"
"      If this policy is left not set the user can disable any plugin "
"installed on the system."
msgstr ""

#. IDS_POLICY_DEVICETARGETVERSIONPREFIX_CAPTION
#. - description: Caption of the 'DeviceTargetVersionPrefix' policy.
#: id: 8672321184841719703 (used in the following branches: trunk, dev, beta, stable)
msgid "Target Auto Update Version"
msgstr ""

#. IDS_POLICY_ENUM_ALLOWPLUGINS_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultPluginsSetting' of 'AllowPlugins'
#: id: 868187325500643455 (used in the following branches: trunk, dev, beta, stable)
msgid "Allow all sites to automatically run plugins"
msgstr ""

#. IDS_POLICY_DISABLEDPLUGINS_LABEL
#. - description: Label of the 'DisabledPlugins' policy.
#: id: 8704831857353097849 (used in the following branches: trunk, dev, beta, stable)
msgid "List of disabled plugins"
msgstr ""

#. IDS_POLICY_DEFAULTSEARCHPROVIDERKEYWORD_DESC
#. - description: Description of the 'DefaultSearchProviderKeyword' policy.
#: id: 8711086062295757690 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the keyword, which is the shortcut used in the omnibox to trigger "
"the search for this provider.\n"
"\n"
"          This policy is optional. If not set, no keyword will activate the "
"search provider.\n"
"\n"
"          This policy is only considered if the "
"'DefaultSearchProviderEnabled' policy is enabled."
msgstr ""

#. IDS_POLICY_CONTENTSETTINGS_DESC
#. - description: Description of the group of 'IDS_POLICY_CONTENTSETTINGS' related policies.
#: id: 8731693562790917685 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Content Settings allow you to specify how contents of a specific type (for "
"example Cookies, Images or JavaScript) is handled."
msgstr ""

#. IDS_POLICY_DISABLEAUTHNEGOTIATECNAMELOOKUP_DESC
#. - description: Description of the 'DisableAuthNegotiateCnameLookup' policy.
#: id: 8764119899999036911 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies whether the generated Kerberos SPN is based on the canonical DNS "
"name or the original name entered.\n"
"\n"
"          If you enable this setting, CNAME lookup will be skipped and the "
"server name will be used as entered.\n"
"\n"
"          If you disable this setting or leave it not set, the canonical "
"name of the server will be determined via CNAME lookup."
msgstr ""

#. IDS_POLICY_ALLOWOUTDATEDPLUGINS_DESC
#. - description: Description of the 'AllowOutdatedPlugins' policy.
#: id: 8777120694819070607 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows %{PRODUCT_NAME} to run plugins that are outdated.\n"
"\n"
"      If you enable this setting, outdated plugins are used as normal "
"plugins.\n"
"\n"
"      If you disable this setting, outdated plugins will not be used and "
"users will not be asked for permission to run them.\n"
"\n"
"      If this setting is not set, users will be asked for permission to run "
"outdated plugins."
msgstr ""

#. IDS_POLICY_REPORTDEVICELOCATION_DESC
#. - description: Description of the 'ReportDeviceLocation' policy.
#: id: 8818173863808665831 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Report the geographic location of the device.\n"
"\n"
"      If the policy is not set, or set to false, the location will not be "
"reported."
msgstr ""

#. IDS_POLICY_HOMEPAGE_DESC
#. - description: Description of the group of 'IDS_POLICY_HOMEPAGE' related policies.
#: id: 8828766846428537606 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Configure the default home page in %{PRODUCT_NAME} and prevents users from "
"changing it.\n"
"\n"
"      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'."
msgstr ""

#. IDS_POLICY_DISABLEPRINTPREVIEW_DESC
#. - description: Description of the 'DisablePrintPreview' policy.
#: id: 8853920132856176349 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This setting is used to force the use of the system print dialog instead of "
"print preview."
msgstr ""

#. IDS_POLICY_HOMEPAGE_CAPTION
#. - description: Caption of the group of 'IDS_POLICY_HOMEPAGE' related policies.
#: id: 8870318296973696995 (used in the following branches: trunk, dev, beta, stable)
msgid "Home page"
msgstr ""

#. IDS_POLICY_AUTHNEGOTIATEDELEGATEWHITELIST_DESC
#. - description: Description of the 'AuthNegotiateDelegateWhitelist' policy.
#: id: 8889026535261486875 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Servers that %{PRODUCT_NAME} may delegate to.\n"
"\n"
"          Separate multiple server names with commas. Wildcards (*) are "
"allowed.\n"
"\n"
"          If you leave this policy not set any server will be accepted for "
"integrated authentication."
msgstr ""

#. IDS_POLICY_DEVICEGUESTMODEENABLED_CAPTION
#. - description: Caption of the 'DeviceGuestModeEnabled' policy.
#: id: 8906768759089290519 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable guest mode"
msgstr ""

#. IDS_POLICY_DEFAULTMEDIASTREAMSETTING_DESC
#. - description: Description of the 'DefaultMediaStreamSetting' policy.
#: id: 8908294717014659003 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"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.\n"
"\n"
"          If this policy is left not set, 'PromptOnAccess' will be used and "
"the user will be able to change it."
msgstr ""

#. IDS_POLICY_REPORTDEVICELOCATION_CAPTION
#. - description: Caption of the 'ReportDeviceLocation' policy.
#: id: 8947415621777543415 (used in the following branches: trunk, dev, beta, stable)
msgid "Report device location"
msgstr ""

#. IDS_POLICY_DISKCACHEDIR_CAPTION
#. - description: Caption of the 'DiskCacheDir' policy.
#. IDS_POLICY_DISKCACHEDIR_LABEL
#. - description: Label of the 'DiskCacheDir' policy.
#: id: 8951350807133946005 (used in the following branches: trunk, dev, beta, stable)
msgid "Set disk cache directory"
msgstr ""

#. IDS_POLICY_DOC_BACK_TO_TOP
#. - description: Text of a link in the generated policy documentation, that takes the user to the top of the page
#: id: 8955719471735800169 (used in the following branches: trunk, dev, beta, stable)
msgid "Back to top"
msgstr ""

#. IDS_POLICY_ENUM_FORCED_CAPTION
#. - description: Label in a 'IncognitoModeAvailability' dropdown menu for selecting 'Forced'
#: id: 896575211736907134 (used in the following branches: trunk, dev, beta, stable)
msgid "Incognito mode forced."
msgstr ""

#. IDS_POLICY_DISABLESSLRECORDSPLITTING_CAPTION
#. - description: Caption of the 'DisableSSLRecordSplitting' policy.
#: id: 8987262643142408725 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable SSL record splitting"
msgstr ""

#. IDS_POLICY_ENUM_BLOCKIMAGES_CAPTION
#. - description: Label in a 'ContentSettings' dropdown menu for selecting a 'DefaultImagesSetting' of 'BlockImages'
#: id: 8992176907758534924 (used in the following branches: trunk, dev, beta, stable)
msgid "Do not allow any site to show images"
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLWHITELIST_LABEL
#. - description: Label of the 'ExtensionInstallWhitelist' policy.
#: id: 9035964157729712237 (used in the following branches: trunk, dev, beta, stable)
msgid "Extension IDs to exempt from the blacklist"
msgstr ""

#. IDS_POLICY_OPENNETWORKCONFIGURATION_DESC
#. - description: Description of the 'OpenNetworkConfiguration' policy.
#: id: 9042911395677044526 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Allows pushing network configuration to be applied per-user to a "
"%{PRODUCT_OS_NAME} device. The network configuration is a JSON-formatted "
"string as defined by the Open Network Configuration format described at "
"%{ONC_SPEC_URL}"
msgstr ""

#. IDS_POLICY_AUTHSERVERWHITELIST_CAPTION
#. - description: Caption of the 'AuthServerWhitelist' policy.
#: id: 9096086085182305205 (used in the following branches: trunk, dev, beta, stable)
msgid "Authentication server whitelist"
msgstr ""

#. IDS_POLICY_URLBLACKLIST_CAPTION
#. - description: Caption of the 'URLBlacklist' policy.
#: id: 913195841488580904 (used in the following branches: trunk, dev, beta, stable)
msgid "Block access to a list of URLs"
msgstr ""

#. IDS_POLICY_CLOUDPRINTPROXYENABLED_CAPTION
#. - description: Caption of the 'CloudPrintProxyEnabled' policy.
#: id: 9135033364005346124 (used in the following branches: trunk, dev, beta, stable)
msgid "Enable %{CLOUD_PRINT_NAME} proxy"
msgstr ""

#. IDS_POLICY_PRINTINGENABLED_DESC
#. - description: Description of the 'PrintingEnabled' policy.
#: id: 9142678351429467783 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Enables printing in %{PRODUCT_NAME} and prevents users from changing this "
"setting.\n"
"\n"
"      If this setting is enabled or not configured, users can print.\n"
"\n"
"      If this setting is disabled, users cannot print from %{PRODUCT_NAME}. "
"Printing is disabled in the wrench menu, extensions, JavaScript "
"applications, etc. It is still possible to print from plugins that bypass "
"%{PRODUCT_NAME} while printing. For example certain Flash applications has "
"the print option in their context menu, and that will not be disabled.\n"
"\n"
"      If this policy is left not set, this will be enabled but the user will"
" be able to change it."
msgstr ""

#. IDS_POLICY_INCOGNITOENABLED_DESC
#. - description: Description of the 'IncognitoEnabled' policy.
#: id: 9150416707757015439 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"This policy is deprecated. Please, use IncognitoModeAvailability instead.\n"
"      Enables Incognito mode in %{PRODUCT_NAME}.\n"
"\n"
"      If this setting is enabled or not configured, users can open web pages"
" in incognito mode.\n"
"\n"
"      If this setting is disabled, users cannot open web pages in incognito "
"mode.\n"
"\n"
"      If this policy is left not set, this will be enabled and the user will"
" be able to use incognito mode."
msgstr ""

#. IDS_POLICY_EXTERNALSTORAGEDISABLED_CAPTION
#. - description: Caption of the 'ExternalStorageDisabled' policy.
#: id: 9187743794267626640 (used in the following branches: trunk, dev, beta, stable)
msgid "Disable mounting of external storage"
msgstr ""

#. IDS_POLICY_ENTERPRISEWEBSTOREURL_DESC
#. - description: Description of the 'EnterpriseWebStoreURL' policy.
#: id: 9191982992032190929 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Specifies the URL for the enterprise web store. When this setting is "
"enabled, an app will appear on the new tab page which, when clicked, will "
"take the user to the specified URL. Extensions and apps can be installed "
"from this page without extra warnings being presented to the user. If this "
"policy is set, the EnterpriseWebStoreName setting should also be set.\n"
"\n"
"      If this setting is disabled, no enterprise web store app will appear "
"on the new tab page."
msgstr ""

#. IDS_POLICY_DISABLESCREENSHOTS_DESC
#. - description: Description of the 'DisableScreenshots' policy.
#: id: 9203071022800375458 (used in the following branches: trunk, dev, beta, stable)
msgid ""
"Disables taking screenshots.\n"
"\n"
"      If enabled screenshots cannot be taken using keyboard shortcuts or "
"extension APIs.\n"
"\n"
"      If disabled or not specified, taking screenshots is allowed."
msgstr ""

#. IDS_POLICY_EXTENSIONINSTALLSOURCES_CAPTION
#. - description: Caption of the 'ExtensionInstallSources' policy.
#: id: 922540222991413931 (used in the following branches: trunk, dev, beta, stable)
msgid "Configure extension, app, and user script install sources"
msgstr ""

#. IDS_POLICY_IMPORTSAVEDPASSWORDS_CAPTION
#. - description: Caption of the 'ImportSavedPasswords' policy.
#. IDS_POLICY_IMPORTSAVEDPASSWORDS_LABEL
#. - description: Label of the 'ImportSavedPasswords' policy.
#: id: 924557436754151212 (used in the following branches: trunk, dev, beta, stable)
msgid "Import saved passwords from default browser on first run"
msgstr ""

#. IDS_POLICY_GCFUSERDATADIR_CAPTION
#. - description: Caption of the 'GCFUserDataDir' policy.
#: id: 930930237275114205 (used in the following branches: trunk, dev, beta, stable)
msgid "Set %{PRODUCT_FRAME_NAME} user data directory"
msgstr ""

#. IDS_POLICY_DISKCACHESIZE_LABEL
#. - description: Label of the 'DiskCacheSize' policy.
#: id: 944817693306670849 (used in the following branches: trunk, dev, beta, stable)
msgid "Set disk cache size"
msgstr ""