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
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file contains definitions of resources that will be translated for
each locale. -->
<grit base_dir="." latest_public_release="0" current_release="1"
source_lang_id="en" enc_check="möl">
<outputs>
<output filename="grit/generated_resources.h" type="rc_header">
<emit emit_type='prepend'></emit>
</output>
<output filename="generated_resources_ar.rc" type="rc_all" lang="ar" />
<output filename="generated_resources_bg.rc" type="rc_all" lang="bg" />
<output filename="generated_resources_bn.rc" type="rc_all" lang="bn" />
<output filename="generated_resources_ca.rc" type="rc_all" lang="ca" />
<output filename="generated_resources_cs.rc" type="rc_all" lang="cs" />
<output filename="generated_resources_da.rc" type="rc_all" lang="da" />
<output filename="generated_resources_de.rc" type="rc_all" lang="de" />
<output filename="generated_resources_el.rc" type="rc_all" lang="el" />
<output filename="generated_resources_en-GB.rc" type="rc_all" lang="en-GB" />
<output filename="generated_resources_en-US.rc" type="rc_all" lang="en" />
<output filename="generated_resources_es.rc" type="rc_all" lang="es" />
<output filename="generated_resources_es-419.rc" type="rc_all" lang="es-419" />
<output filename="generated_resources_et.rc" type="rc_all" lang="et" />
<output filename="generated_resources_fi.rc" type="rc_all" lang="fi" />
<output filename="generated_resources_fil.rc" type="rc_all" lang="fil" />
<output filename="generated_resources_fr.rc" type="rc_all" lang="fr" />
<output filename="generated_resources_gu.rc" type="rc_all" lang="gu" />
<output filename="generated_resources_he.rc" type="rc_all" lang="he" />
<output filename="generated_resources_hi.rc" type="rc_all" lang="hi" />
<output filename="generated_resources_hr.rc" type="rc_all" lang="hr" />
<output filename="generated_resources_hu.rc" type="rc_all" lang="hu" />
<output filename="generated_resources_id.rc" type="rc_all" lang="id" />
<output filename="generated_resources_it.rc" type="rc_all" lang="it" />
<output filename="generated_resources_ja.rc" type="rc_all" lang="ja" />
<output filename="generated_resources_kn.rc" type="rc_all" lang="kn" />
<output filename="generated_resources_ko.rc" type="rc_all" lang="ko" />
<output filename="generated_resources_lt.rc" type="rc_all" lang="lt" />
<output filename="generated_resources_lv.rc" type="rc_all" lang="lv" />
<output filename="generated_resources_ml.rc" type="rc_all" lang="ml" />
<output filename="generated_resources_mr.rc" type="rc_all" lang="mr" />
<output filename="generated_resources_nl.rc" type="rc_all" lang="nl" />
<!-- The translation console uses 'no' for Norwegian Bokmål. It should
be 'nb'. -->
<output filename="generated_resources_nb.rc" type="rc_all" lang="no" />
<output filename="generated_resources_or.rc" type="rc_all" lang="or" />
<output filename="generated_resources_pl.rc" type="rc_all" lang="pl" />
<output filename="generated_resources_pt-BR.rc" type="rc_all" lang="pt-BR" />
<output filename="generated_resources_pt-PT.rc" type="rc_all" lang="pt-PT" />
<output filename="generated_resources_ro.rc" type="rc_all" lang="ro" />
<output filename="generated_resources_ru.rc" type="rc_all" lang="ru" />
<output filename="generated_resources_sk.rc" type="rc_all" lang="sk" />
<output filename="generated_resources_sl.rc" type="rc_all" lang="sl" />
<output filename="generated_resources_sr.rc" type="rc_all" lang="sr" />
<output filename="generated_resources_sv.rc" type="rc_all" lang="sv" />
<output filename="generated_resources_ta.rc" type="rc_all" lang="ta" />
<output filename="generated_resources_te.rc" type="rc_all" lang="te" />
<output filename="generated_resources_th.rc" type="rc_all" lang="th" />
<output filename="generated_resources_tr.rc" type="rc_all" lang="tr" />
<output filename="generated_resources_uk.rc" type="rc_all" lang="uk" />
<output filename="generated_resources_vi.rc" type="rc_all" lang="vi" />
<output filename="generated_resources_zh-CN.rc" type="rc_all" lang="zh-CN" />
<output filename="generated_resources_zh-TW.rc" type="rc_all" lang="zh-TW" />
<output filename="generated_resources_ar.pak" type="data_package" lang="ar" />
<output filename="generated_resources_bg.pak" type="data_package" lang="bg" />
<output filename="generated_resources_bn.pak" type="data_package" lang="bn" />
<output filename="generated_resources_ca.pak" type="data_package" lang="ca" />
<output filename="generated_resources_cs.pak" type="data_package" lang="cs" />
<output filename="generated_resources_da.pak" type="data_package" lang="da" />
<output filename="generated_resources_de.pak" type="data_package" lang="de" />
<output filename="generated_resources_el.pak" type="data_package" lang="el" />
<output filename="generated_resources_en-GB.pak" type="data_package" lang="en-GB" />
<output filename="generated_resources_en-US.pak" type="data_package" lang="en" />
<output filename="generated_resources_es.pak" type="data_package" lang="es" />
<output filename="generated_resources_es-419.pak" type="data_package" lang="es-419" />
<output filename="generated_resources_et.pak" type="data_package" lang="et" />
<output filename="generated_resources_fi.pak" type="data_package" lang="fi" />
<output filename="generated_resources_fil.pak" type="data_package" lang="fil" />
<output filename="generated_resources_fr.pak" type="data_package" lang="fr" />
<output filename="generated_resources_gu.pak" type="data_package" lang="gu" />
<output filename="generated_resources_he.pak" type="data_package" lang="he" />
<output filename="generated_resources_hi.pak" type="data_package" lang="hi" />
<output filename="generated_resources_hr.pak" type="data_package" lang="hr" />
<output filename="generated_resources_hu.pak" type="data_package" lang="hu" />
<output filename="generated_resources_id.pak" type="data_package" lang="id" />
<output filename="generated_resources_it.pak" type="data_package" lang="it" />
<output filename="generated_resources_ja.pak" type="data_package" lang="ja" />
<output filename="generated_resources_kn.pak" type="data_package" lang="kn" />
<output filename="generated_resources_ko.pak" type="data_package" lang="ko" />
<output filename="generated_resources_lt.pak" type="data_package" lang="lt" />
<output filename="generated_resources_lv.pak" type="data_package" lang="lv" />
<output filename="generated_resources_ml.pak" type="data_package" lang="ml" />
<output filename="generated_resources_mr.pak" type="data_package" lang="mr" />
<output filename="generated_resources_nl.pak" type="data_package" lang="nl" />
<!-- The translation console uses 'no' for Norwegian Bokmål. It should
be 'nb'. -->
<output filename="generated_resources_nb.pak" type="data_package" lang="no" />
<output filename="generated_resources_or.pak" type="data_package" lang="or" />
<output filename="generated_resources_pl.pak" type="data_package" lang="pl" />
<output filename="generated_resources_pt-BR.pak" type="data_package" lang="pt-BR" />
<output filename="generated_resources_pt-PT.pak" type="data_package" lang="pt-PT" />
<output filename="generated_resources_ro.pak" type="data_package" lang="ro" />
<output filename="generated_resources_ru.pak" type="data_package" lang="ru" />
<output filename="generated_resources_sk.pak" type="data_package" lang="sk" />
<output filename="generated_resources_sl.pak" type="data_package" lang="sl" />
<output filename="generated_resources_sr.pak" type="data_package" lang="sr" />
<output filename="generated_resources_sv.pak" type="data_package" lang="sv" />
<output filename="generated_resources_ta.pak" type="data_package" lang="ta" />
<output filename="generated_resources_te.pak" type="data_package" lang="te" />
<output filename="generated_resources_th.pak" type="data_package" lang="th" />
<output filename="generated_resources_tr.pak" type="data_package" lang="tr" />
<output filename="generated_resources_uk.pak" type="data_package" lang="uk" />
<output filename="generated_resources_vi.pak" type="data_package" lang="vi" />
<output filename="generated_resources_zh-CN.pak" type="data_package" lang="zh-CN" />
<output filename="generated_resources_zh-TW.pak" type="data_package" lang="zh-TW" />
</outputs>
<translations>
<file path="resources/generated_resources_ar.xtb" lang="ar" />
<file path="resources/generated_resources_bg.xtb" lang="bg" />
<file path="resources/generated_resources_bn.xtb" lang="bn" />
<file path="resources/generated_resources_ca.xtb" lang="ca" />
<file path="resources/generated_resources_cs.xtb" lang="cs" />
<file path="resources/generated_resources_da.xtb" lang="da" />
<file path="resources/generated_resources_de.xtb" lang="de" />
<file path="resources/generated_resources_el.xtb" lang="el" />
<file path="resources/generated_resources_en-GB.xtb" lang="en-GB" />
<file path="resources/generated_resources_es.xtb" lang="es" />
<file path="resources/generated_resources_es-419.xtb" lang="es-419" />
<file path="resources/generated_resources_et.xtb" lang="et" />
<file path="resources/generated_resources_fi.xtb" lang="fi" />
<file path="resources/generated_resources_fil.xtb" lang="fil" />
<file path="resources/generated_resources_fr.xtb" lang="fr" />
<file path="resources/generated_resources_gu.xtb" lang="gu" />
<file path="resources/generated_resources_he.xtb" lang="he" />
<file path="resources/generated_resources_hi.xtb" lang="hi" />
<file path="resources/generated_resources_hr.xtb" lang="hr" />
<file path="resources/generated_resources_hu.xtb" lang="hu" />
<file path="resources/generated_resources_id.xtb" lang="id" />
<file path="resources/generated_resources_it.xtb" lang="it" />
<file path="resources/generated_resources_ja.xtb" lang="ja" />
<file path="resources/generated_resources_kn.xtb" lang="kn" />
<file path="resources/generated_resources_ko.xtb" lang="ko" />
<file path="resources/generated_resources_lt.xtb" lang="lt" />
<file path="resources/generated_resources_lv.xtb" lang="lv" />
<file path="resources/generated_resources_ml.xtb" lang="ml" />
<file path="resources/generated_resources_mr.xtb" lang="mr" />
<file path="resources/generated_resources_nl.xtb" lang="nl" />
<file path="resources/generated_resources_no.xtb" lang="no" />
<file path="resources/generated_resources_or.xtb" lang="or" />
<file path="resources/generated_resources_pl.xtb" lang="pl" />
<file path="resources/generated_resources_pt-BR.xtb" lang="pt-BR" />
<file path="resources/generated_resources_pt-PT.xtb" lang="pt-PT" />
<file path="resources/generated_resources_ro.xtb" lang="ro" />
<file path="resources/generated_resources_ru.xtb" lang="ru" />
<file path="resources/generated_resources_sk.xtb" lang="sk" />
<file path="resources/generated_resources_sl.xtb" lang="sl" />
<file path="resources/generated_resources_sr.xtb" lang="sr" />
<file path="resources/generated_resources_sv.xtb" lang="sv" />
<file path="resources/generated_resources_ta.xtb" lang="ta" />
<file path="resources/generated_resources_te.xtb" lang="te" />
<file path="resources/generated_resources_th.xtb" lang="th" />
<file path="resources/generated_resources_tr.xtb" lang="tr" />
<file path="resources/generated_resources_uk.xtb" lang="uk" />
<file path="resources/generated_resources_vi.xtb" lang="vi" />
<file path="resources/generated_resources_zh-CN.xtb" lang="zh-CN" />
<file path="resources/generated_resources_zh-TW.xtb" lang="zh-TW" />
</translations>
<release seq="1" allow_pseudo="false">
<messages fallback_to_english="true">
<!-- TODO add all of your "string table" messages here. Remember to
change nontranslateable parts of the messages into placeholders (using the
<ph> element). You can also use the 'grit add' tool to help you identify
nontranslateable parts and create placeholders for them. -->
<message name="IDS_SHOWFULLHISTORY_LINK" desc="The label of the Show Full History link at the bottom of the back/forward menu.">
Show Full History
</message>
<message name="IDS_PAGEMENU" desc="The label to show for the page menu">
Page
</message>
<message name="IDS_PAGEMENU_TOOLTIP" desc="The tooltip to show for the page menu">
Control the current page
</message>
<message name="IDS_APPMENU_TOOLTIP" desc="The tooltip to show for the browser menu">
Customize and control <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>
</message>
<message name="IDS_ALTERNATE_NAV_URL_VIEW_LABEL" desc="Label displayed in an infobar when a user searches for a term he may have meant to navigate to.">
Did you mean to go to <ph name="SITE">$1<ex>http://intranetsite/</ex></ph>?
</message>
<message name="IDS_AUTOCOMPLETE_KEYWORD_DESCRIPTION" desc="Description for a keyword match.">
(Keyword: <ph name="KEYWORD">$1</ph>)
</message>
<message name="IDS_AUTOCOMPLETE_SEARCH_CONTENTS" desc="Contents for a search match.">
Search <ph name="ENGINE">$1<ex>Google</ex></ph> for <ph name="SEARCH_TERMS">$2<ex>flowers</ex></ph>
</message>
<message name="IDS_AUTOCOMPLETE_NO_QUERY" desc="Dummy search term displayed when the user has no query input.">
<enter query>
</message>
<message name="IDS_AUTOCOMPLETE_MATCH_DESCRIPTION_SEPARATOR" desc="The separator between a result in the autocomplete popup and its description.">
''' - '''
</message>
<message name="IDS_HISTORY_TITLE" desc="Title for the history tab.">
History
</message>
<message name="IDS_BOOKMARKS_TITLE" desc="Title for the bookmarks tab.">
Bookmarks
</message>
<message name="IDS_DOWNLOAD_TITLE" desc="Title for the downloads tab.">
Downloads
</message>
<message name="IDS_EXTENSIONS_TITLE" desc="Title for the extensions tab.">
Extensions
</message>
<message name="IDS_SESSIONS_TITLE" desc="Title for the sessions tab.">
Sessions
</message>
<message name="IDS_HISTORY_UNTITLED_TITLE" desc="Title for history items when the page has no title">
(Untitled)
</message>
<message name="IDS_DESTINATIONS_MENU_SEPARATOR" desc="Character between items in the menu">
''' - '''
</message>
<message name="IDS_DEFAULT_TAB_TITLE" desc="The default title in a tab.">
Untitled
</message>
<message name="IDS_VIEW_SOURCE_TITLE" desc="The ViewSource tab title.">
Source of <ph name="PAGE_URL">%s</ph>
</message>
<message name="IDS_HISTORY_SEARCH_STRING" desc="Text showing what the user searched for">
Search Results for '<ph name="SEARCH_STRING">
$1<ex>pie</ex>
</ph>'
</message>
<message name="IDS_HISTORY_DELETE_PRIOR_VISITS_LINK" desc="Title of the link that allows the user to delete visits prior to the specified point">
Delete history for this day
</message>
<message name="IDS_HISTORY_DELETE_PRIOR_VISITS_WARNING" desc="Warning shown before deleting">
Are you sure you want to delete these pages from your history?
</message>
<message name="IDS_HISTORY_DELETE_PRIOR_VISITS_WARNING_TITLE" desc="Title of the warning dialog">
Delete
</message>
<!-- History HTML UI -->
<message name="IDS_HISTORY_LOADING" desc="Text shown when we're loading the user's history">
Loading...
</message>
<message name="IDS_HISTORY_DATE_WITH_RELATIVE_TIME" desc="In the history view, some dates are formatted as 'Today - Wednesday, Nov 7, 2007">
<ph name="RELATIVE_DATE">
$1<ex>Today</ex>
</ph> - <ph name="FULL_DATE">
$2<ex>Wednesday, Nov 7, 2007</ex>
</ph>
</message>
<message name="IDS_HISTORY_NO_RESULTS" desc="Text shown when no history search results have been found">
No search results found.
</message>
<message name="IDS_HISTORY_NO_ITEMS" desc="Text shown when the user has no history">
All the pages you visit will appear here unless you open them in an incognito window. You can use the Search button on this page to search all the pages in your history.
</message>
<message name="IDS_HISTORY_SEARCH_BUTTON" desc="Title of the button in the history page that triggers a search">
Search history
</message>
<message name="IDS_HISTORY_NEWEST" desc="HTML text shown as page navigation tool to take the user to the top of their history">
Newest
</message>
<message name="IDS_HISTORY_NEWER" desc="HTML text shown as page navigation tool to take the user back to the more recent page">
Newer
</message>
<message name="IDS_HISTORY_OLDER" desc="HTML text shown as page navigation tool to take the user forward to their older history">
Older
</message>
<message name="IDS_HISTORY_SEARCHRESULTSFOR" desc="Format string for search results">
Search results for '<ph name="SEARCH_STRING">%s</ph>'
</message>
<message name="IDS_HISTORY_BROWSERESULTS" desc="Title of browsing results page">
History
</message>
<message name="IDS_HISTORY_CONTINUED" desc="Shown after the date if the data is continued from the previous page">
(Cont.)
</message>
<message name="IDS_HISTORY_DELETE" desc="Link shown after the date, allowing the user to delete that date">
delete
</message>
<!-- Generic terms -->
<message name="IDS_OK" desc="Used for Ok on buttons">
OK
</message>
<message name="IDS_CANCEL" desc="Used for Cancel on buttons">
Cancel
</message>
<message name="IDS_DELETE" desc="A delete button or menu">
&Delete
</message>
<message name="IDS_EDIT" desc="Edit menu item">
&Edit
</message>
<message name="IDS_LEARN_MORE" desc="Learn more text">
Learn more
</message>
<!-- content area context menus -->
<message name="IDS_CONTENT_CONTEXT_BACK" desc="The name of the Back command in the content area context menu">
&Back
</message>
<message name="IDS_CONTENT_CONTEXT_FORWARD" desc="The name of the Forward command in the content area context menu">
&Forward
</message>
<message name="IDS_CONTENT_CONTEXT_SAVEPAGEAS" desc="The name of the Save Page As command in the content area context menu">
Save &as...
</message>
<message name="IDS_CONTENT_CONTEXT_PRINT" desc="The name of the Print... command in the content area context menu. Brings a dialog to select the print options">
P&rint...
</message>
<message name="IDS_CONTENT_CONTEXT_VIEWPAGESOURCE" desc="The name of the View Page Source command in the content area context menu">
&View page source
</message>
<message name="IDS_CONTENT_CONTEXT_VIEWPAGEINFO" desc="The name of the View Page Info command in the content area context menu">
View page &info
</message>
<message name="IDS_CONTENT_CONTEXT_INSPECTELEMENT" desc="The name of the Inspect Element command in the content area context menu">
I&nspect element
</message>
<message name="IDS_CONTENT_CONTEXT_RELOAD" desc="The name of the Reload command in the content area context menu">
Re&load
</message>
<message name="IDS_CONTENT_CONTEXT_OPENFRAMENEWWINDOW" desc="The name of the Open Frame in New Window command in the content area context menu">
Open frame in new &window
</message>
<message name="IDS_CONTENT_CONTEXT_OPENFRAMEOFFTHERECORD" desc="The name of the open frame in incognito window command">
Open frame in inco&gnito window
</message>
<message name="IDS_CONTENT_CONTEXT_OPENFRAMENEWTAB" desc="The name of the Open Frame in New Tab command in the content area context menu">
Open frame in new &tab
</message>
<message name="IDS_CONTENT_CONTEXT_SAVEFRAMEAS" desc="The name of the Save Frame As command in the content area context menu">
Save &frame as...
</message>
<message name="IDS_CONTENT_CONTEXT_PRINTFRAME" desc="The name of the Print Frame command in the content area context menu">
P&rint frame...
</message>
<message name="IDS_CONTENT_CONTEXT_VIEWFRAMESOURCE" desc="The name of the View Frame Source command in the content area context menu">
&View frame source
</message>
<message name="IDS_CONTENT_CONTEXT_VIEWFRAMEINFO" desc="The name of the View Frame Info command in the content area context menu">
View frame &info
</message>
<message name="IDS_CONTENT_CONTEXT_OPENLINKNEWTAB" desc="The name of the Open Link in New Tab command in the content area context menu">
Open link in new &tab
</message>
<message name="IDS_CONTENT_CONTEXT_OPENLINKNEWWINDOW" desc="The name of the Open Link in New Window command in the content area context menu">
Open link in new &window
</message>
<message name="IDS_CONTENT_CONTEXT_OPENLINKOFFTHERECORD" desc="The name of the open a link in incognito window command">
Open link in inco&gnito window
</message>
<message name="IDS_CONTENT_CONTEXT_SAVELINKAS" desc="The name of the Save Link As command in the content area context menu">
Save lin&k as...
</message>
<message name="IDS_CONTENT_CONTEXT_COPYLINKLOCATION" desc="The name of the Copy Link Location command in the content area context menu">
Copy link addr&ess
</message>
<message name="IDS_CONTENT_CONTEXT_COPYEMAILADDRESS" desc="The name of the Copy Email Address command in the content area context menu">
Copy &email address
</message>
<message name="IDS_CONTENT_CONTEXT_SAVEIMAGEAS" desc="The name of the Save Image As command in the content area context menu">
Sa&ve image as...
</message>
<message name="IDS_CONTENT_CONTEXT_COPYIMAGELOCATION" desc="The name of the Copy Image Location command in the content area context menu">
C&opy image URL
</message>
<message name="IDS_CONTENT_CONTEXT_COPYIMAGE" desc="The name of the Copy Image command in the content area context menu">
Cop&y image
</message>
<message name="IDS_CONTENT_CONTEXT_OPENIMAGENEWTAB" desc="The name of the Open Image in New Tab command in the content area context menu">
Open &image in new tab
</message>
<message name="IDS_CONTENT_CONTEXT_UNDO" desc="The name of the Undo command in the content area context menu">
&Undo
</message>
<message name="IDS_CONTENT_CONTEXT_REDO" desc="The name of the Redo command in the content area context menu">
&Redo
</message>
<message name="IDS_CONTENT_CONTEXT_CUT" desc="The name of the Cut command in the content area context menu">
Cu&t
</message>
<message name="IDS_CONTENT_CONTEXT_COPY" desc="The name of the Copy command in the content area context menu">
&Copy
</message>
<message name="IDS_CONTENT_CONTEXT_PASTE" desc="The name of the Paste command in the content area context menu">
&Paste
</message>
<message name="IDS_CONTENT_CONTEXT_DELETE" desc="The name of the Delete command in the content area context menu">
&Delete
</message>
<message name="IDS_CONTENT_CONTEXT_ADD_TO_DICTIONARY" desc="The name of the Add to dictionary command in the content area context menu">
&Add to dictionary
</message>
<message name="IDS_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS" desc="The name of the No Spelling Suggestions display in the content area context menu">
&No spelling suggestions
</message>
<message name="IDS_CONTENT_CONTEXT_SPELLCHECK_MENU" desc="The name of the Spellcheck Options submenu in the content area context menu">
&Spell-checker options
</message>
<message name="IDS_CONTENT_CONTEXT_LANGUAGE_SETTINGS" desc="The name of the Language Settings command in the content area context menu">
&Language settings...
</message>
<message name="IDS_CONTENT_CONTEXT_CHECK_SPELLING_OF_THIS_FIELD" desc="The name of the Check the spelling of this field command in the content area context menu">
&Check the spelling of this field
</message>
<message name="IDS_CONTENT_CONTEXT_SELECTALL" desc="The name of the Select All command in the content area context menu">
Select &all
</message>
<message name="IDS_CONTENT_CONTEXT_SEARCHWEBFOR" desc="The name of the Search the Web for 'string' command in the content area context menu">
&Search <ph name="SEARCH_ENGINE">$1<ex>Google</ex></ph> for '<ph name="SEARCH_TERMS">$2<ex>flowers</ex></ph>'
</message>
<message name="IDS_CONTENT_CONTEXT_ADDSEARCHENGINE" desc="The name of the Add as Search Engine command in the content area context menu">
Add as search en&gine...
</message>
<message name="IDS_MOST_VISITED_SUB_PAGE" desc="The link below every domain on the most visited view">
Show pages
</message>
<!-- Page menu -->
<message name="IDS_NEW_TAB" desc="The text label of the New Tab menu item">
New &tab
</message>
<message name="IDS_SHOW_AS_TAB" desc="The text label for the Show As tab menu item">
&Show as tab
</message>
<message name="IDS_NEW_WINDOW" desc="The text label of the New Window menu item">
&New window
</message>
<message name="IDS_PROFILE_MENU" desc="The text label of the New profile Window menu item">
New window in &profile
</message>
<message name="IDS_SELECT_PROFILE" desc="The text label of the menu item to select a profile other than the ones displayed directly in the Profile submenu.">
Other...
</message>
<message name="IDS_NEW_INCOGNITO_WINDOW" desc="The text label of the New incognito window menu item">
New &incognito window
</message>
<message name="IDS_UNDO" desc="The text label of the Undo menu item">
&Undo
</message>
<message name="IDS_CUT" desc="The text label of the Cut menu item">
Cu&t
</message>
<message name="IDS_COPY" desc="The text label of the Copy menu item">
&Copy
</message>
<message name="IDS_PASTE" desc="The text label of the Paste menu item">
&Paste
</message>
<message name="IDS_SELECT_ALL" desc="The text label of the Select All menu item">
Select &all
</message>
<message name="IDS_FIND" desc="The text label of the Find in Page menu item">
&Find in page
</message>
<message name="IDS_SAVE_PAGE" desc="The text label of the Save Page As menu item">
Save page &as...
</message>
<message name="IDS_PRINT" desc="The text label of the Print... menu item. Opens a dialog box to select print settings">
&Print...
</message>
<message name="IDS_ZOOM_MENU" desc="The text label of the Zoom submenu">
&Zoom
</message>
<message name="IDS_ZOOM_PLUS" desc="The text label of the Make Text Larger menu item">
&Larger
</message>
<message name="IDS_ZOOM_NORMAL" desc="The text label of the Make Text Normal Size menu item">
&Normal
</message>
<message name="IDS_ZOOM_MINUS" desc="The text label of the Make Text Smaller menu item">
&Smaller
</message>
<message name="IDS_ENCODING_MENU" desc="The text label of the Encoding submenu">
&Encoding
</message>
<message name="IDS_ENCODING_AUTO_DETECT" desc="The text label of the Auto Dectect submenu">
Auto detect
</message>
<message name="IDS_ENCODING_DISPLAY_TEMPLATE" desc="The format of encodings in the encoding menu. Encoding categories are Unicode, Western, Turkish, Cyrillic, Chinese Simplified, Thai, Arabic, Hebrew and so forth. Encoding names are UTF-8, ISO-8859-1, Windows-1251, GB2312, etc.">
<ph name="ENCODING_CATEGORY">$1<ex>Japanese</ex></ph> (<ph name="ENCODING_NAME">$2<ex>Shift_JIS</ex></ph>)
</message>
<message name="IDS_ENCODING_UNICODE" desc="The text label of Unicode encodings">
Unicode
</message>
<message name="IDS_ENCODING_WESTERN" desc="The text label of West European character encoding">
Western
</message>
<message name="IDS_ENCODING_SIMP_CHINESE" desc="The text label of Simplified Chinese encodings">
Chinese Simplified
</message>
<message name="IDS_ENCODING_TRAD_CHINESE" desc="The text label of Tradtional Chinese encodings">
Chinese Traditional
</message>
<message name="IDS_ENCODING_KOREAN" desc="The text label of Korean encoding">
Korean
</message>
<message name="IDS_ENCODING_JAPANESE" desc="The text label of Japanese encodings">
Japanese
</message>
<message name="IDS_ENCODING_THAI" desc="The text label of encoding thai lanuage">
Thai
</message>
<message name="IDS_ENCODING_CENTRAL_EUROPEAN" desc="The text label of encoding Central European">
Central European
</message>
<message name="IDS_ENCODING_CYRILLIC" desc="The text label of Cyrillic encodings">
Cyrillic
</message>
<message name="IDS_ENCODING_GREEK" desc="The text label of Greek encodings">
Greek
</message>
<message name="IDS_ENCODING_BALTIC" desc="The text label of Baltic encodings">
Baltic
</message>
<message name="IDS_ENCODING_SOUTH_EUROPEAN" desc="The text label of South European encodings">
South European
</message>
<message name="IDS_ENCODING_NORDIC" desc="The text label of Nordic encoding">
Nordic
</message>
<message name="IDS_ENCODING_CELTIC" desc="The text label of Celtic encodings">
Celtic
</message>
<message name="IDS_ENCODING_ROMANIAN" desc="The text label of Romanian encoding">
Romanian
</message>
<message name="IDS_ENCODING_TURKISH" desc="The text label of Turkish encodings">
Turkish
</message>
<message name="IDS_ENCODING_ARABIC" desc="The text label of Arabic encodings">
Arabic
</message>
<message name="IDS_ENCODING_HEBREW" desc="The text label of Hebrew encodings">
Hebrew
</message>
<message name="IDS_ENCODING_VIETNAMESE" desc="The text label of Vietnamese encoding">
Vietnamese
</message>
<message name="IDS_DEVELOPER_MENU" desc="The text label of the Developer submenu">
Developer
</message>
<message name="IDS_VIEW_SOURCE" desc="The text label of the View Page Source menu item">
View s&ource
</message>
<message name="IDS_DEBUGGER" desc="The text label of the JavaScript debugger menu item">
Debug JavaScript
</message>
<message name="IDS_REPORT_BUG" desc="The text label of the Report Bug menu item">
&Report bug or broken website...
</message>
<message name="IDS_JS_CONSOLE" desc="The text the menu to show the JS console">
&JavaScript console
</message>
<message name="IDS_TASK_MANAGER" desc="The text label of the Task Manager menu item">
&Task manager
</message>
<message name="IDS_RESTORE_TAB" desc="The text label of the Restore Tab menu item">
R&eopen closed tab
</message>
<message name="IDS_RESTORE_WINDOW" desc="The text label of the Restore Window menu item">
R&eopen closed window
</message>
<!-- This really belongs under Generic Terms above. -->
<message name="IDS_CLOSE" desc="A generic term for Close on buttons and menus.">
Close
</message>
<!-- XPFrame buttons tooltips -->
<message name="IDS_XPFRAME_MINIMIZE_TOOLTIP" desc="The tooltip used for the minimize button">
Minimize
</message>
<message name="IDS_XPFRAME_RESTORE_TOOLTIP" desc="The tooltip used for the restore button">
Restore
</message>
<message name="IDS_XPFRAME_MAXIMIZE_TOOLTIP" desc="The tooltip used for the maximize button">
Maximize
</message>
<message name="IDS_XPFRAME_CLOSE_TOOLTIP" desc="The tooltip used for the close button">
Close
</message>
<!-- App menu -->
<message name="IDS_IMPORT_SETTINGS" desc="The text label for the Import menu item">
&Import bookmarks && settings...
</message>
<message name="IDS_SHOW_HISTORY" desc="The show history menu in the app menu">
&History
</message>
<message name="IDS_SHOW_BOOKMARK_BAR" desc="The toggle to show the bookmark bar">
&Always show bookmarks bar
</message>
<message name="IDS_FULLSCREEN" desc="Switches into fullscreen mode">
&Full screen
</message>
<message name="IDS_CLEAR_BROWSING_DATA" desc="The text label for the menu item for clearing of browsing data">
&Clear browsing data...
</message>
<message name="IDS_SHOW_DOWNLOADS" desc="The show downloads menu in the app menu">
&Downloads
</message>
<message name="IDS_OPTIONS" desc="The text label of the Options menu item">
&Options
</message>
<message name="IDS_HELP_PAGE" desc="The text label of the Help menu item">
H&elp
</message>
<message name="IDS_ABOUT" desc="The text label of the About Chrome menu item">
About &<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>
</message>
<message name="IDS_EXIT" desc="The text label of the Exit menu item">
E&xit
</message>
<!-- Keywords -->
<message name="IDS_KEYWORD_SEARCH"
desc="The description for a chrome keyword search match in the Omnibox dropdown">
Search <ph name="SITE_NAME">$1<ex>www.google.com</ex></ph> for <ph name="SEARCH_TERMS">$2<ex>flowers</ex></ph>
</message>
<message name="IDS_EMPTY_KEYWORD_VALUE"
desc="Shown in the location bar drop down when the user enters a string that matches a chrome keyword, but they haven't entered any text following the chrome keyword">
<enter query>
</message>
<message name="IDS_EDIT_SEARCH_ENGINES"
desc="Title of the popup menu item for editing search engines">
&Edit search engines...
</message>
<!-- Search Engine Preferences-->
<message name="IDS_SEARCH_ENGINES_EDITOR_WINDOW_TITLE"
desc="Title of the search engines window">
Search Engines
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_KEYWORD_COLUMN"
desc="Title of the keyword column in the search engines editor">
Keyword
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_DESCRIPTION_COLUMN"
desc="Title of the description column in the search engines editor">
Name
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_DESCRIPTION_LABEL"
desc="Prefix before the search engine description text field">
Name:
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_KEYWORD_LABEL"
desc="Prefix before the search engine keyword text field">
Keyword:
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_URL_LABEL"
desc="Prefix before the URL text field">
URL:
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_URL_DESCRIPTION_LABEL"
desc="Describes how to escape the url">
Insert <ph name="SEARCH_TERMS_LITERAL">%s</ph> in the URL where the search terms should appear.
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_NEW_BUTTON"
desc="Text of the new button in the search engines editor">
Add
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_REMOVE_BUTTON"
desc="Text of the remove button in the search engines editor">
Remove
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_EDIT_BUTTON"
desc="Text of the edit button in the search engines editor">
Edit
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_MAKE_DEFAULT_BUTTON"
desc="Text of the button that makes the selected endint the default search engine">
Make Default
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_EDIT_WINDOW_TITLE"
desc="Text of the window title when editing a search engine">
Edit Search Engine
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_NEW_WINDOW_TITLE"
desc="Text of the window title when adding a search engine">
Add Search Engine
</message>
<message name="IDS_SEARCH_ENGINES_INVALID_TITLE_TT"
desc="Text of tooltip shown in the keyword editor when the title is invalid">
Title must contain at least one character
</message>
<message name="IDS_SEARCH_ENGINES_INVALID_URL_TT"
desc="Text of tooltip shown in the keyword editor when the url is invalid">
Must be a valid URL
</message>
<message name="IDS_SEARCH_ENGINES_INVALID_KEYWORD_TT"
desc="Text of tooltip shown in the keyword editor when the keyword is invalid">
Keyword must be empty or unique
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_MAIN_SEPARATOR"
desc="Title above the set of keywords the user has modified and or explicitly created">
Default search options
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_OTHER_SEPARATOR"
desc="Title above the set of keywords Chrome automatically created as the user browses">
Other search engines
</message>
<message name="IDS_SEARCH_ENGINES_EDITOR_DEFAULT_ENGINE"
desc="Engine name displayed for the engine in the list that is currently marked as default">
<ph name="ENGINE_NAME">$1<ex>Google</ex></ph> (Default)
</message>
<!-- TODO(jungshik) : Improve the description to minimize translator errors. -->
<message name="IDS_TIME_SECS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> secs
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_SEC_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> sec
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_SEC_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ar', 'ro', 'lv']">
<message name="IDS_TIME_SECS_ZERO"
desc="NUMBER_ZERO is 0 (Arabic, Latvian) or 0, 2..19, 101..119, ... (Romanian). For other languages, just copy the source string.">
<ph name="NUMBER_ZERO"><ex>0</ex>#</ph> secs
</message>
</if>
<if expr="lang not in ['ar', 'ro', 'lv']">
<message translateable="false" name="IDS_TIME_SECS_ZERO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_SECS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> secs
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_SECS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_SECS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> secs
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_SECS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_SECS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> secs
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_SECS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_MINS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> mins
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_MIN_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> min
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_MIN_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_MINS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> mins
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_MINS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_MINS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> mins
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_MINS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_MINS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> mins
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_MINS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_HOURS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> hours
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_HOUR_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> hour
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_HOUR_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_HOURS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> hours
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_HOURS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_HOURS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> hours
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_HOURS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_HOURS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> hours
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_HOURS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_DAYS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> days
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_DAY_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> day
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_DAY_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_DAYS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> days
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_DAYS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_DAYS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> days
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_DAYS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_DAYS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> days
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_DAYS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_REMAINING_SECS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> secs left
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_REMAINING_SEC_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> sec left
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_REMAINING_SEC_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ar', 'ro', 'lv']">
<message name="IDS_TIME_REMAINING_SECS_ZERO"
desc="NUMBER_ZERO is 0 (Arabic, Latvian) or 0, 2..19, 101..119, ... (Romanian). For other languages, just copy the source string.">
<ph name="NUMBER_ZERO"><ex>0</ex>#</ph> secs left
</message>
</if>
<if expr="lang not in ['ar', 'ro', 'lv']">
<message translateable="false" name="IDS_TIME_REMAINING_SECS_ZERO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_SECS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> secs left
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_SECS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_SECS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> secs left
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_SECS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_REMAINING_SECS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> secs left
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_REMAINING_SECS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_REMAINING_MINS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> mins left
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_REMAINING_MIN_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> min left
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_REMAINING_MIN_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_MINS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> mins left
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_MINS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_MINS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> mins left
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_MINS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_REMAINING_MINS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> mins left
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_REMAINING_MINS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_REMAINING_HOURS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> hours left
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_REMAINING_HOUR_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> hour left
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_REMAINING_HOUR_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_HOURS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> hours left
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_HOURS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_HOURS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> hours left
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_HOURS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_REMAINING_HOURS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> hours left
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_REMAINING_HOURS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_REMAINING_DAYS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> days left
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_REMAINING_DAY_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> day left
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_REMAINING_DAY_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_DAYS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> days left
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_DAYS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_REMAINING_DAYS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> days left
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_REMAINING_DAYS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_REMAINING_DAYS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> days left
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_REMAINING_DAYS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_ELAPSED_SECS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> secs ago
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_ELAPSED_SEC_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> sec ago
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_ELAPSED_SEC_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ar', 'ro', 'lv']">
<message name="IDS_TIME_ELAPSED_SECS_ZERO"
desc="NUMBER_ZERO is 0 (Arabic, Latvian) or 0, 2..19, 101..119, ... (Romanian). For other languages, just copy the source string.">
<ph name="NUMBER_ZERO"><ex>0</ex>#</ph> secs ago
</message>
</if>
<if expr="lang not in ['ar', 'ro', 'lv']">
<message translateable="false" name="IDS_TIME_ELAPSED_SECS_ZERO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_SECS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> secs ago
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_SECS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_SECS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> secs ago
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_SECS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_ELAPSED_SECS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> secs ago
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_ELAPSED_SECS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_ELAPSED_MINS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> mins ago
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_ELAPSED_MIN_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> min ago
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_ELAPSED_MIN_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_MINS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> mins ago
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_MINS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_MINS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> mins ago
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_MINS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_ELAPSED_MINS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> mins ago
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_ELAPSED_MINS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_ELAPSED_HOURS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> hours ago
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_ELAPSED_HOUR_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> hour ago
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_ELAPSED_HOUR_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_HOURS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> hours ago
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_HOURS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_HOURS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> hours ago
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_HOURS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_ELAPSED_HOURS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> hours ago
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_ELAPSED_HOURS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_TIME_ELAPSED_DAYS_DEFAULT"
desc="This is necessary for every language. This is the default for all the numbers NOT covered by special cases (singular, dual/two, few, many) some languages need. For CJK, Vietnamese, and Turkish, this is the only string necessary. For languages with singular-plural distinction, this is generic plural. For Lithuanian, NUMBER_DEFAULT is 11 .. 19.">
<ph name="NUMBER_DEFAULT"><ex>37</ex>#</ph> days ago
</message>
<if expr="lang not in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message name="IDS_TIME_ELAPSED_DAY_SINGULAR"
desc="NUMBER_ONE is one or one-like numbers : 1 (many European languages), 1 and 0 (French and Brazillian Portugese), 1,21,31, .. (Russian, Ukrainian, Croatian, Servian, Latvian, Lithuanian), or 1, 101, 201, .. (Slovenian). Do NOT translate this for CJK, Vietnamese and Turkish, but just copy the source string.">
<ph name="NUMBER_ONE"><ex>1</ex>#</ph> day ago
</message>
</if>
<if expr="lang in ['zh-CN', 'zh-TW', 'ko', 'ja', 'vi', 'tr']">
<message translateable="false" name="IDS_TIME_ELAPSED_DAY_SINGULAR"
desc="">
NA
</message>
</if>
<if expr="lang in ['ga', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_DAYS_TWO"
desc="NUMBER_TWO is two or two-like/dual numbers : 2 (Arabic and Irish) or 2, 102, 202 ... (Slovenian). For other languages, just copy the source string.">
<ph name="NUMBER_TWO"><ex>2</ex>#</ph> days ago
</message>
</if>
<if expr="lang not in ['ga', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_DAYS_TWO"
desc="">
NA
</message>
</if>
<if expr="lang in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message name="IDS_TIME_ELAPSED_DAYS_FEW"
desc="NUMBER_FEW is few or few-like numbers in Arabic, Russian, Polish, Croatian, Serbian, Ukrainian, Czech, Slovak, Slovenian, Latvian. For other languages, just copy the source string.">
<ph name="NUMBER_FEW"><ex>3</ex>#</ph> days ago
</message>
</if>
<if expr="lang not in ['ru', 'lt', 'hr', 'uk', 'cs', 'sk', 'pl', 'sl', 'ar']">
<message translateable="false" name="IDS_TIME_ELAPSED_DAYS_FEW"
desc="">
NA
</message>
</if>
<if expr="lang == 'ar'">
<message name="IDS_TIME_ELAPSED_DAYS_MANY"
desc="NUMBER_MANY is 11 through 99 in Arabic. For all other languages, just copy the source string.">
<ph name="NUMBER_MANY"><ex>23</ex>#</ph> days ago
</message>
</if>
<if expr="lang != 'ar'">
<message translateable="false" name="IDS_TIME_ELAPSED_DAYS_MANY"
desc="">
NA
</message>
</if>
<message name="IDS_PAST_TIME_TODAY" desc="Relative day today">
Today
</message>
<message name="IDS_PAST_TIME_YESTERDAY" desc="Relative day yesterday">
Yesterday
</message>
<!-- Download Shelf-->
<message name="IDS_SHOW_ALL_DOWNLOADS"
desc="Link label shown at the corner of the download shelf">
Show all downloads...
</message>
<!-- Download Shelf Items -->
<message name="IDS_DOWNLOAD_STATUS_STARTING"
desc="When starting a download, let the user know we're starting the download.">
Starting...
</message>
<message name="IDS_DOWNLOAD_STATUS_IN_PROGRESS"
desc="Size and units downloaded, time remaining.">
<ph name="DOWNLOAD_RECEIVED">$1<ex>54kB</ex></ph>/<ph name="DOWNLOAD_TOTAL">$2<ex>154MB</ex></ph>, <ph name="TIME_LEFT">$3<ex>5s</ex></ph>
</message>
<message name="IDS_DOWNLOAD_STATUS_OPEN_IN"
desc="Time left until the file download completes and the file is opened.">
Opening in <ph name="TIME_REMAINING">$1<ex>5 sec</ex></ph>...
</message>
<message name="IDS_DOWNLOAD_STATUS_OPEN_WHEN_COMPLETE"
desc="Status that the file download will be opened when the download completes.">
Opening when complete
</message>
<message name="IDS_DOWNLOAD_STATUS_OPENING"
desc="Temporary status shown when a user has clicked to open a downloaded file.">
Opening <ph name="FILE">$1<ex>image.jpg</ex></ph>...
</message>
<message name="IDS_DOWNLOAD_STATUS_COMPLETE"
desc="Size and units downloaded.">
<ph name="DOWNLOAD_SIZE">$1<ex>54kB</ex></ph>, Complete
</message>
<message name="IDS_DOWNLOAD_STATUS_CANCELLED"
desc="Size and units downloaded, for the cancelled state.">
<ph name="DOWNLOAD_SIZE">$1<ex>54kB</ex></ph>, Cancelled
</message>
<message name="IDS_DOWNLOAD_BUTTON_OPEN"
desc="Button open text.">
Open
</message>
<message name="IDS_DOWNLOAD_BUTTON_CANCEL"
desc="Button close text.">
Cancel
</message>
<message name="IDS_PROMPT_DANGEROUS_DOWNLOAD"
desc="Message shown to the user to validate the download of a dangerous file.">
This type of file can harm your computer. Are you sure you want to download <ph name="FILE_NAME">$1<ex>malware.exe</ex></ph>?
</message>
<message name="IDS_SAVE_DOWNLOAD"
desc="Text for the button used to validate the downloading of a dangerous download.">
Save
</message>
<message name="IDS_DISCARD_DOWNLOAD"
desc="Text for the button used to stop a dangerous download.">
Discard
</message>
<!-- Download Tab Items -->
<message name="IDS_DOWNLOAD_LINK_PAUSE"
desc="In the download view, 'Pause' link text">
Pause
</message>
<message name="IDS_DOWNLOAD_SEARCH_BUTTON" desc="Title of the button in the download page that triggers a search">
Search downloads
</message>
<message name="IDS_DOWNLOAD_NO_RESULTS" desc="Descriptive text when no results are found.">
No results
</message>
<message name="IDS_DOWNLOAD_SEARCHRESULTSFOR" desc="Format string for search results">
Search results for '<ph name="SEARCH_STRING">%s</ph>'
</message>
<message name="IDS_DOWNLOAD_LINK_RESUME"
desc="In the download view, 'Resume' link text">
Resume
</message>
<message name="IDS_DOWNLOAD_LINK_CANCEL"
desc="In the download view, 'Cancel' link text">
Cancel
</message>
<message name="IDS_DOWNLOAD_LINK_SHOW"
desc="In the download view, 'Show in folder' link text">
Show in folder
</message>
<message name="IDS_DOWNLOAD_TAB_CANCELLED"
desc="Cancel link text">
Cancelled
</message>
<message name="IDS_DOWNLOAD_TAB_PROGRESS_STATUS_TIME_UNKNOWN"
desc="The status text for a download in progress in the download manager. This includes information such as speed and received byte counts and is used when we do not know the remaining time">
<ph name="SPEED">$1<ex>10kB/s</ex></ph> - <ph name="RECEIVED_AMOUNT">$2<ex>40kB</ex></ph>
</message>
<message name="IDS_DOWNLOAD_TAB_PROGRESS_STATUS"
desc="The status text for a download in progress in the download manager. This includes information such as speed, received byte counts as well as remaining time">
<ph name="SPEED">$1<ex>10kB/s</ex></ph> - <ph name="RECEIVED_AMOUNT">$2<ex>40kB</ex></ph>, <ph name="TIME_REMAINING">$3<ex>42 mins left</ex></ph>
</message>
<message name="IDS_DOWNLOAD_TAB_PROGRESS_SIZE"
desc="Speed and received byte counts (with total)">
<ph name="RECEIVED_AMOUNT">$1<ex>40kB</ex></ph> of <ph name="TOTAL_SIZE">$2<ex>250kB</ex></ph>
</message>
<message name="IDS_DOWNLOAD_PROGRESS_PAUSED"
desc="Indicate the download is in progress but paused">
Paused
</message>
<message name="IDS_DOWNLOAD_LINK_CLEAR_ALL"
desc="Clear all downloads link">
Clear all
</message>
<!-- Download Context Menu Items -->
<message name="IDS_DOWNLOAD_MENU_COPY_PATH"
desc="Download context menu copy file path to clipboard">
Copy file &path
</message>
<message name="IDS_DOWNLOAD_MENU_COPY_FILE"
desc="Download context menu copy file to clipboard">
Copy &file
</message>
<message name="IDS_DOWNLOAD_MENU_OPEN_WHEN_COMPLETE"
desc="Download context menu open when download is finished">
Open when &done
</message>
<message name="IDS_DOWNLOAD_MENU_OPEN"
desc="Download context menu open download">
&Open
</message>
<message name="IDS_DOWNLOAD_MENU_ALWAYS_OPEN_TYPE"
desc="Download context menu open when download is finished">
&Always open files of this type
</message>
<message name="IDS_DOWNLOAD_MENU_CANCEL"
desc="Download context menu cancel">
&Cancel
</message>
<message name="IDS_DOWNLOAD_MENU_REMOVE_ITEM"
desc="Download context menu remove">
&Remove
</message>
<!-- Remove in-progress downloads confirmation dialog -->
<message name="IDS_SINGLE_DOWNLOAD_REMOVE_CONFIRM_TITLE" desc="Title of the dialog asking for user confirmation to close the browser when one download is in-progress.">
You have one download in progress. If you close Google Chrome now, this download will be canceled.
</message>
<message name="IDS_MULTIPLE_DOWNLOADS_REMOVE_CONFIRM_TITLE" desc="Title of the dialog asking for user confirmation to close the browser when multiple downloads are in-progress.">
You have <ph name="DOWNLOAD_COUNT">$1<ex>3</ex></ph> downloads in progress. If you close Google Chrome now, these downloads will be canceled.
</message>
<message name="IDS_SINGLE_DOWNLOAD_REMOVE_CONFIRM_OK_BUTTON_LABEL" desc="Button text for OKing to close the browser when a single download is in-progress.">
Close and cancel download
</message>
<message name="IDS_MULTIPLE_DOWNLOADS_REMOVE_CONFIRM_OK_BUTTON_LABEL" desc="Button text for OKing to close the browser when multiple downloads are in-progress.">
Close and cancel downloads
</message>
<message name="IDS_SINGLE_DOWNLOAD_REMOVE_CONFIRM_CANCEL_BUTTON_LABEL" desc="Button text for canceling the closing of the browser when a single download is in-progress.">
Wait for download to finish
</message>
<message name="IDS_MULTIPLE_DOWNLOADS_REMOVE_CONFIRM_CANCEL_BUTTON_LABEL" desc="Button text for canceling the closing of the browser when downloads are in-progress.">
Wait for downloads to finish
</message>
<!-- Gears shortcut strings -->
<message name="IDS_CREATE_SHORTCUTS" desc="Default installation menu label">
Create application &shortcuts...
</message>
<!-- SSL error strings -->
<message name="IDS_SEVERAL_SSL_ERRORS" desc="Bubble info header text when there is more than 1 error">
There are several SSL errors on this page:
</message>
<message name="IDS_SSL_MIXED_CONTENT_TITLE" desc="Title for mixed SSL / non-SSL content">
This page contains insecure content.
</message>
<message name="IDS_SSL_MIXED_CONTENT_DESCRIPTION" desc="Description for mixed SSL / non-SSL content">
This page contains some insecure content
</message>
<message name="IDS_SSL_MIXED_CONTENT_DETAILS" desc="Description for mixed SSL / non-SSL content">
This page is not retrieved entirely over a secure connection. It contains some content retrieved over insecure connections.
</message>
<message name="IDS_SSL_UNSAFE_CONTENT_TITLE" desc="Title for broken https resources in safe SSL page">
This page contains insecure content.
</message>
<message name="IDS_SSL_UNSAFE_CONTENT_DESCRIPTION" desc="Description for broken https resources in safe SSL page">
This page contains some insecure content
</message>
<message name="IDS_SSL_UNSAFE_CONTENT_DETAILS" desc="Title for broken https resources in safe SSL page">
Some content on this page was retrieved over a connection with SSL errors.
</message>
<!-- Certificate error strings -->
<message name="IDS_CERT_ERROR_EXTRA_INFO_TITLE" desc="The title for the extra information section displayed when a page contains a certificate error">
Help me understand
</message>
<message name="IDS_CERT_ERROR_EXTRA_INFO_1" desc="1st paragraph of extra information for any certificate error">
When you connect to a secure website, the server hosting that site presents your browser with something called a "certificate" to verify its identity. This certificate contains identity information, such as the address of the website, which is verified by a third party that your computer trusts. By checking that the address in the certificate matches the address of the website, it is possible to verify that you are securely communicating with the website you intended, and not a third party (such as an attacker on your network).
</message>
<message name="IDS_CERT_ERROR_COMMON_NAME_INVALID_TITLE" desc="Title for an unsafe common name in an X509 certificate">
This is probably not the site you are looking for!
</message>
<message name="IDS_CERT_ERROR_COMMON_NAME_INVALID_DETAILS" desc="Details for an unsafe common name in an X509 certificate">
You attempted to reach <strong><ph name="DOMAIN">$1<ex>paypal.com</ex></ph></strong>, but instead you actually reached a server identifying itself as <strong><ph name="DOMAIN2">$2<ex>fakepaypal.com</ex></ph></strong>. This may be caused by a misconfiguration on the server or by something more serious. An attacker on your network could be trying to get you to visit a fake (and potentially harmful) version of <strong><ph name="DOMAIN3">$3<ex>paypal.com</ex></ph></strong>. You should not proceed.
</message>
<message name="IDS_CERT_ERROR_COMMON_NAME_INVALID_DESCRIPTION" desc="Description for an unsafe common name in an X509 certificate">
Server's certificate does not match the URL
</message>
<message name="IDS_CERT_ERROR_EXPIRED_TITLE" desc="Title for an expired X509 certificate">
The site's security certificate has expired!
</message>
<message name="IDS_CERT_ERROR_EXPIRED_DETAILS_EXTRA_INFO_2" desc="2nd paragraph of extra information for an expired X509 certificate">
For a certificate which has not expired, the issuer of that certificate is responsible for maintaining something called a "revocation list". If a certificate is ever compromised, the issuer can revoke it by adding it to the revocation list, and then this certificate will no longer be trusted by your browser. Revocation status is not required to be maintained for expired certificates, so while this certificate used to be valid for the website you're visiting, at this point it is not possible to determine whether the certificate was compromised and subsequently revoked, or whether it remains secure. As such it is impossible to tell whether you're communicating with the legitimate web site, or whether the certificate was compromised and is now in the possession of an attacker with whom you are communicating. You should not proceed past this point.
</message>
<message name="IDS_CERT_ERROR_EXPIRED_DESCRIPTION" desc="Description for an expired X509 certificate">
Server's certificate has expired
</message>
<message name="IDS_CERT_ERROR_NOT_YET_VALID_TITLE" desc="Title for an X509 certificate that is not yet valid">
The server's security certificate is not yet valid!
</message>
<message name="IDS_CERT_ERROR_NOT_YET_VALID_DETAILS_EXTRA_INFO_2" desc="2nd paragraph of extra information for a X509 certificate that is not yet valid">
Certificates have a validity period, much like any identity document (such as a passport) that you may have. The certificate presented to your browser is not yet valid. When a certificate is outside of its validity period, certain information about the status of the certificate (whether it has been revoked and should no longer be trusted) is not required to be maintained. As such, it is not possible to verify that this certificate is trustworthy. You should not proceed.
</message>
<message name="IDS_CERT_ERROR_NOT_YET_VALID_DESCRIPTION" desc="Description for an X509 certificate that is not yet valid">
Server's certificate is not yet valid
</message>
<message name="IDS_CERT_ERROR_AUTHORITY_INVALID_TITLE" desc="Title for an X509 certificate with an invalid authority">
The site's security certificate is not trusted!
</message>
<message name="IDS_CERT_ERROR_AUTHORITY_INVALID_EXTRA_INFO_2" desc="2nd paragraph of extra information for a X509 certificate with an invalid authority">
In this case, the certificate has not been verified by a third party that your computer trusts. Anyone can create a certificate claiming to be whatever website they choose, which is why it must be verified by a trusted third party. Without that verification, the identity information in the certificate is meaningless. It is therefore not possible to verify that you are communicating with <strong><ph name="DOMAIN">$1<ex>paypal.com</ex></ph></strong> instead of an attacker who generated his own certificate claiming to be <strong><ph name="DOMAIN2">$2<ex>paypal.com</ex></ph></strong>. You should not proceed past this point.
</message>
<message name="IDS_CERT_ERROR_AUTHORITY_INVALID_EXTRA_INFO_3" desc="3rd paragraph of extra information for a X509 certificate with an invalid authority">
If, however, you work in an organization that generates its own certificates, and you are trying to connect to an internal website of that organization using such a certificate, you may be able to solve this problem securely. You can import your organization's root certificate as a "root certificate", and then certificates issued or verified by your organization will be trusted and you will not see this error next time you try to connect to an internal website. Contact your organization's help staff for assistance in adding a new root certificate to Windows.
</message>
<message name="IDS_CERT_ERROR_AUTHORITY_INVALID_DESCRIPTION" desc="Description for an X509 certificate with an invalid authority">
Server's certificate is not trusted
</message>
<message name="IDS_CERT_ERROR_CONTAINS_ERRORS_TITLE" desc="Title of the error page for an X509 certificate that contains errors">
The server's security certificate has errors!
</message>
<message name="IDS_CERT_ERROR_CONTAINS_ERRORS_EXTRA_INFO_2" desc="2nd paragraph of extra information for a X509 certificate that contains errors">
In this case, the certificate presented to your browser has errors and cannot be understood. This may mean that we cannot understand the identity information within the certificate, or certain other information in the certificate used to secure the connection. You should not proceed.
</message>
<message name="IDS_CERT_ERROR_CONTAINS_ERRORS_DESCRIPTION" desc="Description of the error page for an X509 certificate that contains errors">
Server's certificate contains errors
</message>
<message name="IDS_CERT_ERROR_UNABLE_TO_CHECK_REVOCATION_TITLE" desc="Title for being unable to check revocation status of an X509 certificate">
Failed to check revocation.
</message>
<message name="IDS_CERT_ERROR_UNABLE_TO_CHECK_REVOCATION_DETAILS" desc="Details for being unable to check revocation status of an X509 certificate">
Unable to check whether the server's certificate was revoked.
</message>
<message name="IDS_CERT_ERROR_UNABLE_TO_CHECK_REVOCATION_INFO_BAR" desc="Info bar for being unable to check revocation status of an X509 certificate">
Unable to check whether the server's certificate was revoked.
</message>
<message name="IDS_CERT_ERROR_UNABLE_TO_CHECK_REVOCATION_DESCRIPTION" desc="Description for being unable to check revocation status of an X509 certificate">
Server's certificate cannot be checked
</message>
<message name="IDS_CERT_ERROR_NO_REVOCATION_MECHANISM_TITLE" desc="Title for not finding a revocation mechanism in an X509 certificate">
No revocation mechanism found.
</message>
<message name="IDS_CERT_ERROR_NO_REVOCATION_MECHANISM_DETAILS" desc="Details for not finding a revocation mechanism in an X509 certificate">
No revocation mechanism found in the server's certificate.
</message>
<message name="IDS_CERT_ERROR_NO_REVOCATION_MECHANISM_DESCRIPTION" desc="Description for not finding a revocation mechanism in an X509 certificate">
No revocation mechanism found
</message>
<message name="IDS_CERT_ERROR_REVOKED_CERT_TITLE" desc="Title of the error page for a revoked certificate">
The server's security certificate is revoked!
</message>
<message name="IDS_CERT_ERROR_REVOKED_CERT_DETAILS" desc="Details of the error page for a revoked certificate">
You attempted to reach <strong><ph name="DOMAIN">$1<ex>paypal.com</ex></ph></strong>, but the certificate that the server presented has been revoked by its issuer. This means that the security credentials the server presented absolutely should not be trusted. You may be communicating with an attacker. You should not proceed.
</message>
<message name="IDS_CERT_ERROR_REVOKED_CERT_EXTRA_INFO_2" desc="2nd paragraph of extra information for a revoked X509 certificate">
In this case, the certificate presented to your browser has been revoked by its issuer. This usually means that the integrity of this certificate has been compromised, and that the certificate should not be trusted. You absolutely should not proceed past this point.
</message>
<message name="IDS_CERT_ERROR_REVOKED_CERT_DESCRIPTION" desc="Description of the error page for a revoked certificate">
Server's certificate has been revoked
</message>
<message name="IDS_CERT_ERROR_INVALID_CERT_TITLE" desc="Title of the error page for an X509 certificate that is invalid">
Invalid Server Certificate
</message>
<message name="IDS_CERT_ERROR_INVALID_CERT_DETAILS" desc="Details of the error page for an X509 certificate that is invalid">
A request failed because the server's certificate was invalid.
</message>
<message name="IDS_CERT_ERROR_INVALID_CERT_DESCRIPTION" desc="Description of the error page for an X509 certificate that is invalid">
Server's certificate is invalid
</message>
<message name="IDS_CERT_ERROR_UNKNOWN_ERROR_TITLE" desc="Title of the error page for an unknown ssl error">
Unknown server certificate error
</message>
<message name="IDS_CERT_ERROR_UNKNOWN_ERROR_DETAILS" desc="Details of the error page for an unknown ssl error">
An unknown error has occurred.
</message>
<message name="IDS_CERT_ERROR_UNKNOWN_ERROR_DESCRIPTION" desc="Description of the error page for an unknown ssl error">
Unknown server certificate error
</message>
<!-- General wizard strings -->
<message name="IDS_WIZARD_NEXT" desc="The wizard next button label">
Next
</message>
<message name="IDS_WIZARD_DONE" desc="The wizard done button label">
Done
</message>
<message name="IDS_WIZARD_PREVIOUS" desc="The wizard previous button label">
Previous
</message>
<message name="IDS_WIZARD_CANCEL" desc="The wizard cancel button label">
Cancel
</message>
<!-- Basic Auth Dialog -->
<message name="IDS_LOGIN_DIALOG_TITLE" desc="String to be displayed in the title bar of the login prompt dialog">
Authentication Required
</message>
<message name="IDS_LOGIN_DIALOG_DESCRIPTION" desc="String to be displayed in the login prompt dialog to explain what the user needs to do">
The server <ph name="DOMAIN">$1<ex>google.com</ex></ph> at <ph name="REALM">$2<ex>site name</ex></ph> requires a username and password.
</message>
<message name="IDS_LOGIN_DIALOG_DESCRIPTION_NO_REALM" desc="String to be displayed in the login prompt dialog to explain what the user needs to do">
The server <ph name="DOMAIN">$1<ex>google.com</ex></ph> requires a username and password.
</message>
<message name="IDS_LOGIN_DIALOG_USERNAME_FIELD" desc="The label of the username field in the login prompt dialog">
User Name:
</message>
<message name="IDS_LOGIN_DIALOG_PASSWORD_FIELD" desc="The label of the password field in the login prompt dialog">
Password:
</message>
<message name="IDS_LOGIN_DIALOG_OK_BUTTON_LABEL" desc="The label of the 'Log In' button on the login prompt dialog">
Log In
</message>
<!-- FindInPage strings -->
<message name="IDS_FIND_IN_PAGE_COUNT" desc="How many matches found and what item we are showing">
<ph name="ACTIVE_MATCH">$1<ex>1</ex></ph> of <ph name="TOTAL_MATCHCOUNT">$2<ex>5</ex></ph>
</message>
<message name="IDS_FIND_IN_PAGE_HINT_LABEL" desc="A hint label to show in the Find box when the Find box is empty on open">
Find in page
</message>
<message name="IDS_FIND_IN_PAGE_PREVIOUS_TOOLTIP" desc="The tooltip for the previous button">
Previous
</message>
<message name="IDS_FIND_IN_PAGE_NEXT_TOOLTIP" desc="The tooltip for the next button">
Next
</message>
<message name="IDS_FIND_IN_PAGE_CLOSE_TOOLTIP" desc="The tooltip for the close button">
Close find bar
</message>
<!-- Fullscreen mode -->
<message name="IDS_EXIT_FULLSCREEN_MODE" desc="Clickable message displayed on entering fullscreen mode to tell users how to return to normal mode">
Exit full screen (<ph name="ACCELERATOR">$1<ex>F11</ex></ph>)
</message>
<!-- Task Manager Window -->
<message name="IDS_TASK_MANAGER_KILL" desc="The caption of the Task Manager kill button">
End process
</message>
<message name="IDS_TASK_MANAGER_ABOUT_MEMORY_LINK" desc="The caption of the Task Manager link to about:memory">
Stats for nerds
</message>
<message name="IDS_TASK_MANAGER_PROCESS_ID_COLUMN" desc="The title for Task Manager process ID column.">
Process ID
</message>
<message name="IDS_TASK_MANAGER_PAGE_COLUMN" desc="The text of the page column">
Page
</message>
<message name="IDS_TASK_MANAGER_NET_COLUMN" desc="The text of the network usage column">
Network
</message>
<message name="IDS_TASK_MANAGER_CPU_COLUMN" desc="The text of the CPU usage column">
CPU
</message>
<message name="IDS_TASK_MANAGER_PHYSICAL_MEM_COLUMN" desc="Task manager process memory column. This is the similar to the process 'working set' reported by the Windows Task Manager">
Memory
</message>
<message name="IDS_TASK_MANAGER_PRIVATE_MEM_COLUMN" desc="Task manager process private memory column. This is the allocated size that cannot be shared with other processes">
Private Memory
</message>
<message name="IDS_TASK_MANAGER_SHARED_MEM_COLUMN" desc="Task manager process shared memory column. Shows the size of the memory used by the process which is shared with other processes">
Shared Memory
</message>
<message name="IDS_TASK_MANAGER_MEM_CELL_TEXT" desc="The value displayed in the memory usage cells.">
<ph name="NUM_KILOBYTES">$1<ex>5,000</ex></ph>K
</message>
<message name="IDS_TASK_MANAGER_NA_CELL_TEXT" desc="The value displayed for network / webcache usage when the information is not available (Not Applicable).">
N/A
</message>
<message name="IDS_TASK_MANAGER_WEB_BROWSER_CELL_TEXT" desc="The text of the web browser process row">
Browser
</message>
<message name="IDS_TASK_MANAGER_TAB_PREFIX" desc="The prefix for a Task Manager Tab row">
Tab: <ph name="TAB_NAME">$1<ex>Google</ex></ph>
</message>
<message name="IDS_TASK_MANAGER_PLUGIN_PREFIX" desc="The prefix for a Task Manager plugin row">
Plug-in: <ph name="PLUGIN_NAME">$1<ex>Unknown Plug-in</ex></ph>
</message>
<message name="IDS_TASK_MANAGER_UNKNOWN_PLUGIN_NAME" desc="The prefix for a Task Manager plugin row">
Unknown plug-in
</message>
<message name="IDS_TASK_MANAGER_WORKER_PREFIX" desc="The prefix for a Task Manager HTML5 Web Worker process row">
Web Worker: <ph name="WORKER_NAME">$1<ex>http://www.domain.com</ex></ph>
</message>
<!-- Session Crashed Info Bar-->
<message name="IDS_SESSION_CRASHED_VIEW_RESTORE_BUTTON" desc="Title of the restore button in the session crashed view.">
Restore
</message>
<!-- about:plugins strings -->
<message name="IDS_ABOUT_PLUGINS_TITLE" desc="Title on the about:plugins page">
About Plug-ins
</message>
<message name="IDS_ABOUT_PLUGINS_HEADING_PLUGS" desc="about:plugins page heading if the user has at least one plugin installed">
Installed plug-ins
</message>
<message name="IDS_ABOUT_PLUGINS_HEADING_NOPLUGS" desc="about:plugins page heading if the user has no plugins installed">
No plug-ins are installed
</message>
<message name="IDS_ABOUT_PLUGINS_FILENAME_LABEL" desc="about:plugins file name label">
File name:
</message>
<message name="IDS_ABOUT_PLUGINS_MIMETYPE_LABEL" desc="about:plugins mime type table heading">
MIME Type
</message>
<message name="IDS_ABOUT_PLUGINS_DESCRIPTION_LABEL" desc="about:plugins description table heading">
Description
</message>
<message name="IDS_ABOUT_PLUGINS_SUFFIX_LABEL" desc="about:plugins suffix table heading">
Suffixes
</message>
<message name="IDS_ABOUT_PLUGINS_ENABLED_LABEL" desc="about:plugins enabled table heading">
Enabled
</message>
<message name="IDS_ABOUT_PLUGINS_ENABLED_YES" desc="about:plugins enabled label">
Yes
</message>
<message name="IDS_ABOUT_PLUGINS_ENABLED_NO" desc="about:plugins not enabled label">
No
</message>
<!-- about:version strings -->
<message name="IDS_ABOUT_VERSION_TITLE" desc="Title on the about:version page">
About Version
</message>
<message name="IDS_ABOUT_VERSION_OFFICIAL" desc="official build on the about:version page">
Official Build
</message>
<message name="IDS_ABOUT_VERSION_UNOFFICIAL" desc="unofficial build on the about:version page">
Developer Build
</message>
<!-- Javascript Dialog Box strings -->
<message name="IDS_JAVASCRIPT_ALERT_DEFAULT_TITLE" desc="Title for Javascript alert if there is no hostname to display">
Javascript Alert
</message>
<message name="IDS_JAVASCRIPT_MESSAGEBOX_DEFAULT_TITLE" desc="Title for Javascript prompt and confirm if there is no hostname to display">
Javascript
</message>
<message name="IDS_JAVASCRIPT_ALERT_TITLE" desc="Title for Javascript alert">
Alert <ph name="SITE">$1<ex>http://www.google.com</ex>
</ph>
</message>
<message name="IDS_JAVASCRIPT_MESSAGEBOX_TITLE" desc="Title for Javascript prompt and confirm">
<ph name="SITE">$1<ex>http://www.google.com</ex></ph>
</message>
<message name="IDS_JAVASCRIPT_MESSAGEBOX_SUPPRESS_OPTION" desc="Optional UI shown on the message box, in the form of a checkbox, allowing the user to suppress additional message boxes from the page.">
Prevent this page from creating additional dialogs.
</message>
<!-- "Before Unload" Dialog Box strings -->
<message name="IDS_BEFOREUNLOAD_MESSAGEBOX_TITLE" desc="Title for the 'before unload' dialog.">
Confirm Navigation
</message>
<message name="IDS_BEFOREUNLOAD_MESSAGEBOX_FOOTER" desc="Text shown at the bottom of the dialog, after the message provided by the script.">
Are you sure you want to leave this page?
</message>
<message name="IDS_BEFOREUNLOAD_MESSAGEBOX_OK_BUTTON_LABEL" desc="The text on the button which navigates the user away from the page.">
Leave this Page
</message>
<message name="IDS_BEFOREUNLOAD_MESSAGEBOX_CANCEL_BUTTON_LABEL" desc="The text on the button which cancels the navigation away from the page.">
Stay on this Page
</message>
<!-- Shelf and Add shelf item dialog -->
<message name="IDS_ASI_ADD_TITLE" desc="Title for the shelf item dialog when adding an item.">
Add page
</message>
<message name="IDS_ASI_ADD" desc="The add button">
Add
</message>
<message name="IDS_ASI_URL" desc="The URL: label in the dialog">
URL:
</message>
<message name="IDS_ASI_TITLE_LABEL" desc="The Title: label in the dialog">
Title:
</message>
<message name="IDS_ASI_DEFAULT_TITLE" desc="The default title for a web page">
Untitled
</message>
<message name="IDS_ASI_PAGE_COLUMN" desc="The page column in the table">
Page
</message>
<message name="IDS_ASI_URL_COLUMN" desc="The URL column in the table">
URL
</message>
<message name="IDS_ASI_DESCRIPTION" desc="Title shown about the recently visited sites table">
Recently visited sites
</message>
<!-- Drag and Drop strings-->
<message name="IDS_UNTITLED_SHORTCUT_FILE_NAME" desc="The name of the Internet Shortcut file created for URLs dragged that have no title">
Untitled Web Page
</message>
<message name="IDS_UNTITLED_IMAGE_FILE_NAME" desc="The name of the Image file created for dragged images that have no file name">
Untitled Web Image
</message>
<!-- Omnibox -->
<message name="IDS_PASTE_AND_GO" desc="The text label of the Paste And Go menu item when the clipboard contains a URL">
Pa&ste and go
</message>
<message name="IDS_PASTE_AND_SEARCH" desc="The text label of the Paste And Go menu item when the clipboard contains a string to search for">
Pa&ste and search
</message>
<message name="IDS_OMNIBOX_EMPTY_TEXT" desc="Text shown if omnibox is empty">
Type to search
</message>
<message name="IDS_OMNIBOX_KEYWORD_HINT" desc="Shown to the user when the url in the omnibox has a keyword associated with it. $1 is replaced with an image showing the tab key and is labelled with IDS_OMNIBOX_KEYWORD_HINT_KEY. $2 is replaced with the description of the keyword.">
Press <ph name="SEARCH_KEY">$1<ex>Tab</ex></ph> to search <ph name="SITE_NAME">$2<ex>google.com</ex></ph>
</message>
<message name="IDS_OMNIBOX_KEYWORD_HINT_KEY">
Tab
</message>
<message name="IDS_OMNIBOX_KEYWORD_TEXT" desc="Text shown in the search button at the front of the omnibox when the user has selected a keyword">
Search <ph name="SITE_NAME">$1<ex>google.com</ex></ph>:
</message>
<!-- TODO(tc): This doesn't handle singular/plural properly. It needs to be reworded. -->
<message name="IDS_OMNIBOX_RECENT_HISTORY" desc="Text shown in the omnibox that shows how many recent matches there are and allows the user to navigate to destinations->history with the selected text.">
See <ph name="NUM_MATCHES">$1<ex>2,123</ex></ph> recent pages in history containing <ph name="SEARCH_TERMS">$2<ex>flowers</ex></ph>
</message>
<message name="IDS_OMNIBOX_RECENT_HISTORY_MANY" desc="Same as IDS_OMNIBOX_RECENT_HISTORY but when there are many results.">
See all pages in history containing <ph name="SEARCH_TERMS">$1<ex>flowers</ex></ph>
</message>
<!-- Native Frame menu -->
<message name="IDS_ALWAYS_ON_TOP" desc="The optional menu in native frame windows for setting the window to be always on top">
Always on top
</message>
<!--Tooltip strings-->
<message name="IDS_TOOLTIP_BACK" desc="The tooltip for back button">
Click to go back, hold to see history
</message>
<message name="IDS_TOOLTIP_FORWARD" desc="The tooltip for forward button">
Click to go forward, hold to see history
</message>
<message name="IDS_TOOLTIP_RELOAD" desc="The tooltip for reload button">
Reload this page
</message>
<message name="IDS_TOOLTIP_HOME" desc="The tooltip for the home button">
Open the homepage
</message>
<message name="IDS_TOOLTIP_STAR" desc="The tooltip for bookmark button">
Bookmark this page
</message>
<message name="IDS_TOOLTIP_STARRED" desc="The tooltip for bookmark button when bookmarked">
Edit bookmark for this page
</message>
<message name="IDS_TOOLTIP_GO_SITE" desc="The tooltip for go button when going to a site">
Go to <ph name="URL">$1<ex>http://www.google.com/</ex></ph>
</message>
<message name="IDS_TOOLTIP_GO_SEARCH" desc="The tooltip for go button when searching for a term">
Search <ph name="ENGINE">$1<ex>Google</ex></ph> for <ph name="SEARCH_TERMS">$2<ex>flowers</ex></ph>
</message>
<message name="IDS_TOOLTIP_STOP" desc="The tooltip for the stop button">
Stop loading this page
</message>
<!--Accessible name/action strings-->
<message name="IDS_ACCACTION_PRESS" desc="The accessible default action for a button.">
Press
</message>
<message name="IDS_ACCNAME_BACK" desc="The accessible name for the back button.">
Back
</message>
<message name="IDS_ACCNAME_FORWARD" desc="The accessible name for the forward button.">
Forward
</message>
<message name="IDS_ACCNAME_RELOAD" desc="The accessible name for the reload button.">
Reload
</message>
<message name="IDS_ACCNAME_HOME" desc="The accessible name for the home button">
Home
</message>
<message name="IDS_ACCNAME_STAR" desc="The accessible name for the bookmark button.">
Bookmark
</message>
<message name="IDS_ACCNAME_LOCATION" desc="The accessible name for the location bar edit field.">
Location
</message>
<message name="IDS_ACCNAME_GO" desc="The accessible name for the go/stop button.">
Go
</message>
<message name="IDS_ACCNAME_PAGE" desc="The accessible name for the page menu.">
Page
</message>
<message name="IDS_ACCNAME_TABSTRIP" desc="The accessible name for the application's tabstrip.">
Tabstrip
</message>
<message name="IDS_ACCNAME_NEWTAB" desc="The accessible name for the New Tab (+) button.">
New Tab
</message>
<message name="IDS_ACCNAME_MINIMIZE" desc="The accessible name for the Minimize button.">
Minimize
</message>
<message name="IDS_ACCNAME_MAXIMIZE" desc="The accessible name for the Maximize button.">
Maximize
</message>
<message name="IDS_ACCNAME_RESTORE" desc="The accessible name for the Restore button.">
Restore
</message>
<message name="IDS_ACCNAME_CLOSE" desc="The accessible name for the Close button.">
Close
</message>
<!-- Browser Hung Plugin Detector -->
<message name="IDS_UNKNOWN_PLUGIN_NAME" desc="Name for a plugin whose name could not be determined">
Unknown
</message>
<message name="IDS_BROWSER_HANGMONITOR_TITLE" desc="Title for the hung plugin message">
Plug-in Unresponsive
</message>
<message name="IDS_BROWSER_HANGMONITOR" desc="A plugin on a page has hung">
The following plug-in is unresponsive: <ph name="PLUGIN_NAME">$1\n<ex>Shockwave\n</ex></ph>Would you like to stop it?
</message>
<message name="IDS_BROWSER_HANGMONITOR_PLUGIN_END" desc="The label of the 'kill plugin' button">
Kill plug-in
</message>
<message name="IDS_BROWSER_HANGMONITOR_RENDERER_TITLE" desc="The title of the 'A renderer has hung' dialog">
Page(s) Unresponsive
</message>
<message name="IDS_BROWSER_HANGMONITOR_RENDERER" desc="A renderer has hung">
The following page(s) have become unresponsive. You can wait for them to become responsive or kill them.
</message>
<message name="IDS_BROWSER_HANGMONITOR_RENDERER_WAIT" desc="The label of the 'wait' button">
Wait
</message>
<message name="IDS_BROWSER_HANGMONITOR_RENDERER_END" desc="The label of the 'kill' button">
Kill pages
</message>
<!-- Passwords and Exceptions Dialog -->
<message name="IDS_PASSWORDS_EXCEPTIONS_WINDOW_TITLE" desc="Title for 'Passwords and exceptions dialog'">
Passwords and Exceptions
</message>
<message name="IDS_PASSWORDS_SHOW_PASSWORDS_TAB_TITLE" desc="Title for 'Saved passwords' tab">
Saved passwords
</message>
<message name="IDS_PASSWORDS_EXCEPTIONS_TAB_TITLE" desc="Title for 'Exceptions' tab">
Exceptions
</message>
<message name="IDS_PASSWORDS_PAGE_VIEW_SITE_COLUMN" desc="Password table view Site column title">
Site
</message>
<message name="IDS_PASSWORDS_PAGE_VIEW_USERNAME_COLUMN" desc="Password table view Username column title">
Username
</message>
<message name="IDS_PASSWORDS_PAGE_VIEW_REMOVE_BUTTON" desc="Passwords page view's 'Remove' button text">
Remove
</message>
<message name="IDS_PASSWORDS_PAGE_VIEW_REMOVE_ALL_BUTTON" desc="Passwords page view's 'Remove all' button text">
Remove All
</message>
<message name="IDS_PASSWORDS_PAGE_VIEW_SHOW_BUTTON" desc="Text for passwords page view's button to show a stored password">
Show password
</message>
<message name="IDS_PASSWORDS_PAGE_VIEW_HIDE_BUTTON" desc="Text for passwords page view's button to hide a stored password">
Hide password
</message>
<message name="IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_BUTTON" desc="Exceptions page view's 'Remove' button text">
Remove
</message>
<message name="IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_ALL_BUTTON" desc="Exceptions page view's 'Remove all' button text">
Remove All
</message>
<!-- Password Manager -->
<message name="IDS_PASSWORD_MANAGER_SAVE_BUTTON" desc="Save button text for password manager">
Save password
</message>
<message name="IDS_PASSWORD_MANAGER_BLACKLIST_BUTTON" desc="Button text for the 'Save Password' infobar's 'Never remember for this site' option">
Never for this site
</message>
<!-- Import Settings Dialog -->
<message name="IDS_IMPORT_SETTINGS_TITLE" desc="Dialog title for import dialog">
Import Bookmarks and Settings
</message>
<message name="IDS_IMPORT_FROM_LABEL" desc="Label before profile select combo box">
From:
</message>
<message name="IDS_IMPORT_FROM_IE" desc="browser combo box: Microsoft Internet Explorer">
Microsoft Internet Explorer
</message>
<message name="IDS_IMPORT_FROM_FIREFOX" desc="browser combo box: Mozilla Firefox">
Mozilla Firefox
</message>
<message name="IDS_IMPORT_FROM_GOOGLE_TOOLBAR" desc="browser combo box: Google Toolbar">
Google Toolbar
</message>
<message name="IDS_IMPORT_ITEMS_LABEL" desc="Label before item select checkboxes">
Select items to import:
</message>
<message name="IDS_IMPORT_HISTORY_CHKBOX" desc="Checkbox for importing browsing history">
Browsing history
</message>
<message name="IDS_IMPORT_FAVORITES_CHKBOX" desc="Checkbox for importing favorites">
Favorites/Bookmarks
</message>
<message name="IDS_IMPORT_COOKIES_CHKBOX" desc="Checkbox for importing cookies">
Cookies
</message>
<message name="IDS_IMPORT_PASSWORDS_CHKBOX" desc="Checkbox for importing saved passwords">
Saved passwords
</message>
<message name="IDS_IMPORT_SEARCH_ENGINES_CHKBOX" desc="Checkbox for importing search engines">
Search engines
</message>
<message name="IDS_IMPORT_COMMIT" desc="Text for OK button on dialog">
Import
</message>
<message name="IDS_IMPORTER_GOOGLE_LOGIN_TEXT" desc="The message to be displayed on dialog">
In order to import Toolbar bookmarks into Chrome, you must be logged into your Google account. Please log in and try to import again.
</message>
<!-- Import progress popup -->
<message name="IDS_IMPORT_PROGRESS_TITLE" desc="Title for the importing progress dialog">
Importing
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_BOOKMARKS" desc="Import status for bookmarks">
Favorites/Bookmarks
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_SEARCH" desc="Import status for search engines">
Search settings
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_PASSWORDS" desc="Import status for passwords">
Saved passwords
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_HISTORY" desc="Import status for history">
Browsing history
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_COOKIES" desc="Import status for cookies">
Cookies
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_FINISHING" desc="Import status ending">
Finishing up...
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_CANCEL" desc="Button text for import cancellation">
Stop import
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_CANCEL_CONFIRM_OK" desc="Import cancellation confirmation accept button">
Continue Importing
</message>
<message name="IDS_IMPORT_PROGRESS_STATUS_CANCEL_CONFIRM_CANCEL" desc="Import cancellation confirmation cancel button">
Cancel Anyway
</message>
<!-- Importer Lock Dialog -->
<message name="IDS_IMPORTER_LOCK_TITLE" desc="Dialog title for importer lock dialog">
Close Firefox Before Importing
</message>
<message name="IDS_IMPORTER_LOCK_OK" desc="Text for OK button on dialog">
Continue
</message>
<message name="IDS_IMPORTER_LOCK_CANCEL" desc="Text for Cancel button on dialog">
Skip Import
</message>
<!-- Report Bug or Broken Web Site Dialog -->
<message name="IDS_BUGREPORT_TITLE" desc="Dialog title for bug report dialog">
Report Bug or Broken Web Site
</message>
<message name="IDS_BUGREPORT_REPORT_PAGE_TITLE" desc="Label showing title of the page that will be reported">
Page title:
</message>
<message name="IDS_BUGREPORT_REPORT_URL_LABEL" desc="Label showing URL that will be reported">
Page URL:
</message>
<message name="IDS_BUGREPORT_DESCRIPTION_LABEL" desc="Label for description field">
Description:
</message>
<message name="IDS_BUGREPORT_INCLUDE_PAGE_SOURCE_CHKBOX" desc="Checkbox for including page source">
Send source of current page
</message>
<message name="IDS_BUGREPORT_INCLUDE_PAGE_IMAGE_CHKBOX" desc="Checkbox for including page image">
Send screen shot of current page
</message>
<message name="IDS_BUGREPORT_SEND_REPORT" desc="Text for OK button on dialog">
Send report
</message>
<message name="IDS_BUGREPORT_SEND_PHISHING_REPORT" desc="Text for report phishing button">
Open phishing report
</message>
<message name="IDS_BUGREPORT_BUG_TYPE">
Bug type:
</message>
<message name="IDS_BUGREPORT_PAGE_WONT_LOAD">
Page won't load
</message>
<message name="IDS_BUGREPORT_PAGE_LOOKS_ODD">
Page looks odd
</message>
<message name="IDS_BUGREPORT_PHISHING_PAGE">
Phishing page
</message>
<message name="IDS_BUGREPORT_CANT_SIGN_IN">
Can't sign in
</message>
<message name="IDS_BUGREPORT_SOMETHING_MISSING">
Something's missing
</message>
<message name="IDS_BUGREPORT_BROWSER_CRASH">
Browser crash... go boom
</message>
<message name="IDS_BUGREPORT_OTHER_PROBLEM">
Other problem
</message>
<!-- Clear Browsing Data -->
<message name="IDS_CLEAR_BROWSING_DATA_TITLE" desc="Dialog title">
Clear Browsing Data
</message>
<message name="IDS_CLEAR_BROWSING_DATA_LABEL" desc="Label at the top of the client area of the dialog">
Obliterate the following items:
</message>
<message name="IDS_CLEAR_BROWSING_DATA_TIME_LABEL" desc="Label before time period combo box">
Clear data from this period:
</message>
<message name="IDS_DEL_BROWSING_HISTORY_CHKBOX" desc="Checkbox for deleting Browsing History">
Clear browsing history
</message>
<message name="IDS_DEL_DOWNLOAD_HISTORY_CHKBOX" desc="Checkbox for deleting Download History">
Clear download history
</message>
<message name="IDS_DEL_CACHE_CHKBOX" desc="Checkbox for deleting Cache">
Empty the cache
</message>
<message name="IDS_DEL_COOKIES_CHKBOX" desc="Checkbox for deleting Cookies">
Delete cookies
</message>
<message name="IDS_DEL_PASSWORDS_CHKBOX" desc="Checkbox for deleting Passwords">
Clear saved passwords
</message>
<message name="IDS_DEL_FORM_DATA_CHKBOX" desc="Checkbox for deleting form data saved for autofill">
Clear saved form data
</message>
<message name="IDS_CLEAR_BROWSING_DATA_COMMIT" desc="Text for OK button on dialog">
Clear Browsing Data
</message>
<message name="IDS_CLEAR_DATA_DAY" desc="deletion period combo box: day">
Last day
</message>
<message name="IDS_CLEAR_DATA_WEEK" desc="deletion period combo box: week">
Last week
</message>
<message name="IDS_CLEAR_DATA_4WEEKS" desc="deletion period combo box: 4 weeks">
Last 4 weeks
</message>
<message name="IDS_CLEAR_DATA_EVERYTHING" desc="deletion period combo box: everything">
Everything
</message>
<message name="IDS_CLEAR_DATA_DELETING" desc="The progress message">
Clearing...
</message>
<!-- About Chrome View -->
<message name="IDS_ABOUT_CHROME_ACKNOWLEDGEMENTS" desc="Acknowledgements link">
Acknowledgements
</message>
<message name="IDS_ABOUT_CHROME_UPDATE_CHECK" desc="The Check for Updates button">
Update Now
</message>
<message name="IDS_UPGRADE_CHECK_STARTED" desc="Status label: About to start checking for updates">
Checking for updates...
</message>
<message name="IDS_UPGRADE_STARTED" desc="Status label: About to start updating Chrome">
Installing new version...
</message>
<message name="IDS_UPGRADE_AVAILABLE" desc="Status label: A new version of Chrome is available">
A new version of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is available
</message>
<message name="IDS_UPGRADE_SUCCESSFUL" desc="Status label: Successfully upgraded">
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> has been updated to <ph name="VERSION">$2<ex>0.1.131</ex></ph>
</message>
<message name="IDS_UPGRADE_SUCCESSFUL_NOVERSION" desc="Status label: Successfully upgraded">
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> has been updated
</message>
<message name="IDS_UPGRADE_ALREADY_UP_TO_DATE" desc="Status label: Already up to date">
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is up to date (<ph name="VERSION">$2<ex>0.1.131</ex></ph>)
</message>
<message name="IDS_UPGRADE_ERROR" desc="Status label: Error occurred during upgrade">
Update server not available (error: <ph name="ERROR_NUMBER">$1<ex>1</ex></ph>)
</message>
<message name="IDS_RESOURCE_ERROR" desc="Error loading resource">
An error was encountered while loading a program resource. Try reinstalling.
</message>
<message name="IDS_RESOURCE_ERROR_CAPTION" desc="Error loading resource caption">
Resource Error
</message>
<!-- Print -->
<message name="IDS_DEFAULT_PRINT_DOCUMENT_TITLE" desc="Default title for a print document">
Untitled Document
</message>
<message name="IDS_DEFAULT_PRINTER_NOT_FOUND_WARNING_TITLE" desc="Title of the warning dialog when no when no printer is available">
No printer found, Please install a printer.
</message>
<!-- Tabs -->
<message name="IDS_TAB_LOADING_TITLE" desc="The text to be displayed in the title of a tab before a title is discovered.">
Loading...
</message>
<message name="IDS_TAB_UNTITLED_TITLE" desc="The text to be displayed in the title of a tab when the tab has no title.">
Untitled
</message>
<!-- Load State -->
<message name="IDS_LOAD_STATE_IDLE"></message>
<message name="IDS_LOAD_STATE_WAITING_FOR_CACHE">
Waiting for cache...
</message>
<message name="IDS_LOAD_STATE_RESOLVING_PROXY_FOR_URL">
Resolving proxy...
</message>
<message name="IDS_LOAD_STATE_RESOLVING_HOST">
Resolving host...
</message>
<message name="IDS_LOAD_STATE_CONNECTING">
Connecting...
</message>
<message name="IDS_LOAD_STATE_SENDING_REQUEST">
Sending request...
</message>
<message name="IDS_LOAD_STATE_WAITING_FOR_RESPONSE">
Waiting for <ph name="HOST_NAME">$1<ex>www.google.com</ex></ph>...
</message>
<message name="IDS_LOAD_STATE_READING_RESPONSE">
Transferring from <ph name="HOST_NAME">$1<ex>www.google.com</ex></ph>...
</message>
<!-- Tab Context Menu -->
<message name="IDS_TAB_CXMENU_NEWTAB" desc="The label of the 'New Tab' Tab context menu item.">
New tab
</message>
<message name="IDS_TAB_CXMENU_RELOAD" desc="The label of the 'Reload' Tab context menu item.">
Reload
</message>
<message name="IDS_TAB_CXMENU_DUPLICATE" desc="The label of the 'Duplicate' Tab context menu item.">
Duplicate
</message>
<message name="IDS_TAB_CXMENU_CLOSETAB" desc="The label of the 'Close Tab' Tab context menu item.">
Close tab
</message>
<message name="IDS_TAB_CXMENU_CLOSEOTHERTABS" desc="The label of the 'Close Other Tabs' Tab context menu item.">
Close other tabs
</message>
<message name="IDS_TAB_CXMENU_CLOSETABSTORIGHT" desc="The label of the 'Close Tabs to the Right' Tab context menu item.">
Close tabs to the right
</message>
<message name="IDS_TAB_CXMENU_CLOSETABSOPENEDBY" desc="The label of the 'Close Tabs opened by this Tab' Tab context menu item.">
Close tabs opened by this tab
</message>
<!-- Items in the bookmarks destination mode -->
<message name="IDS_BOOKMARKS_DEST_MODE_BOOKMARK_BAR_ON_BOOKMARK_BAR" desc="Text shown when entry is on the bookmark bar">
Bookmark Bar
</message>
<message name="IDS_BOOKMARKS_PATH_SEPARATOR" desc="Separator for elements of the bookmark bar path">
/
</message>
<message name="IDS_BOOKMARKS_NO_ITEMS" desc="Text shown when the user has no bookmarks">
For quick access, place your bookmarks here in the bookmarks bar.
</message>
<!-- The location for special bookmark groups -->
<message name="IDS_BOOKMARK_GROUP_FROM_IE" desc="The group name of bookmarks from Internet Explorer">
Imported From IE
</message>
<message name="IDS_BOOKMARK_GROUP_FROM_FIREFOX" desc="The group name of bookmarks from Firefox">
Imported From Firefox
</message>
<message name="IDS_BOOKMARK_GROUP_FROM_GOOGLE_TOOLBAR" desc="The group name of bookmarks from Google Toolbar">
Imported From Google Toolbar
</message>
<message name="IDS_BOOKMARK_GROUP" desc="The group name of bookmarks imported from a file">
Imported
</message>
<!-- bookmark editor messages-->
<message name="IDS_BOOMARK_EDITOR_NAME_LABEL" desc="Label shown before the title/name of the URL.">
Name:
</message>
<message name="IDS_BOOMARK_EDITOR_URL_LABEL" desc="Label shown before the URL.">
URL:
</message>
<message name="IDS_BOOMARK_EDITOR_NEW_FOLDER_BUTTON" desc="Text on the new folder button.">
New folder
</message>
<message name="IDS_BOOMARK_EDITOR_NEW_FOLDER_MENU_ITEM" desc="Text on the new folder context menu item.">
&New folder
</message>
<message name="IDS_BOOMARK_EDITOR_TITLE" desc="Title of the window the bookmark editor is in.">
Edit Bookmark
</message>
<message name="IDS_BOOMARK_BAR_FOLDER_NAME" desc="Name shown in the tree for the bookmarks bar folder">
Bookmarks bar
</message>
<message name="IDS_BOOMARK_BAR_OTHER_FOLDER_NAME" desc="Name shown in the tree for the other bookmarks folder">
Other bookmarks
</message>
<message name="IDS_BOOMARK_EDITOR_NEW_FOLDER_NAME" desc="Name for newly created groups">
New folder
</message>
<message name="IDS_BOOMARK_FOLDER_EDITOR_WINDOW_TITLE" desc="Window title of editor for bookmark folders">
Edit folder name
</message>
<message name="IDS_BOOMARK_FOLDER_EDITOR_WINDOW_TITLE_NEW" desc="Window title of editor for new bookmark folders">
New folder
</message>
<!-- bookmark info bubble messages -->
<message name="IDS_BOOMARK_BUBBLE_PAGE_BOOKMARKED" desc="Title of the bubble after bookmarking something">
Bookmark Added!
</message>
<message name="IDS_BOOMARK_BUBBLE_PAGE_BOOKMARK" desc="Title of the bubble when re-clicking on a bookmark">
Bookmark
</message>
<message name="IDS_BOOMARK_BUBBLE_OPTIONS" desc="Title of the link the user can click to edit details of the bookmark">
Edit...
</message>
<message name="IDS_BOOMARK_BUBBLE_REMOVE_BOOKMARK" desc="Link for removing the bookmark">
Remove
</message>
<message name="IDS_BOOMARK_BUBBLE_TITLE_TEXT" desc="Text preceeding the title of the page that was bookmarked">
Name:
</message>
<message name="IDS_BOOMARK_BUBBLE_FOLDER_TEXT" desc="Text preceeding the folder selector">
Folder:
</message>
<message name="IDS_BOOMARK_BUBBLE_CHOOSER_ANOTHER_FOLDER" desc="Text in the combobox allowing the user to choose another folder (by bringing up th editor).">
Choose another folder...
</message>
<message name="IDS_BOOMARK_BUBBLE_FOLDER_MRU_MORE" desc="Text used in the folder selector to take the user to the edit bookmark dialog">
Choose another folder...
</message>
<!-- Application window menu -->
<message name="IDS_APP_MENU_RELOAD" desc="The reload menu in application windows">
Reload
</message>
<message name="IDS_APP_MENU_DUPLICATE_APP_WINDOW" meaning="Duplicate application window" desc="The duplicate / start new instance menu">
Duplicate
</message>
<message name="IDS_APP_MENU_COPY_URL" desc="The copy url menu in application windows">
Copy URL
</message>
<message name="IDS_APP_MENU_NEW_WEB_PAGE" desc="The new web page menu in application windows">
Open browser window
</message>
<!-- bookmark bar messages -->
<message name="IDS_BOOMARK_BAR_ALWAYS_SHOW" desc="Menu item for having bookmark bar always visible">
Always show bookmarks bar
</message>
<message name="IDS_BOOMARK_BAR_OTHER_BOOKMARKED" desc="Title of button showing other bookmarks">
Other bookmarks
</message>
<message name="IDS_BOOMARK_BAR_DEFAULT_FOLDER" desc="Title of the default bookmarks folder">
Bookmarks
</message>
<message name="IDS_BOOMARK_BAR_OPEN_INCOGNITO" desc="Menu description for openning bookmark in incognito window">
Open in incognito window
</message>
<message name="IDS_BOOMARK_BAR_OPEN_IN_NEW_TAB" desc="Menu description for loading bookmark in a new tab">
Open in new tab
</message>
<message name="IDS_BOOMARK_BAR_OPEN_IN_NEW_WINDOW" desc="Menu description for loading bookmark in a new window">
Open in new window
</message>
<message name="IDS_BOOMARK_BAR_ADD_NEW_BOOKMARK" desc="Menu title for adding a new bookmark entry">
Add page...
</message>
<message name="IDS_BOOMARK_BAR_NEW_FOLDER" desc="Menu title for adding a new folder">
Add folder...
</message>
<message name="IDS_BOOMARK_BAR_OPEN_ALL" desc="Menu title for opening all urls in a bookmark folder">
Open all bookmarks
</message>
<message name="IDS_BOOMARK_BAR_OPEN_ALL_NEW_WINDOW" desc="Menu title for opening all urls in a bookmark folder in a new window">
Open all bookmarks in new window
</message>
<message name="IDS_BOOMARK_BAR_OPEN_ALL_INCOGNITO" desc="Menu description for openning all urls in a bookmark folder in an incognito window">
Open all bookmarks in incognito window
</message>
<message name="IDS_BOOKMARK_BAR_REMOVE" desc="Menu title for removing/unstarring a bookmark">
Delete
</message>
<message name="IDS_BOOMARK_BAR_EDIT_FOLDER_LABEL" desc="Title of label before text field in edit folder dialog">
Name:
</message>
<message name="IDS_BOOMARK_BAR_UNKNOWN_DRAG_TITLE" desc="Title given to URLs that are dropped on the bookmark bar that don't have a title or host">
Untitled
</message>
<message name="IDS_BOOKMARK_BAR_EDIT"
desc="Title of the bookmark context menu item that brings up the bookmark editor">
Edit...
</message>
<message name="IDS_BOOKMARK_BAR_RENAME_FOLDER"
desc="Title of the bookmark context menu item that brings up a dialog to rename a folder">
Rename...
</message>
<message name="IDS_BOOKMARK_BAR_SHOULD_OPEN_ALL"
desc="Message in the message box shown if user asks to open a lot of bookmarks in a folder">
Are you sure you want to open <ph name="TAB_COUNT">$1<ex>20</ex></ph> tabs?
</message>
<!-- error page messages -->
<message name="IDS_ERRORPAGES_SUGGESTION_HEADING" desc="Heading in the error page above the actual suggestions">
Here are some suggestions:
</message>
<message name="IDS_ERRORPAGES_DETAILS_LINK" desc="Link in the error page that opens more details about the load error">
More information on this error
</message>
<message name="IDS_ERRORPAGES_DETAILS_HEADING" desc="On an error page, the heading text next to the detailed error description">
Below is the original error message
</message>
<message name="IDS_ERRORPAGES_SUGGESTION_RELOAD" desc="When a page fails to load, we provide a suggestion that the user try reloading the page later">
<a jsvalues="href:reloadUrl">Reload</a> this web page later.
</message>
<message name="IDS_ERRORPAGES_SUGGESTION_HOMEPAGE" desc="When a page fails to load, sometimes we provide a suggesting of trying just the hostname of the site.">
Go to the homepage of the site:
</message>
<message name="IDS_ERRORPAGES_SUGGESTION_LEARNMORE" desc="When a web page fails to load, we provide a link to the help center to learn more about the failure.">
<ph name="BEGIN_LINK"><a jsvalues="href:learnMoreUrl"></ph>Learn more<ph name="END_LINK"></a></ph> about this problem.
</message>
<message name="IDS_ERRORPAGES_TITLE_NOT_AVAILABLE" desc="Title of the error page when we can't connect to a site.">
<ph name="SITE">$1<ex>google.xom</ex></ph> is not available
</message>
<message name="IDS_ERRORPAGES_TITLE_NOT_FOUND" desc="Title of the error page when the server returns a 404.">
<ph name="URL">$1<ex>http://www.google.com/foo/bar</ex></ph> is not found
</message>
<message name="IDS_ERRORPAGES_TITLE_LOAD_FAILED" desc="Title of the error page when we can't load a page.">
<ph name="URL">$1<ex>http://some-unreliable-site.com/</ex></ph> failed to load
</message>
<message name="IDS_ERRORPAGES_HEADING_NOT_AVAILABLE" desc="Heading in the error page when we can't connect to a site.">
This webpage is not available.
</message>
<message name="IDS_ERRORPAGES_HEADING_NOT_FOUND" desc="Heading in the error page when the server returns a 404.">
This webpage is not found.
</message>
<message name="IDS_ERRORPAGES_HEADING_TOO_MANY_REDIRECTS" desc="Heading in the error page when there are too many URL redirects.">
This webpage has a redirect loop.
</message>
<message name="IDS_ERRORPAGES_SUMMARY_NOT_AVAILABLE" desc="Summary in the error page when we can't connect to a site.">
The webpage at <strong jscontent="failedUrl"></strong> might be temporarily down or it may have moved permanently to a new web address.
</message>
<message name="IDS_ERRORPAGES_SUMMARY_NOT_FOUND" desc="Summary in the error page when the server returns a 404.">
No webpage was found for the web address: <strong jscontent="failedUrl"></strong>
</message>
<message name="IDS_ERRORPAGES_SUMMARY_TOO_MANY_REDIRECTS" desc="Summary in the error page when there are too many URL redirects.">
The webpage at <strong jscontent="failedUrl"></strong> has resulted in
too many redirects. Clearing your cookies for this site may fix the problem. If
not, it is possibly a server configuration issue and not a problem with your
computer.
</message>
<message name="IDS_ERRORPAGES_DETAILS_TEMPLATE" desc="On the bottom of the error page text, there is a box that includes extra information for tech savvy users.">
Error <ph name="ERROR_NUMBER">$1<ex>5</ex></ph> (<ph name="ERROR_NAME">$2<ex>net::ERR_FILE_NOT_FOUND</ex></ph>): <ph name="ERROR_TEXT">$3<ex>The requested file is not found.</ex></ph>
</message>
<message name="IDS_ERRORPAGES_DETAILS_TIMED_OUT" desc="The error message displayed when a page takes too long to load.">
The operation timed out.
</message>
<message name="IDS_ERRORPAGES_DETAILS_CONNECT_FAILED" desc="The error message displayed when we can not reach the web site.">
The attempt to connect to the server failed.
</message>
<message name="IDS_ERRORPAGES_DETAILS_NAME_NOT_RESOLVED" desc="The error message displayed when a dns look up fails.">
The server could not be found.
</message>
<message name="IDS_ERRORPAGES_DETAILS_DISCONNECTED" desc="The error message displayed when we have no internet access.">
The Internet connection has been lost.
</message>
<message name="IDS_ERRORPAGES_DETAILS_FILE_NOT_FOUND" desc="The error message displayed when a local file can not be found.">
The file or directory could not be found.
</message>
<message name="IDS_ERRORPAGES_DETAILS_TOO_MANY_REDIRECTS" desc="The error message displayed when there are too many redirects.">
There were too many redirects.
</message>
<message name="IDS_ERRORPAGES_DETAILS_UNKNOWN" desc="The default error message displayed if we don't have a more specific error message.">
Unknown error.
</message>
<message name="IDS_ERRORPAGES_HTTP_POST_WARNING" desc="The error message displayed when the user navigates back or forward to a page which would resubmit post data. They can hit reload to send POST data again and load the page.">
This web page requires data that you entered earlier in order to be properly displayed. You can send this data again, but by doing so you will repeat any action this page previously performed. Press Reload to resend that data and display this page.
</message>
<message name="IDS_SAVEAS_ALL_FILES" desc="Save As dialog box default text">
All Files
</message>
<message name="IDS_SECURE_CONNECTION" desc="Info popup text when hovering the mouse over the lock icon. ie., we have a secure connection to the site.">
Secure connection to <ph name="DOMAIN">$1<ex>paypal.com</ex></ph>
</message>
<message name="IDS_SECURE_CONNECTION_EV" desc="Short text shown in the location when the connection is secure with an EV cert.">
<ph name="ORGANIZATION">$1<ex>Paypal Inc.</ex></ph> [<ph name="COUNTRY">$2<ex>US</ex></ph>]
</message>
<message name="IDS_SECURE_CONNECTION_EV_CA" desc="Info popup text showing the certification authority's name when hovering the mouse over the EV label ie., we have a secure connection to the site with an EV cert.">
Verified by <ph name="ISSUER">$1<ex>VeriSign</ex></ph>
</message>
<!-- Page Information Window -->
<message name="IDS_PAGEINFO_WINDOW_TITLE" desc="Title of the page info window.">
Security information
</message>
<message name="IDS_PAGEINFO_CERT_INFO_BUTTON" desc="Text of button in the page info that shows the SSL certificate.">
Certificate information...
</message>
<message name="IDS_PAGEINFO_CLOSE_BUTTON" desc="Text of button in the page info that closes the window.">
Close
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_IDENTITY_TITLE" desc="The name of the identity section.">
Identity
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY" desc="The text of the identity section when the page is secure.">
The identity of this website has been verified by <ph name="ISSUER">$1<ex>VeriSign</ex></ph>.
</message>
<message name="IDS_PAGE_INFO_EV_IDENTITY_TITLE" desc="The title of the identity section when the page is secure with an EV cert.">
<ph name="ORGANIZATION_NAME">$1<ex>Google Inc</ex></ph> (<ph name="DOMAIN_NAME">$2<ex>www.google.com</ex></ph>)
</message>
<message name="IDS_PAGEINFO_ADDRESS" desc="Locality as reported in the EV identity text.">
<ph name="CITY">$1<ex>Mountain View</ex></ph>, <ph name="STATE">$2<ex>California</ex></ph> <ph name="COUNTRY">$3<ex>USA</ex></ph>
</message>
<message name="IDS_PAGEINFO_PARTIAL_ADDRESS" desc="Locality with missing state as reported in the EV identity text.">
<ph name="CITY">$1<ex>Mountain View</ex></ph>, <ph name="COUNTRY">$2<ex>US</ex></ph>
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV" desc="The text of the identity section when the page is secured with an EV cert.">
The identity of <ph name="ORGANIZATION">$1<ex>Google</ex></ph> at <ph name="LOCALITY">$2<ex>Mountain View, CA US</ex></ph> has been verified by <ph name="ISSUER">$3<ex>VeriSign</ex></ph>.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY" desc="The default name used when we did not find a principal name.">
unknown name
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_INSECURE_IDENTITY" desc="The text of the identity section when the page is not secure.">
The identity of this website has not been verified.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_CONNECTION_TITLE" desc="The name of the connection section.">
Connection
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_CONNECTION_TEXT" desc="The text of the connection section when the connection is encrypted.">
Your connection to <ph name="DOMAIN">$1<ex>www.google.com</ex></ph> is encrypted with <ph name="BIT_COUNT">$2<ex>128</ex></ph>-bit encryption.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_WEAK_ENCRYPTION_CONNECTION_TEXT" desc="The text of the connection section when the connection uses weak encryption.">
Your connection to <ph name="DOMAIN">$1<ex>www.google.com</ex></ph> is encrypted with weak encryption.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_NOT_ENCRYPTED_CONNECTION_TEXT" desc="The text of the connection section when the connection is not encrypted.">
Your connection to <ph name="DOMAIN">$1<ex>www.google.com</ex></ph> is not encrypted.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_MIXED_CONTENT_WARNING" desc="Some extra text of the connection section when the connection is encrypted and there is some mixed content on the page.">
However, this page includes other resources which are not secure. These resources can be viewed by others while in transit, and can be modified by an attacker to change the look or behavior of the page.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_BAD_HTTPS_WARNING" desc="Some extra text of the connection section when the connection is encrypted but there are some resources loaded over bad HTTPS on the page.">
However, this page includes resources from other websites whose identity cannot be verified.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_SENTENCE_LINK" desc="Linking 2 sentences in 1 paragraph.">
<ph name="SENTENCE1">$1<ex>Your connection is encrypted.</ex></ph> <ph name="SENTENCE2">$2<ex>However, this page includes resources from other pages whose identity cannot be verified.</ex></ph>
</message>
<!-- SSL Blocking Page -->
<message name="IDS_SSL_BLOCKING_PAGE_TITLE" desc="The title of the SSL blocking page.">
SSL Error
</message>
<message name="IDS_SSL_BLOCKING_PAGE_PROCEED" desc="Proceed button text of the SSL blocking page.">
Proceed anyway
</message>
<message name="IDS_SSL_BLOCKING_PAGE_EXIT" desc="'Back' button text of the SSL blocking page.">
Back to safety
</message>
<!-- SSL Error Page -->
<message name="IDS_SSL_ERROR_PAGE_TITLE" desc="The title of the SSL error page.">
Security Error
</message>
<message name="IDS_SSL_ERROR_PAGE_BACK" desc="Back button text of the SSL error page.">
Back
</message>
<!-- SSL Info Bar -->
<message name="IDS_SSL_INFO_BAR_FILTERED_CONTENT" desc="Message displayed in the info bar when we have filtered some mixed/unsafe content.">
Some of the elements on this page came from an unverified source and were not displayed.
</message>
<message name="IDS_SSL_INFO_BAR_SHOW_CONTENT" desc="Link displayed in the info bar when we have filtered some mixed/unsafe content to show all content.">
Show all content
</message>
<!-- Misc strings for SSL UI -->
<message name="IDS_UNSAFE_FRAME_MESSAGE" desc="The text displayed in the content that is subsituted to an unsafe frame.">
This frame was blocked because it contains some insecure content.
</message>
<message name="IDS_MIXED_CONTENT_LOG_MESSAGE" desc="The text displayed in the log message of a page that contains insecure content.">
The page at <ph name="SECURE_PAGE_URL">$1<ex>https://www.google.com/</ex></ph> contains insecure content from <ph name="INSECURE_RESOURCE_URL">$2<ex>http://www.google.com/</ex></ph>.
</message>
<!-- Advanced Font/Language settings -->
<message name="IDS_FONT_LANGUAGE_SETTING_WINDOWS_TITLE" desc="Title that appears in the dialogue title bar for advanced font/encoding settings">
Fonts and Languages
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_TAB_TITLE" desc="Title that appears in the sub-dialogue for Fonts and Encoding">
Fonts and Encoding
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_SUB_DIALOG_FONT_TITLE" desc="Title that appears in the sub-dialogue for Font within Fonts and Encoding tab">
Font
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_SERIF_LABEL" desc="Dialog label for Serif font selection">
Serif Font:
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_SANS_SERIF_LABEL" desc="Dialog label for Sans Serif font selection">
Sans-Serif Font:
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_FIXED_WIDTH_LABEL" desc="Dialog label for Fixed-Width font selection">
Fixed-width Font:
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_BUTTON_LABEL" desc="Button label for font selection">
Change...
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_SUB_DIALOG_ENCODING_TITLE" desc="Title that appears in the sub-dialogue for Encoding within Fonts and Encoding tab">
Encoding
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_FONT_DEFAULT_ENCODING_SELECTOR_LABEL" desc="Dialog label for Default Encoding selection">
Default Encoding:
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_TAB_TITLE" desc="Title that appears in the tab for Languages">
Languages
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_INSTRUCTIONS" desc="Instructions that appear in the languages tab">
Add the languages you use to read websites, listing in order of preference. Only add the ones you need, as some characters can be used to impersonate websites in other languages.
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_SELECTOR_LABEL" desc="Label for Languages selection">
Languages:
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_SELECTOR_MOVEUP_BUTTON_LABEL" desc="Button label for Move up languages">
Move up
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_SELECTOR_MOVEDOWN_BUTTON_LABEL" desc="Button label for Move down languages">
Move down
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_SELECTOR_REMOVE_BUTTON_LABEL" desc="Button label for Remove languages">
Remove
</message>
<message name="IDS_FONT_LANGUAGE_SETTING_LANGUAGES_SELECTOR_ADD_BUTTON_LABEL" desc="Button label for Add languages">
Add
</message>
<!-- HTTP POST Warning -->
<message name="IDS_HTTP_POST_WARNING_TITLE" desc="Title for dialog that warns users about a navigation that results in a repost">
Confirm Form Resubmission
</message>
<message name="IDS_HTTP_POST_WARNING" desc="Re-navigation to page that leads to HTTP POST">
The page that you're looking for used information that you entered. Returning to that page might cause any action you took to be repeated. Do you want to continue?
</message>
<message name="IDS_HTTP_POST_WARNING_RESEND" desc="Resend button for post warning">
Continue
</message>
<message name="IDS_HTTP_POST_WARNING_CANCEL" desc="Cancel button for post warning">
Cancel
</message>
<!-- Menus -->
<message name="IDS_MENU_EMPTY_SUBMENU" desc="Used when a submenu has no entries">
(empty)
</message>
<!-- Scroll Bar Context Menu Labels -->
<message name="IDS_SCROLLBAR_CXMENU_SCROLLHERE" desc="The label for the 'Scroll Here' item">
Scroll to Here
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLLEFTEDGE" desc="The label for the 'Left Edge' item">
Left Edge
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLRIGHTEDGE" desc="The label for the 'Right Edge' item">
Right Edge
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLHOME" desc="The label for the 'Top' item">
Top
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLEND" desc="The label for the 'Bottom' item">
Bottom
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLPAGEUP" desc="The label for the 'Page Up' item">
Page Up
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLPAGEDOWN" desc="The label for the 'Page Down' item">
Page Down
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLLEFT" desc="The label for the 'Scroll Left' item">
Scroll Left
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLRIGHT" desc="The label for the 'Scroll Left' item">
Scroll Right
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLUP" desc="The label for the 'Scroll Up' item">
Scroll Up
</message>
<message name="IDS_SCROLLBAR_CXMENU_SCROLLDOWN" desc="The label for the 'Scroll Down' item">
Scroll Down
</message>
<!-- First-run messages -->
<message name="IDS_FIRSTRUN_DLG_CANCEL" desc="Text for CANCEL button on first-run dialog">
Cancel
</message>
<message name="IDS_FIRSTRUN_DLG_OVERRIDE" desc="Text for the customize button">
Customize these settings
</message>
<message name="IDS_FIRSTRUN_DLG_ACTION1" desc="First action item on first-run dialog">
Import bookmarks, passwords, and other settings from <ph name="DEF_BROWSER">$1<ex>Internet Explorer</ex></ph>
</message>
<message name="IDS_FIRSTRUN_DLG_CANCEL_CONFIRM_CONTINUE" desc="Continue installation button for cancel confirmation dialog">
Continue Installing
</message>
<message name="IDS_FIRSTRUN_DLG_CANCEL_CONFIRM_EXIT" desc="Exit installation button for cancel confirmation dialog">
Exit Install
</message>
<!-- Customize chrome messages -->
<message name="IDS_FR_CUSTOMIZE_DLG_TITLE" desc="Dialog title for first run customize dialog">
Customize Your Settings
</message>
<message name="IDS_FR_CUSTOMIZE_DLG_TEXT" desc="Explains what the first-run customize dialog does">
Change the default installation options.
</message>
<message name="IDS_FR_CUSTOMIZE_IMPORT" desc="Import settings checkbox label">
Import settings from:
</message>
<message name="IDS_FR_CUSTOMIZE_IMPORT_FIREFOX" desc="Import settings option 1">
Firefox
</message>
<message name="IDS_FR_CUSTOMIZE_IMPORT_IE" desc="Import settings option 2">
Internet Explorer
</message>
<message name="IDS_FR_CUSTOM_SHORTCUT_DESKTOP" desc="Create desktop shortcut checkbox label">
Desktop
</message>
<message name="IDS_FR_CUSTOM_SHORTCUT_STARTM" desc="Create start menu shortcut checkbox label">
Start menu
</message>
<message name="IDS_FR_CUSTOM_SHORTCUT_QUICKL" desc="Create quicklaunch shortcut checkbox label">
Quick launch bar
</message>
<!-- First run bubble popup -->
<message name="IDS_FR_BUBBLE_TITLE" desc="Bubble-like popup dialog title">
Search from right here
</message>
<message name="IDS_FR_BUBBLE_SUBTEXT" desc="Text under the title for the bubble">
Type to search or enter a URL to navigate - everything just works.
</message>
<message name="IDS_FR_BUBBLE_OK" desc="Text for the OK button on the bubble">
Keep <ph name="PAGE_TITLE">$1<ex>Google</ex></ph> as the default search engine
</message>
<message name="IDS_FR_BUBBLE_CHANGE" desc="Text for the change button on the bubble">
Change search engine
</message>
<!-- First run alternative minibubble popup -->
<message name="IDS_FR_OEM_BUBBLE_TITLE_1" desc="Bubble-like popup dialog title, part 1">
New!
</message>
<message name="IDS_FR_OEM_BUBBLE_TITLE_2" desc="Bubble-like popup dialog title, part 2">
Search from the address bar.
</message>
<message name="IDS_FR_OEM_BUBBLE_SUBTEXT" desc="Text under the title for the bubble. 'Orchids' may be translated into any locale-appropriate search term.">
Try it out - type "orchids" and press Enter.
</message>
<!-- Sad Tab Strings -->
<message name="IDS_SAD_TAB_TITLE" desc="The title of the sad tab page that is shown when a tab crashes. This is intended to be a humorous exclamation of dismay.">
Aw, Snap!
</message>
<message name="IDS_SAD_TAB_MESSAGE" desc="The message displayed on the sad tab page.">
Something went wrong while displaying this webpage. To continue, press Reload or go to another page.
</message>
<!-- Incognito -->
<message name="IDS_OFF_THE_RECORD_TOOLTIP" desc="The tooltip for the incognito icon.">
You have opened an incognito window. Pages that you open in this window won't appear in your history.
</message>
<!-- Default Browser related messages -->
<message name="IDS_HIDE_ICONS_NOT_SUPPORTED" desc="Message to explain we only support uninstall and not hide-icons.">
To hide access to this program, you need to uninstall it by using\n<ph name="CONTROL_PANEL_APPLET_NAME">$1<ex>Add/Remove Programs</ex></ph> in Control Panel.\n\nWould you like to start <ph name="CONTROL_PANEL_APPLET_NAME">$1<ex>Add/Remove Programs</ex></ph>?
</message>
<!-- Options Window -->
<message name="IDS_OPTIONS_DIALOG_TITLE" desc="The title of the Options dialog box">
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Options
</message>
<message name="IDS_OPTIONS_GENERAL_TAB_LABEL" desc="The title of the General tab">
General
</message>
<message name="IDS_OPTIONS_CONTENT_TAB_LABEL" desc="The title of the User Data tab">
User Data
</message>
<message name="IDS_OPTIONS_USER_DATA_TAB_LABEL" desc="The title of the User Data tab">
User Data
</message>
<message name="IDS_OPTIONS_ADVANCED_TAB_LABEL" desc="The title of the Advanced tab">
Advanced
</message>
<message name="IDS_OPTIONS_LEARN_MORE_LABEL" desc="In the options dialog, we have links to the support web pages where the user can learn more about a feature.">
Learn more
</message>
<message name="IDS_OPTIONS_PRIVACY_LABEL" desc="In the options dialog, we have links to the support web pages where the user can learn about the privacy implications of a feature.">
Privacy
</message>
<message name="IDS_OPTIONS_STARTUP_GROUP_NAME" desc="The title of the startup group">
On startup:
</message>
<message name="IDS_OPTIONS_STARTUP_SHOW_DEFAULT_AND_NEWTAB" desc="The label of the 'Show default page and new tab page' startup option radio button">
Open the home page
</message>
<message name="IDS_OPTIONS_STARTUP_SHOW_LAST_SESSION" desc="The label of the 'Show the last session' startup option radio button">
Restore the pages that were open last
</message>
<message name="IDS_OPTIONS_STARTUP_SHOW_PAGES" desc="The label of the 'Custom home page' startup option radio button">
Open the following pages:
</message>
<message name="IDS_OPTIONS_STARTUP_ADD_BUTTON" desc="The label of the 'Add...' button for the custom startup urls list">
A&dd...
</message>
<message name="IDS_OPTIONS_STARTUP_REMOVE_BUTTON" desc="The label of the 'Remove' button for the custom startup urls list">
&Remove
</message>
<message name="IDS_OPTIONS_STARTUP_USE_CURRENT" desc="The label of the 'Use Current' button for the custom startup urls list">
Use Current
</message>
<message name="IDS_OPTIONS_HOMEPAGE_GROUP_NAME" desc="The title of the home pages group">
Home page:
</message>
<message name="IDS_OPTIONS_HOMEPAGE_USE_NEWTAB" desc="The title of the 'Use the New Tab page' for the home page radio">
Use the New Tab page
</message>
<message name="IDS_OPTIONS_HOMEPAGE_USE_URL" desc="The title of the 'Use this page' for the home page radio">
Open this page:
</message>
<message name="IDS_OPTIONS_HOMEPAGE_SHOW_BUTTON" desc="The label of the 'Show home button on toolbar' checkbox">
Show Home button on the toolbar
</message>
<message name="IDS_OPTIONS_DEFAULTSEARCH_GROUP_NAME" desc="The title of the default search engine group">
Default search:
</message>
<message name="IDS_OPTIONS_DEFAULTSEARCH_GROUP_DESCRIPTION" desc="The description of the default search engine group">
Set the search engine used in the omnibox.
</message>
<message name="IDS_OPTIONS_DEFAULTSEARCH_MANAGE_ENGINES_LINK"
desc="The label of a link that brings up the keyword editor (aka search engine editor)">
Manage
</message>
<message name="IDS_OPTIONS_DEFAULTBROWSER_GROUP_NAME" desc="The title of the default browser group">
Default browser:
</message>
<message name="IDS_OPTIONS_DEFAULTBROWSER_DEFAULT" desc="The text displayed when Chrome is not the default browser">
The default browser is currently <ph name="BROWSER_NAME">$1<ex>Firefox</ex></ph>.
</message>
<message name="IDS_OPTIONS_DEFAULTBROWSER_NOTDEFAULT" desc="The text displayed when Chrome is not the default browser">
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is not currently your default browser.
</message>
<message name="IDS_OPTIONS_DEFAULTBROWSER_USEASDEFAULT" desc="The label of the 'Use Chrome as default' browser button">
Make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> my default browser
</message>
<message name="IDS_OPTIONS_DOWNLOADLOCATION_GROUP_NAME" desc="The title of the download location group">
Downloads
</message>
<message name="IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_BUTTON" desc="The label of the 'Browse...' button">
Br&owse...
</message>
<message name="IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_TITLE" desc="In the 'Browse For Folder' dialog, this is the text that appears above the directory selector.">
Download location:
</message>
<message name="IDS_OPTIONS_DOWNLOADLOCATION_ASKFORSAVELOCATION" desc="The 'Ask for save location before downloading' checkbox label">
Ask where to save each file before downloading
</message>
<message name="IDS_OPTIONS_AUTOOPENFILETYPES_INFO" desc="The information label for the 'Reset always open files' button">
You have chosen to open certain file types automatically after downloading. You can clear these settings so that downloaded files don't open automatically.
</message>
<message name="IDS_OPTIONS_AUTOOPENFILETYPES_RESETTODEFAULT" desc="The label of the 'Reset always open files' button">
Clear auto-opening settings
</message>
<message name="IDS_OPTIONS_GEARSSETTINGS_GROUP_NAME" desc="The label of the 'Gears Settings' group">
Google Gears:
</message>
<message name="IDS_OPTIONS_GEARSSETTINGS_CONFIGUREGEARS_BUTTON" desc="The label of the 'configure gears' button">
Change Google Gears settings
</message>
<message name="IDS_OPTIONS_CERTIFICATES_LABEL" desc="The info label for the 'Manage certificates' button">
Select trusted SSL certificates.
</message>
<message name="IDS_OPTIONS_CERTIFICATES_MANAGE_BUTTON" desc="The label of the 'Manage Certificates' button">
Manage certificates
</message>
<message name="IDS_OPTIONS_PASSWORDS_GROUP_NAME" desc="The title of the 'Passwords' group">
Passwords:
</message>
<message name="IDS_OPTIONS_PASSWORDS_ASKTOSAVE" desc="The label of the 'Ask me to save passwords' radio button">
Offer to save passwords
</message>
<message name="IDS_OPTIONS_PASSWORDS_NEVERSAVE" desc="The label of the 'Never save passwords' radio button">
Never save passwords
</message>
<message name="IDS_OPTIONS_PASSWORDS_SHOWPASSWORDS" desc="The label of the 'Show passwords' button">
Show saved passwords
</message>
<message name="IDS_OPTIONS_PASSWORDS_EXCEPTIONS" desc="The label of the 'Show saved passwords' button">
Show saved passwords
</message>
<message name="IDS_AUTOFILL_SETTING_WINDOWS_GROUP_NAME" desc="The title of the form autofill group">
Form autofill:
</message>
<message name="IDS_AUTOFILL_SAVEFORMS" desc="The autofill checkbox label">
Save text from forms to make them easier to fill out
</message>
<message name="IDS_THEMES_GROUP_NAME" desc="The title of the themes group">
Themes:
</message>
<message name="IDS_THEMES_RESET_BUTTON" desc="The button to reset your theme">
Reset to default theme
</message>
<message name="IDS_OPTIONS_FONTSANDLANGUAGES_GROUP_NAME" desc="The label of the 'Fonts and Languages' group">
Fonts and Languages:
</message>
<message name="IDS_OPTIONS_PROXIES_LABEL" desc="The info label for the 'Proxy settings' button">
Set up a proxy to connect to the network.
</message>
<message name="IDS_OPTIONS_PROXIES_CONFIGURE_BUTTON" desc="The label of the 'Configure proxy settings' button">
Change proxy settings
</message>
<message name="IDS_OPTIONS_COOKIES_ACCEPT_LABEL" desc="The documentation string of the 'accept cookies' preference">
Cookie settings:
</message>
<message name="IDS_OPTIONS_COOKIES_ACCEPT_ALL_COOKIES" desc="The label of the 'Accept all cookies' dropdown list item">
Allow all cookies
</message>
<message name="IDS_OPTIONS_COOKIES_RESTRICT_THIRD_PARTY_COOKIES" desc="The label of the 'Restrict third-party cookies' dropdown list item. This option accepts third-party cookies, but limits how they can be used on subsequent requests.">
Restrict how third-party cookies can be used
</message>
<message name="IDS_OPTIONS_COOKIES_BLOCK_THIRD_PARTY_COOKIES" desc="The label of the 'Block third-party cookies' dropdown list item. This option does not accept or send any third-party cookies.">
Completely block third-party cookies
</message>
<message name="IDS_OPTIONS_COOKIES_BLOCK_ALL_COOKIES" desc="The label of the 'Block all cookies' dropdown list item">
Block all cookies
</message>
<message name="IDS_OPTIONS_COOKIES_SHOWCOOKIES" desc="The label of the 'Show Cookies' button">
Show cookies
</message>
<message name="IDS_OPTIONS_PLUGINS_IN_SANDBOX" desc="The label for the 'run plugins in sandbox' option">
Runs plug-ins in a sandbox with no privileges. Will cause some plug-ins to not work properly.
</message>
<message name="IDS_OPTIONS_SAFEBROWSING_ENABLEPROTECTION" desc="The label of the 'Enable phishing and malware protection' checkbox">
Enable phishing and malware protection
</message>
<message name="IDS_OPTIONS_SSL_GROUP_DESCRIPTION" desc="The description of the 'SSL Connections' group">
Computer-wide SSL settings:
</message>
<message name="IDS_OPTIONS_SSL_USESSL2" desc="The label of the 'Use SSL 2.0' checkbox">
Use SSL 2.0
</message>
<message name="IDS_OPTIONS_SSL_CHECKREVOCATION" desc="The label of the 'Check for server certificate revocation' checkbox">
Check for server certificate revocation
</message>
<message name="IDS_OPTIONS_MIXED_CONTENT_LABEL" desc="The documentation string of the 'Mixed Content handling' preference.">
When there is mixed content on secure (SSL) pages:
</message>
<message name="IDS_OPTIONS_INCLUDE_NO_MIXED_CONTENT" desc="The combo-box option for setting that no mixed-content should be included.">
Block all insecure content
</message>
<message name="IDS_OPTIONS_INCLUDE_MIXED_CONTENT_IMAGE_ONLY" desc="The combo-box option for setting that only mixed-content which are not images should be included.">
Allow insecure images
</message>
<message name="IDS_OPTIONS_INCLUDE_MIXED_CONTENT" desc="The combo-box option for setting that all mixed-content be included.">
Allow all content to load
</message>
<message name="IDS_OPTIONS_IMPORT_DATA_GROUP_NAME" desc="The title of the 'Import' group.">
Import:
</message>
<message name="IDS_OPTIONS_IMPORT_DATA_INFO" desc="Information text about import options.">
You can import your bookmarks and settings from other browsers and user accounts on this computer.
</message>
<message name="IDS_OPTIONS_IMPORT_DATA_BUTTON" desc="Label for the import data button.">
Import data...
</message>
<message name="IDS_OPTIONS_CLEAR_DATA_GROUP_NAME" desc="The title of the 'Clear data' group.">
Clear Data:
</message>
<message name="IDS_OPTIONS_CLEAR_DATA_INFO" desc="Information text about clear data options.">
Clear your browsing data from this computer. Be aware that this may adversely affect the contents of the New Tab Page.
</message>
<message name="IDS_OPTIONS_CLEAR_DATA_BUTTON" desc="Label for the Clear data button.">
Clear browsing data...
</message>
<!-- Misc advanced option description strings. -->
<message name="IDS_WEBKIT_JAVA_ENABLED_DESCRIPTION" desc="In the advanced options tab, the text next to the checkbox that enables Java.">
Enable Java
</message>
<message name="IDS_WEBKIT_JAVASCRIPT_ENABLED_DESCRIPTION" desc="In the advanced options tab, the text next to the checkbox that enables JavaScript.">
Enable JavaScript
</message>
<message name="IDS_WEBKIT_PLUGINS_ENABLED_DESCRIPTION" desc="In the advanced options tab, the text next to the checkbox that enables plugins (like flash).">
Enable plug-ins
</message>
<message name="IDS_WEBKIT_IMAGE_LOAD_AUTOMATIC_DESCRIPTION" desc="In the advanced options tab, the text next to the checkbox that enables automatic image loading.">
Load images automatically
</message>
<message name="IDS_NETWORK_DNS_PREFETCH_ENABLED_DESCRIPTION" desc="In the advanced options tab, the text next to the checkbox that enables DNS prefetching. DNS prefetching involves scanning pages and user text entries, guessing what domain the user may next navigate to, and obtaining the damain's DNS information for that URL in advance. ">
Use DNS pre-fetching to improve page load performance
</message>
<!-- Cookies Window -->
<message name="IDS_COOKIES_WINDOW_TITLE" desc="The title of the Cookies Window">
Cookies
</message>
<message name="IDS_COOKIES_SEARCH_LABEL" desc="The label of the 'Search:' label in the Cookies window">
Search:
</message>
<message name="IDS_COOKIES_CLEAR_SEARCH_LABEL" desc="The label of the 'Clear' button in the Cookies window">
C&lear
</message>
<message name="IDS_COOKIES_INFO_LABEL" desc="The content of the description text above the cookies list in the Cookies window">
The following cookies are stored on your computer:
</message>
<message name="IDS_COOKIES_REMOVE_LABEL" desc="The label of the 'Remove' button in the Cookies Window">
&Remove
</message>
<message name="IDS_COOKIES_REMOVE_ALL_LABEL" desc="The label of the 'Remove All' button in the Cookies Window">
Remove &All
</message>
<message name="IDS_COOKIES_COOKIE_NAME_LABEL" desc="The Cookie Name label">
Name:
</message>
<message name="IDS_COOKIES_COOKIE_CONTENT_LABEL" desc="The Cookie Content label">
Content:
</message>
<message name="IDS_COOKIES_COOKIE_DOMAIN_LABEL" desc="The Cookie Domain label">
Domain:
</message>
<message name="IDS_COOKIES_COOKIE_PATH_LABEL" desc="The Cookie Path label">
Path:
</message>
<message name="IDS_COOKIES_COOKIE_SENDFOR_LABEL" desc="The Cookie Send For label">
Send For:
</message>
<message name="IDS_COOKIES_COOKIE_CREATED_LABEL" desc="The Cookie Created label">
Created:
</message>
<message name="IDS_COOKIES_COOKIE_EXPIRES_LABEL" desc="The Cookie Expires label">
Expires:
</message>
<message name="IDS_COOKIES_COOKIE_EXPIRES_SESSION" desc="The Cookie Expires field value for a session cookie">
End of the session
</message>
<message name="IDS_COOKIES_COOKIE_SENDFOR_ANY" desc="Send Cookie for any kind of connection">
Any kind of connection
</message>
<message name="IDS_COOKIES_COOKIE_SENDFOR_SECURE" desc="Send Cookie for any kind of connection">
Secure connections only
</message>
<message name="IDS_COOKIES_COOKIE_NONESELECTED" desc="Field value when no cookie is selected">
<no cookie selected>
</message>
<message name="IDS_COOKIES_DOMAIN_COLUMN_HEADER" desc="The label of the Domain header in the Cookies table">
Site
</message>
<message name="IDS_COOKIES_NAME_COLUMN_HEADER" desc="The label of the Cookie Name header in the Cookies table">
Cookie Name
</message>
<!-- New Tab -->
<message name="IDS_NEW_TAB_TITLE"
desc="Title of the new tab page, this is only shown while loading, then the title comes from the page">
New Tab
</message>
<message name="IDS_NEW_TAB_TITLE_WITH_PROFILE_NAME"
desc="Title of the new tab page with profile name, this is only shown while loading, then the title comes from the page">
New Tab [<ph name="PROFILE_NAME">$1</ph>]
</message>
<message name="IDS_NEW_TAB_MOST_VISITED"
desc="The 'Most Visited' heading on the new tab page">
Most visited
</message>
<message name="IDS_NEW_TAB_MOST_VISITED_WITH_PROFILE_NAME"
desc="The 'Most Visited' heading on the new tab page">
Most visited [<ph name="PROFILE_NAME">$1</ph>]
</message>
<message name="IDS_NEW_TAB_SEARCHES"
desc="The 'Searches' heading on the new tab page">
Searches
</message>
<message name="IDS_NEW_TAB_SEARCHES_MANAGE"
desc="The 'manage' link by the 'Searches' heading on the new tab page">
Manage
</message>
<message name="IDS_NEW_TAB_SEARCHES_INTRO"
desc="Explains the searches concept to new users.">
The search boxes that you use most frequently on other sites will appear here.
</message>
<message name="IDS_NEW_TAB_BOOKMARKS"
desc="The 'Bookmarks' heading on the new tab page">
Recent bookmarks
</message>
<message name="IDS_NEW_TAB_RECENT"
desc="The text to show for the 'Recent' heading. It is used to describe recent activity such as recent history, bookmarks, tabs, searches etc.">
Recent
</message>
<message name="IDS_NEW_TAB_HISTORY_SHOW"
desc="The 'Show history' link on the new tab page">
Show full history
</message>
<message name="IDS_NEW_TAB_REMOVE_THUMBNAILS"
desc="The 'Remove thumbnails' link on the new tab page">
Remove thumbnails
</message>
<message name="IDS_NEW_TAB_MOST_VISITED_DONE_REMOVING_BUTTON"
desc="The caption of the button used to validate the removal of thumbnails">
Done
</message>
<message name="IDS_NEW_TAB_MOST_VISITED_CANCEL_REMOVING_BUTTON"
desc="The caption of the button used to cancel the current removal thumbnails mode">
Cancel
</message>
<message name="IDS_NEW_TAB_RESTORE_THUMBNAILS_LINK"
desc="The link that restores previously removed thumbnails">
Restore all removed thumbnails
</message>
<message name="IDS_NEW_TAB_MOST_VISITED_EDIT_MODE_HEADING"
desc="The new tab page heading when in edit thumbnails mode.">
Click <ph name="CROSS_IMAGE"><div id="cross-image-container"></div></ph> to remove the thumbnail
</message>
<message name="IDS_NEW_TAB_HISTORY_SEARCH"
desc="The label for the field that searches the user's history on the new tab page">
Search your history
</message>
<message name="IDS_NEW_TAB_RECENTLY_CLOSED"
desc="The 'Recently Closed' heading on the new tab page">
Recently closed
</message>
<message name="IDS_NEW_TAB_FOOTER_HELP"
desc="The help footer on the new tab page">
Help
</message>
<message name="IDS_NEW_TAB_FOOTER_HELP_URL"
desc="The help footer link on the new tab page">
http://www.google.com/chrome/help/
</message>
<message name="IDS_NEW_TAB_OTR_MESSAGE"
desc="Used when a person opens an OTR window">
<ph name="BEGIN_BOLD"><strong></ph>You've gone incognito<ph name="END_BOLD">"</strong></ph>. Pages you view in this window won't appear in your browser history or search history, and they won't leave other traces, like cookies, on your computer after you close the incognito window. Any files you download or bookmarks you create will be preserved, however.
<ph name="LINE_BREAK"><br /><br /></ph>
<ph name="BEGIN_BOLD"><strong></ph>Going incognito doesn't affect the behavior of other people, servers, or software. Be wary of:<ph name="END_BOLD"></strong></ph>
<ph name="BEGIN_LIST"><ul></ph>
<ph name="BEGIN_LIST_ITEM"><li></ph>Websites that collect or share information about you<ph name="END_LIST_ITEM"></li></ph>
<ph name="BEGIN_LIST_ITEM"><li></ph>Internet service providers or employers that track the pages you visit<ph name="END_LIST_ITEM"></li></ph>
<ph name="BEGIN_LIST_ITEM"><li></ph>Malicious software that tracks your keystrokes in exchange for free smileys<ph name="END_LIST_ITEM"></li></ph>
<ph name="BEGIN_LIST_ITEM"><li></ph>Surveillance by secret agents<ph name="END_LIST_ITEM"></li></ph>
<ph name="BEGIN_LIST_ITEM"><li></ph>People standing behind you<ph name="END_LIST_ITEM"></li></ph>
<ph name="END_LIST"></ul></ph>
<ph name="BEGIN_LINK"><a href="$1"></ph>Learn more<ph name="END_LINK"></a></ph> about incognito browsing.
</message>
<message name="IDS_NEW_TAB_RECENTLY_CLOSED_WINDOW_SINGLE"
desc="Title of recently closed windows in the recently closed section of the new tab page when the window has a single tab">
1 Tab
</message>
<message name="IDS_NEW_TAB_RECENTLY_CLOSED_WINDOW_MULTIPLE"
desc="Title of recently closed windows in the recently closed section of the new tab page when the window has more than one tab. The % is replaced by the number of tabs">
% Tabs
</message>
<message name="IDS_NEW_TAB_ATTRIBUTION_INTRO"
desc="Leading sentence above a custom logo that the theme artist has provided">
Theme created by
</message>
<!-- SafeBrowsing -->
<message name="IDS_SAFE_BROWSING_MALWARE_TITLE" desc="SafeBrowsing Malware HTML title">
Malware Detected!
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_HEADLINE" desc="SafeBrowsing Malware HTML headline">
Warning: Visiting this site may harm your computer!
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DESCRIPTION1" desc="SafeBrowsing Malware HTML description, first line">
The website at <strong><ph name="HOST_NAME">$1<ex>www.malware.com</ex></ph></strong> appears to host malware – software that can hurt your computer or otherwise operate without your consent. Just visiting a site that hosts malware can infect your computer.
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DESCRIPTION2" desc="SafeBrowsing Malware HTML description, second line">
For detailed information about the problems with this site, visit the Google <ph name="DIAGNOSTIC_PAGE">$1<ex>diagnostic page</ex></ph> for <ph name="DOMAIN">$2<ex>www.malware.com</ex></ph>.
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DESCRIPTION3" desc="SafeBrowsing Malware HTML description, third line">
Learn more about how to protect yourself from harmful software online.
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DESCRIPTION4" desc="SafeBrowsing Malware HTML description, first line for case of subresource malicious">
The website at <strong><ph name="HOST_NAME">$1<ex>www.goodsite.com</ex></ph></strong> contains elements from the site <strong><ph name="ELEMENTS_HOST_NAME">$2<ex>www.evil.cn</ex></ph></strong>, which appears to host malware – software that can hurt your computer or otherwise operate without your consent. Just visiting a site that contains malware can infect your computer.
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DESCRIPTION5" desc="SafeBrowsing Malware HTML description, second line for case of subresource malicious">
For detailed information about the problems with these elements, visit the Google <ph name="DIAGNOSTIC_PAGE">$1<ex>diagnostic page</ex></ph> for <ph name="DOMAIN">$2<ex>www.evil.cn</ex></ph>.
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DESCRIPTION_AGREE" desc="SafeBrowsing Malware, agree checkbox text">
I understand that visiting this site may harm my computer.
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_PROCEED_BUTTON" desc="SafeBrowsing Malware, proceed button">
Proceed anyway
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_BACK_BUTTON" desc="SafeBrowsing Malware, back button">
Back to safety
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_DIAGNOSTIC_PAGE" desc="SafeBrowsing Malware diagnostic page">
Safe Browsing diagnostic page
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_TITLE" desc="SafeBrowsing Phishing HTML title">
Phishing Detected!
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_HEADLINE" desc="SafeBrowsing Phishing HTML headline">
Warning: Suspected phishing site!
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_DESCRIPTION1" desc="SafeBrowsing Phishing HTML description, first line">
The website at <strong><ph name="HOST_NAME">$1<ex>www.malware.com</ex></ph></strong> has been reported as a “phishing” site. Phishing sites trick users into disclosing personal or financial information, often by pretending to represent trusted institutions, such as banks.
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_DESCRIPTION2" desc="SafeBrowsing Phishing HTML description, second line, link to more information.">
Learn more about phishing scams.
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_PROCEED_BUTTON" desc="SafeBrowsing Phishing, proceed button">
Proceed anyway
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_BACK_BUTTON" desc="SafeBrowsing Phishing, back button">
Back to safety
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_REPORT_ERROR" desc="SafeBrowsing Phishing, report error link">
Report an error
</message>
<message name="IDS_SAFE_BROWSING_MULTI_THREAT_TITLE" desc="SafeBrowsing Multi threat HTML title">
Malware and phishing Detected!
</message>
<message name="IDS_SAFE_BROWSING_MULTI_THREAT_DESCRIPTION1" desc="SafeBrowsing multiple threat HTML description, first line">
The website at <strong><ph name="HOST_NAME">$1<ex>www.malware.com</ex></ph></strong> contains elements from sites which appear to host malware – software that can hurt your computer or otherwise operate without your consent. Just visiting a site that hosts malware can infect your computer. The website also hosts contents from sites that have been reported as a “phishing” sites. Phishing sites trick users into disclosing personal or financial information, often by pretending to represent trusted institutions, such as banks.
</message>
<message name="IDS_SAFE_BROWSING_MULTI_THREAT_DESCRIPTION2" desc="SafeBrowsing multiple threat HTML description, second line">
Below is a list of all the unsafe elements for the page. Click on the Diagnostic link for more information on the malware thread for a specific resource. If you know that a resource has been erroneously reported as phishing, click the 'Report error' link.
</message>
<message name="IDS_SAFE_BROWSING_MULTI_MALWARE_DESCRIPTION1" desc="SafeBrowsing Malware HTML description, first line for case of several malicious subresource">
The website at <strong><ph name="HOST_NAME">$1<ex>www.goodsite.com</ex></ph></strong> contains elements from sites which appear to host malware – software that can hurt your computer or otherwise operate without your consent. Just visiting a site that contains malware can infect your computer.
</message>
<message name="IDS_SAFE_BROWSING_MULTI_MALWARE_DESCRIPTION2" desc="SafeBrowsing Malware HTML description, second line for case of several malicious subresource">
Below is a list of all the unsafe elements for the page. Click on the Diagnostic link for more information on the thread for a specific element.
</message>
<message name="IDS_SAFE_BROWSING_MULTI_PHISHING_DESCRIPTION1" desc="SafeBrowsing Phishing HTML description, first line for case of several malicious subresource">
The website at <strong><ph name="HOST_NAME">$1<ex>www.malware.com</ex></ph></strong> contains elements from sites which have been reported as “phishing” sites. Phishing sites trick users into disclosing personal or financial information, often by pretending to represent trusted institutions, such as banks.
</message>
<message name="IDS_SAFE_BROWSING_PHISHING_LABEL" desc="SafeBrowsing multiple threats, phishing label in the table showing the reported threats.">
Phishing
</message>
<message name="IDS_SAFE_BROWSING_MALWARE_LABEL" desc="SafeBrowsing multiple threats, malware label in the table showing the reported threats.">
Malware
</message>
<message name="IDS_PLUGININSTALLER_MISSINGPLUGIN_PROMPT" desc="Info Bar message to prompt installing missing plugin">
An additional plug-in is required to display some elements on this page.
</message>
<message name="IDS_PLUGININSTALLER_INSTALLPLUGIN_BUTTON" desc="Info Bar button to install missing plugin">
Install plug-in...
</message>
<message name="IDS_PLUGININSTALLER_PROBLEMSINSTALLING" desc="Infobar text for link to help center">
Problems installing?
</message>
<message name="IDS_PLUGIN_CRASHED_PROMPT" desc="Info Bar message to notify about a crashed plugin">
The following plug-in has crashed : <ph name="PLUGIN_NAME">$1<ex>Shockwave</ex></ph>
</message>
<message name="IDS_WEBWORKER_CRASHED_PROMPT" desc="Info Bar message to notify about a crashed WebWorker">
A part of this page (HTML WebWorker) has crashed, so it might not function correctly.
</message>
<message name="IDS_JS_OUT_OF_MEMORY_PROMPT" desc="Info Bar message to notify JS out of memory">
Script on the page used too much memory. Reload to enable scripts again.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_PERSONAL_HISTORY_TITLE"
desc="Title of the personal history section">
Visit history
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_FIRST_VISITED_TODAY"
desc="Message in IDS_PAGE_INFO_SECURITY_TAB_PERSONAL_HISTORY_TITLE section displayed when first visited page today">
You have never visited this site before today.
</message>
<message name="IDS_PAGE_INFO_SECURITY_TAB_VISITED_BEFORE_TODAY"
desc="Message in IDS_PAGE_INFO_SECURITY_TAB_PERSONAL_HISTORY_TITLE section displayed when user has visited page before today">
You first visited this site on <ph name="VISIT_DATE">$1<ex>Nov 7, 2007</ex></ph>.
</message>
<!-- External Protocol Dialog -->
<message name="IDS_EXTERNAL_PROTOCOL_TITLE" desc="External Protocol Dialog Title">
External Protocol Request
</message>
<message name="IDS_EXTERNAL_PROTOCOL_OK_BUTTON_TEXT" desc="Button in External Protocol Dialog that launches the application associated with the protocol">
Launch Application
</message>
<message name="IDS_EXTERNAL_PROTOCOL_APPLICATION_TO_LAUNCH" desc="Information about the application being launched by the external protocol">
The following application will be launched if you accept this request:\n\n <ph name="APPLICATION">$1<ex>C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe /u "%1"</ex></ph>
</message>
<message name="IDS_EXTERNAL_PROTOCOL_WARNING" desc="Warn user about external protocols.">
If you did not initiate this request, it may represent an attempted attack on your system. Unless you took an explicit action to initiate this request, you should press Cancel.
</message>
<message name="IDS_EXTERNAL_PROTOCOL_CHECKBOX_TEXT" desc="Checkbox to remember users decision.">
Remember my choice for all links of this type.
</message>
<!-- Debugger -->
<message name="IDS_DEBUGGER_TITLE_BUSY" desc="V8 Debugger title bar displayed when busy (a command is running)">
JavaScript Debugger - Busy
</message>
<message name="IDS_DEBUGGER_TITLE_BREAK" desc="V8 Debugger title bar displayed when ready and stopped at a breakpoint">
JavaScript Debugger - Break
</message>
<message name="IDS_DEBUGGER_TITLE_RUNNING" desc="V8 Debugger title bar displayed when ready and the page is running">
JavaScript Debugger - Running
</message>
<!-- Shortcut Modifiers -->
<message name="IDS_CONTROL_MODIFIER" desc="Control key shortcut modifier">
Ctrl+<ph name="KEY_COMBO_NAME">$1<ex>C</ex></ph>
</message>
<message name="IDS_ALT_MODIFIER" desc="Alt key shortcut modifier">
Alt+<ph name="KEY_COMBO_NAME">$1<ex>C</ex></ph>
</message>
<message name="IDS_SHIFT_MODIFIER" desc="Shift key shortcut modifier">
Shift+<ph name="KEY_COMBO_NAME">$1<ex>C</ex></ph>
</message>
<!-- Key names -->
<message name="IDS_ESC_KEY" desc="Escape key">
Esc
</message>
<message name="IDS_TAB_KEY" desc="Tab key">
Tab
</message>
<message name="IDS_INSERT_KEY" desc="Insert key">
Ins
</message>
<message name="IDS_HOME_KEY" desc="Home key">
Home
</message>
<message name="IDS_DELETE_KEY" desc="Delete key">
Del
</message>
<message name="IDS_END_KEY" desc="End key">
End
</message>
<message name="IDS_PAGEUP_KEY" desc="Page up key">
PgUp
</message>
<message name="IDS_PAGEDOWN_KEY" desc="Page down key">
PgDwn
</message>
<message name="IDS_LEFT_ARROW_KEY" desc="Left arrow key">
Left Arrow
</message>
<message name="IDS_RIGHT_ARROW_KEY" desc="Right arrow key">
Right Arrow
</message>
<message name="IDS_RIGHT_UP_KEY" desc="Up arrow key">
Up Arrow
</message>
<message name="IDS_RIGHT_DOWN_KEY" desc="Down arrow key">
Down Arrow
</message>
<message name="IDS_ENTER_KEY" desc="Enter key">
Enter
</message>
<message name="IDS_F1_KEY" desc="F1 key">
F1
</message>
<message name="IDS_F11_KEY" desc="F11 key">
F11
</message>
<!-- Strings used in local directory listings -->
<message name="IDS_DIRECTORY_LISTING_HEADER" desc="When viewing a local directory, this is the title of the page.">
Index of <ph name="LOCATION">LOCATION<ex>c:\Documents and Settings</ex></ph>
</message>
<message name="IDS_DIRECTORY_LISTING_PARENT" desc="When viewing a local directory, this is the text for a link to the parent directory.">
[parent directory]
</message>
<message name="IDS_DIRECTORY_LISTING_NAME" desc="When viewing a local directory, this is the text for the column above the filenames.">
Name
</message>
<message name="IDS_DIRECTORY_LISTING_SIZE" desc="When viewing a local directory, this is the text for the column above the file sizes.">
Size
</message>
<message name="IDS_DIRECTORY_LISTING_DATE_MODIFIED" desc="When viewing a local directory, this is the text for the column above the last modified dates.">
Date Modified
</message>
<!-- Saving Page-->
<message name="IDS_SAVE_PAGE_DESC_HTML_ONLY" desc="In the Save Page dialog, the description of saving only the HTML of a web page.">
Web Page, HTML Only
</message>
<message name="IDS_SAVE_PAGE_DESC_COMPLETE" desc="In the Save Page dialog, the description of saving both the HTML and all shown resources.">
Web Page, Complete
</message>
<message name="IDS_SAVE_PAGE_STATUS_COMPLETED" desc="Save page status: completed">
Completed
</message>
<message name="IDS_SAVE_PAGE_STATUS_CANCELLED" desc="Save page status: cancelled">
Cancelled
</message>
<message name="IDS_SAVE_PAGE_STATUS_FAILED" desc="Save page status: failed">
Failed
</message>
<message name="IDS_SAVE_PAGE_PROGRESS" desc="Text string for saving page progress, the number of saved files and total files">
<ph name="SAVED_FILES">$1<ex>5</ex></ph> / <ph name="TOTAL_FILES">$2<ex>13</ex></ph> files
</message>
<!-- Report Phishing website -->
<message name="IDS_PAGE_MENU_REPORT_PHISHING_WEBSITE" desc="The menu label for the menu item that allows the user to report the current page as a phishing website.">
Report phishing website...
</message>
<message name="IDS_OPTIONS_LINKDOCTOR_PREF" desc="The documentation string of the 'Use Link Doctor' preference">
Show suggestions for navigation errors
</message>
<message name="IDS_OPTIONS_LINKDOCTOR_URL" desc="The documentation string of the preference that sets the URL of the link doctor service">
Service URL:
</message>
<message name="IDS_OPTIONS_SUGGEST_PREF" desc="The documentation string of the 'Use Suggest' preference">
Use a suggestion service to help complete searches and URLs typed in the address bar
</message>
<message name="IDS_OPTIONS_SUGGEST_URL" desc="The documentation string of the preference">
Suggestion service URL:
</message>
<message name="IDS_OPTIONS_FONTSETTINGS_INFO" desc="Information text about font and language options for web pages">
Change the default font and language for webpages.
</message>
<message name="IDS_OPTIONS_FONTSETTINGS_CONFIGUREFONTS_BUTTON" desc="The label of the 'configure fonts' button">
Change font and language settings
</message>
<message name="IDS_OPTIONS_CHROME_DICTIONARY_INFO" desc="The documentation string of the 'Spell check dictionary language' section">
Change the language of the spell-checking dictionary.
</message>
<message name="IDS_OPTIONS_CHROME_DICTIONARY_LANGUAGE" desc="The documentation string of the 'Spell check dictionary language' preference">
Spell-checker language:
</message>
<message name="IDS_OPTIONS_ENABLE_SPELLCHECK" desc="The documentation string of the 'Enable spellcheck' option">
Check spelling:
</message>
<message name="IDS_OPTIONS_ENABLE_AUTO_SPELL_CORRECTION" desc="The documentation string of the 'Enable auto spell correction' option">
Correct spelling automatically:
</message>
<message name="IDS_OPTIONS_RESET" desc="The label of the 'Reset all settings to defaults' button">
Reset to defaults
</message>
<message name="IDS_OPTIONS_RESET_OKLABEL" desc="The label of the OK button in the 'Reset Chrome options' confirmation dialog box">
Reset to defaults
</message>
<message name="IDS_OPTIONS_RESET_CANCELLABEL" desc="The label of the Cancel button in the 'Reset Chrome options' confirmation dialog box">
Don't reset
</message>
<!-- Can't write to user data directory dialog -->
<message name="IDS_CANT_WRITE_USER_DIRECTORY_TITLE" desc="Title of dialog that is displayed when we can't create a directory for this user.">
Failed To Create Data Directory
</message>
<message name="IDS_CANT_WRITE_USER_DIRECTORY_CHOOSE_DIRECTORY_BUTTON" desc="Text on button that opens another dialog to choose a new directory for user data.">
Choose Another Directory...
</message>
<!-- User data directory profiles dialog -->
<message name="IDS_SELECT_PROFILE_DIALOG_TITLE" desc="Title of the dialog that lets the user select a profile to open a new window.">
Select a Profile
</message>
<message name="IDS_SELECT_PROFILE_DIALOG_LABEL_TEXT" desc="The label for the combo box that shows all the available profiles.">
Select a profile to open a new window
</message>
<message name="IDS_SELECT_PROFILE_DIALOG_NEW_PROFILE_ENTRY" desc="Text for an extra entry in the profiles combo box. The user can select this entry to create a new profile.">
<New Profile>...
</message>
<!-- User data directory new profile dialog -->
<message name="IDS_NEW_PROFILE_DIALOG_TITLE" desc="Title of dialog that lets the user enter a new profile name to open new window.">
Enter a Profile Name
</message>
<message name="IDS_NEW_PROFILE_DIALOG_LABEL_TEXT" desc="The label for the text box that lets the user enter a new profile name.">
Enter a new profile name
</message>
<message name="IDS_NEW_PROFILE_DIALOG_CREATE_SHORTCUT_TEXT" desc="The label for the text box that lets the user enter a new profile name.">
Create a desktop shortcut for this profile
</message>
<!-- Advanced Section Titles -->
<message name="IDS_OPTIONS_ADVANCED_SECTION_TITLE_PRIVACY">
Privacy
</message>
<message name="IDS_OPTIONS_ADVANCED_SECTION_TITLE_CONTENT">
Web Content
</message>
<message name="IDS_OPTIONS_ADVANCED_SECTION_TITLE_SECURITY">
Security
</message>
<message name="IDS_OPTIONS_ADVANCED_SECTION_TITLE_NETWORK">
Network
</message>
<!-- Script Timeout Dialog -->
<message name="IDS_SCRIPT_TIMEOUT_DIALOG_TITLE" desc="Title of the script timeout dialog.">
Unresponsive Script
</message>
<message name="IDS_SCRIPT_TIMEOUT_DIALOG_BODY" desc="Message to warn that a script is unresponsive. (For example, it may be in an infinite loop.)">
A script running on this page is taking a loooong time to do its job. Do you want to see if the script can complete, or just give up?
</message>
<message name="IDS_SCRIPT_TIMEOUT_DIALOG_STOP_SCRIPT_BUTTON" desc="Text for the button which kills the script.">
Give up
</message>
<message name="IDS_SCRIPT_TIMEOUT_DIALOG_CONTINUE_SCRIPT_BUTTON" desc="Text for the button which continues to run the script and resets the timeout.">
Continue
</message>
<!-- Constrained Window -->
<message name="IDS_BLOCKED_POPUP" desc="Text on a blocked popup's window titlebar.">
Blocked Pop-up
</message>
<message name="IDS_POPUPS_BLOCKED_COUNT" desc="Message on the blocked popup window when there are blocked popups">
Pop-ups Blocked: <ph name="COUNT">$1<ex>2</ex></ph>
</message>
<message name="IDS_POPUPS_UNBLOCKED" desc="Message on the blocked popup window when there are only whitelisted popups">
Manage pop-ups
</message>
<message name="IDS_POPUP_TITLE_FORMAT" desc="Order of URL - Title on the popup">
<ph name="URL">$1</ph> - <ph name="WINDOW_TITLE">$2</ph>
</message>
<message name="IDS_POPUP_HOST_FORMAT" desc="Checkable menu item to always allow popups from a particular hostname">
Always show pop-ups from <ph name="URL">$1</ph>
</message>
<!-- Multiple download warning-->
<message name="IDS_MULTI_DOWNLOAD_WARNING" desc="Warning invoked if multiple downloads are attempted without user interaction.">
This site is attempting to download multiple files. Do you want to allow this?
</message>
<message name="IDS_MULTI_DOWNLOAD_WARNING_ALLOW" desc="Text on the allow button in the IDS_MULTI_DOWNLOAD_WARNING dialog">
Allow
</message>
<message name="IDS_MULTI_DOWNLOAD_WARNING_DENY" desc="Text on the deny button in the IDS_MULTI_DOWNLOAD_WARNING dialog">
Deny
</message>
<!-- Bookmark table -->
<message name="IDS_BOOKMARK_TABLE_TITLE" desc="Title of the column in bookmark table showing the title of the bookmark.">
Title
</message>
<message name="IDS_BOOKMARK_TABLE_URL" desc="Title of the column in bookmark table showing the url of the bookmark.">
URL
</message>
<message name="IDS_BOOKMARK_TABLE_PATH" desc="Title of the column in bookmark table showing the path in the bookmark bar of the node.">
Folder
</message>
<message name="IDS_BOOKMARK_TABLE_OTHER_BOOKMARKS_PATH" desc="Path used for bookmarks in the other bookmarks folder">
Other bookmarks
</message>
<message name="IDS_BOOKMARK_TABLE_BOOKMARK_BAR_PATH" desc="Path used for bookmarks on the bookmark bar">
Bookmark bar
</message>
<message name="IDS_BOOKMARK_TABLE_PATH_SEPARATOR" desc="Separator between path elements in the bookmarks table">
/
</message>
<!-- Bookmark tree -->
<message name="IDS_BOOKMARK_TREE_RECENTLY_BOOKMARKED_NODE_TITLE" desc="Title of the bookmark node in the bookmark manager showing the 'recently bookmarked' bookmarks">
Recently Added
</message>
<message name="IDS_BOOKMARK_TREE_SEARCH_NODE_TITLE" desc="Title of node under which search results are shown.">
Search
</message>
<!-- Bookmark manager -->
<message name="IDS_BOOKMARK_MANAGER_TITLE" desc="Title of the bookmark manager window.">
Bookmark Manager
</message>
<message name="IDS_BOOKMARK_MANAGER" desc="The label of the menu item that shows the bookmark manager">
&Bookmark manager
</message>
<message name="IDS_BOOKMARK_MANAGER_SHOW_IN_FOLDER" desc="The label of the menu item in the bookmark manager context menu that changes the selection in the tree to match the folder of the selected item in the table.">
Show in folder
</message>
<message name="IDS_BOOKMARK_MANAGER_SORT" desc="The label of the menu item in the bookmark manager organize menu that alphabetizes the bookmarks/folders by title.">
Reorder by title
</message>
<message name="IDS_BOOKMARK_MANAGER_ORGANIZE_MENU" desc="Title of the organize menu in the bookmark manager.">
Organize
</message>
<message name="IDS_BOOKMARK_MANAGER_TOOLS_MENU" desc="Title of the tools menu in the bookmark manager.">
Tools
</message>
<message name="IDS_BOOKMARK_MANAGER_IMPORT_MENU" desc="Title of the import menu item in the bookmark manager.">
Import bookmarks...
</message>
<message name="IDS_BOOKMARK_MANAGER_EXPORT_MENU" desc="Title of the export menu item in the bookmark manager.">
Export bookmarks...
</message>
<message name="IDS_BOOKMARK_MANAGER_NO_SEARCH_TEXT" desc="Text shown in the bookmark table if the user clicks on the search folder without typing in any text in the search text field.">
Enter a query in the text field above to search your bookmarks.
</message>
<message name="IDS_BOOKMARK_MANAGER_NO_RESULTS" desc="Text shown in the bookmark table when the search didn't find anything.">
No bookmarks match the query '<ph name="SEARCH_TEXT">$1</ph>'.
</message>
<message name="IDS_BOOKMARK_MANAGER_SEARCH_TITLE" desc="Text shown before the search text field.">
Search:
</message>
<message name="IDS_DEFAULT_FILENAME" desc="Default name for saved files when we have no idea what they could be.">
unknown
</message>
<message name="IDS_BROWSER_WINDOW_MAC_TAB_UNTITLED" desc="Tabs and windows on MacOS with no title use this string.">
Untitled
</message>
<message name="IDS_SET_AS_DEFAULT_INFOBAR_BUTTON_LABEL" desc="The label of the 'set as default' button on the default browser infobar.">
Set as default
</message>
<message name="IDS_DONT_ASK_AGAIN_INFOBAR_BUTTON_LABEL" desc="The label of the 'don't ask again' button on the default browser infobar.">
Don't ask again
</message>
<message name="IDS_SHOW_WINDOW_DECORATIONS" desc="The menu entry text in the tab strip context menu. This toggles the system title bar and window borders (window decorations) on linux.">
Use system title bar and borders
</message>
<message name="IDS_RGBA_CSS_FORMAT_STRING" translateable="false" desc="The format string to use when converting colors to CSS rgba().">
rgba($1, $2, $3, $4)
</message>
</messages>
</release>
</grit>
|