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
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file contains definitions of strings that are distribution specific.
If you update this file, be sure also to update google_chrome_strings.grd. -->
<grit base_dir="." latest_public_release="0" current_release="1"
source_lang_id="en" enc_check="möl">
<outputs>
<output filename="grit/branded_strings.h" type="rc_header">
<emit emit_type='prepend'></emit>
</output>
<output filename="branded_strings_af.pak" type="data_package" lang="af" />
<output filename="branded_strings_am.pak" type="data_package" lang="am" />
<output filename="branded_strings_ar.pak" type="data_package" lang="ar" />
<output filename="branded_strings_as.pak" type="data_package" lang="as" />
<output filename="branded_strings_az.pak" type="data_package" lang="az" />
<output filename="branded_strings_be.pak" type="data_package" lang="be" />
<output filename="branded_strings_bg.pak" type="data_package" lang="bg" />
<output filename="branded_strings_bn.pak" type="data_package" lang="bn" />
<output filename="branded_strings_bs.pak" type="data_package" lang="bs" />
<output filename="branded_strings_ca.pak" type="data_package" lang="ca" />
<output filename="branded_strings_cs.pak" type="data_package" lang="cs" />
<output filename="branded_strings_cy.pak" type="data_package" lang="cy" />
<output filename="branded_strings_da.pak" type="data_package" lang="da" />
<output filename="branded_strings_de.pak" type="data_package" lang="de" />
<output filename="branded_strings_el.pak" type="data_package" lang="el" />
<output filename="branded_strings_en-GB.pak" type="data_package" lang="en-GB" />
<output filename="branded_strings_en-US.pak" type="data_package" lang="en" />
<output filename="branded_strings_es.pak" type="data_package" lang="es" />
<output filename="branded_strings_es-419.pak" type="data_package" lang="es-419" />
<output filename="branded_strings_et.pak" type="data_package" lang="et" />
<output filename="branded_strings_eu.pak" type="data_package" lang="eu" />
<output filename="branded_strings_fa.pak" type="data_package" lang="fa" />
<output filename="branded_strings_fi.pak" type="data_package" lang="fi" />
<output filename="branded_strings_fil.pak" type="data_package" lang="fil" />
<output filename="branded_strings_fr-CA.pak" type="data_package" lang="fr-CA" />
<output filename="branded_strings_fr.pak" type="data_package" lang="fr" />
<output filename="branded_strings_gl.pak" type="data_package" lang="gl" />
<output filename="branded_strings_gu.pak" type="data_package" lang="gu" />
<output filename="branded_strings_he.pak" type="data_package" lang="he" />
<output filename="branded_strings_hi.pak" type="data_package" lang="hi" />
<output filename="branded_strings_hr.pak" type="data_package" lang="hr" />
<output filename="branded_strings_hu.pak" type="data_package" lang="hu" />
<output filename="branded_strings_hy.pak" type="data_package" lang="hy" />
<output filename="branded_strings_id.pak" type="data_package" lang="id" />
<output filename="branded_strings_is.pak" type="data_package" lang="is" />
<output filename="branded_strings_it.pak" type="data_package" lang="it" />
<output filename="branded_strings_ja.pak" type="data_package" lang="ja" />
<output filename="branded_strings_ka.pak" type="data_package" lang="ka" />
<output filename="branded_strings_kk.pak" type="data_package" lang="kk" />
<output filename="branded_strings_km.pak" type="data_package" lang="km" />
<output filename="branded_strings_kn.pak" type="data_package" lang="kn" />
<output filename="branded_strings_ko.pak" type="data_package" lang="ko" />
<output filename="branded_strings_ky.pak" type="data_package" lang="ky" />
<output filename="branded_strings_lo.pak" type="data_package" lang="lo" />
<output filename="branded_strings_lt.pak" type="data_package" lang="lt" />
<output filename="branded_strings_lv.pak" type="data_package" lang="lv" />
<output filename="branded_strings_mk.pak" type="data_package" lang="mk" />
<output filename="branded_strings_ml.pak" type="data_package" lang="ml" />
<output filename="branded_strings_mn.pak" type="data_package" lang="mn" />
<output filename="branded_strings_mr.pak" type="data_package" lang="mr" />
<output filename="branded_strings_ms.pak" type="data_package" lang="ms" />
<output filename="branded_strings_my.pak" type="data_package" lang="my" />
<output filename="branded_strings_ne.pak" type="data_package" lang="ne" />
<output filename="branded_strings_nl.pak" type="data_package" lang="nl" />
<!-- The translation console uses 'no' for Norwegian Bokmål. It should
be 'nb'. -->
<output filename="branded_strings_nb.pak" type="data_package" lang="no" />
<output filename="branded_strings_pa.pak" type="data_package" lang="pa" />
<output filename="branded_strings_pl.pak" type="data_package" lang="pl" />
<output filename="branded_strings_pt-BR.pak" type="data_package" lang="pt-BR" />
<output filename="branded_strings_pt-PT.pak" type="data_package" lang="pt-PT" />
<output filename="branded_strings_or.pak" type="data_package" lang="or" />
<output filename="branded_strings_ro.pak" type="data_package" lang="ro" />
<output filename="branded_strings_ru.pak" type="data_package" lang="ru" />
<output filename="branded_strings_si.pak" type="data_package" lang="si" />
<output filename="branded_strings_sk.pak" type="data_package" lang="sk" />
<output filename="branded_strings_sl.pak" type="data_package" lang="sl" />
<output filename="branded_strings_sq.pak" type="data_package" lang="sq" />
<output filename="branded_strings_sr-Latn.pak" type="data_package" lang="sr-Latn" />
<output filename="branded_strings_sr.pak" type="data_package" lang="sr" />
<output filename="branded_strings_sv.pak" type="data_package" lang="sv" />
<output filename="branded_strings_sw.pak" type="data_package" lang="sw" />
<output filename="branded_strings_ta.pak" type="data_package" lang="ta" />
<output filename="branded_strings_te.pak" type="data_package" lang="te" />
<output filename="branded_strings_th.pak" type="data_package" lang="th" />
<output filename="branded_strings_tr.pak" type="data_package" lang="tr" />
<output filename="branded_strings_uk.pak" type="data_package" lang="uk" />
<output filename="branded_strings_ur.pak" type="data_package" lang="ur" />
<output filename="branded_strings_uz.pak" type="data_package" lang="uz" />
<output filename="branded_strings_vi.pak" type="data_package" lang="vi" />
<output filename="branded_strings_zh-CN.pak" type="data_package" lang="zh-CN" />
<output filename="branded_strings_zh-HK.pak" type="data_package" lang="zh-HK" />
<output filename="branded_strings_zh-TW.pak" type="data_package" lang="zh-TW" />
<output filename="branded_strings_zu.pak" type="data_package" lang="zu" />
<!-- Pseudolocales -->
<output filename="branded_strings_ar-XB.pak" type="data_package" lang="ar-XB" />
<output filename="branded_strings_en-XA.pak" type="data_package" lang="en-XA" />
<!-- On Android, output some strings into Android's xml string format.
These strings are tagged with formatter_data="android_java" -->
<if expr="is_android">
<output filename="java/res/values-af/branded_strings.xml" lang="af" type="android" context="android_java" />
<output filename="java/res/values-am/branded_strings.xml" lang="am" type="android" context="android_java" />
<output filename="java/res/values-ar/branded_strings.xml" lang="ar" type="android" context="android_java" />
<output filename="java/res/values-as/branded_strings.xml" lang="as" type="android" context="android_java" />
<output filename="java/res/values-az/branded_strings.xml" lang="az" type="android" context="android_java" />
<output filename="java/res/values-be/branded_strings.xml" lang="be" type="android" context="android_java" />
<output filename="java/res/values-bg/branded_strings.xml" lang="bg" type="android" context="android_java" />
<output filename="java/res/values-bn/branded_strings.xml" lang="bn" type="android" context="android_java" />
<output filename="java/res/values-bs/branded_strings.xml" lang="bs" type="android" context="android_java" />
<output filename="java/res/values-ca/branded_strings.xml" lang="ca" type="android" context="android_java" />
<output filename="java/res/values-cs/branded_strings.xml" lang="cs" type="android" context="android_java" />
<output filename="java/res/values-da/branded_strings.xml" lang="da" type="android" context="android_java" />
<output filename="java/res/values-de/branded_strings.xml" lang="de" type="android" context="android_java" />
<output filename="java/res/values-el/branded_strings.xml" lang="el" type="android" context="android_java" />
<output filename="java/res/values/branded_strings.xml" lang="en" type="android" context="android_java" />
<output filename="java/res/values-en-rGB/branded_strings.xml" lang="en-GB" type="android" context="android_java" />
<output filename="java/res/values-es/branded_strings.xml" lang="es" type="android" context="android_java" />
<output filename="java/res/values-es-rUS/branded_strings.xml" lang="es-419" type="android" context="android_java" />
<output filename="java/res/values-et/branded_strings.xml" lang="et" type="android" context="android_java" />
<output filename="java/res/values-eu/branded_strings.xml" lang="eu" type="android" context="android_java" />
<output filename="java/res/values-fa/branded_strings.xml" lang="fa" type="android" context="android_java" />
<output filename="java/res/values-fi/branded_strings.xml" lang="fi" type="android" context="android_java" />
<output filename="java/res/values-tl/branded_strings.xml" lang="fil" type="android" context="android_java" />
<output filename="java/res/values-fr/branded_strings.xml" lang="fr" type="android" context="android_java" />
<output filename="java/res/values-fr-rCA/branded_strings.xml" lang="fr-CA" type="android" context="android_java" />
<output filename="java/res/values-gl/branded_strings.xml" lang="gl" type="android" context="android_java" />
<output filename="java/res/values-gu/branded_strings.xml" lang="gu" type="android" context="android_java" />
<output filename="java/res/values-iw/branded_strings.xml" lang="he" type="android" context="android_java" />
<output filename="java/res/values-hi/branded_strings.xml" lang="hi" type="android" context="android_java" />
<output filename="java/res/values-hr/branded_strings.xml" lang="hr" type="android" context="android_java" />
<output filename="java/res/values-hu/branded_strings.xml" lang="hu" type="android" context="android_java" />
<output filename="java/res/values-hy/branded_strings.xml" lang="hy" type="android" context="android_java" />
<output filename="java/res/values-in/branded_strings.xml" lang="id" type="android" context="android_java" />
<output filename="java/res/values-is/branded_strings.xml" lang="is" type="android" context="android_java" />
<output filename="java/res/values-it/branded_strings.xml" lang="it" type="android" context="android_java" />
<output filename="java/res/values-ja/branded_strings.xml" lang="ja" type="android" context="android_java" />
<output filename="java/res/values-ka/branded_strings.xml" lang="ka" type="android" context="android_java" />
<output filename="java/res/values-kk/branded_strings.xml" lang="kk" type="android" context="android_java" />
<output filename="java/res/values-km/branded_strings.xml" lang="km" type="android" context="android_java" />
<output filename="java/res/values-kn/branded_strings.xml" lang="kn" type="android" context="android_java" />
<output filename="java/res/values-ko/branded_strings.xml" lang="ko" type="android" context="android_java" />
<output filename="java/res/values-ky/branded_strings.xml" lang="ky" type="android" context="android_java" />
<output filename="java/res/values-lo/branded_strings.xml" lang="lo" type="android" context="android_java" />
<output filename="java/res/values-lt/branded_strings.xml" lang="lt" type="android" context="android_java" />
<output filename="java/res/values-lv/branded_strings.xml" lang="lv" type="android" context="android_java" />
<output filename="java/res/values-mk/branded_strings.xml" lang="mk" type="android" context="android_java" />
<output filename="java/res/values-ml/branded_strings.xml" lang="ml" type="android" context="android_java" />
<output filename="java/res/values-mn/branded_strings.xml" lang="mn" type="android" context="android_java" />
<output filename="java/res/values-mr/branded_strings.xml" lang="mr" type="android" context="android_java" />
<output filename="java/res/values-ms/branded_strings.xml" lang="ms" type="android" context="android_java" />
<output filename="java/res/values-my/branded_strings.xml" lang="my" type="android" context="android_java" />
<output filename="java/res/values-ne/branded_strings.xml" lang="ne" type="android" context="android_java" />
<output filename="java/res/values-nl/branded_strings.xml" lang="nl" type="android" context="android_java" />
<output filename="java/res/values-nb/branded_strings.xml" lang="no" type="android" context="android_java" />
<output filename="java/res/values-or/branded_strings.xml" lang="or" type="android" context="android_java" />
<output filename="java/res/values-pa/branded_strings.xml" lang="pa" type="android" context="android_java" />
<output filename="java/res/values-pl/branded_strings.xml" lang="pl" type="android" context="android_java" />
<output filename="java/res/values-pt-rBR/branded_strings.xml" lang="pt-BR" type="android" context="android_java" />
<output filename="java/res/values-pt-rPT/branded_strings.xml" lang="pt-PT" type="android" context="android_java" />
<output filename="java/res/values-ro/branded_strings.xml" lang="ro" type="android" context="android_java" />
<output filename="java/res/values-ru/branded_strings.xml" lang="ru" type="android" context="android_java" />
<output filename="java/res/values-si/branded_strings.xml" lang="si" type="android" context="android_java" />
<output filename="java/res/values-sk/branded_strings.xml" lang="sk" type="android" context="android_java" />
<output filename="java/res/values-sl/branded_strings.xml" lang="sl" type="android" context="android_java" />
<output filename="java/res/values-sq/branded_strings.xml" lang="sq" type="android" context="android_java" />
<output filename="java/res/values-sr/branded_strings.xml" lang="sr" type="android" context="android_java" />
<output filename="java/res/values-b+sr+Latn/branded_strings.xml" lang="sr-Latn" type="android" context="android_java" />
<output filename="java/res/values-sv/branded_strings.xml" lang="sv" type="android" context="android_java" />
<output filename="java/res/values-sw/branded_strings.xml" lang="sw" type="android" context="android_java" />
<output filename="java/res/values-ta/branded_strings.xml" lang="ta" type="android" context="android_java" />
<output filename="java/res/values-te/branded_strings.xml" lang="te" type="android" context="android_java" />
<output filename="java/res/values-th/branded_strings.xml" lang="th" type="android" context="android_java" />
<output filename="java/res/values-tr/branded_strings.xml" lang="tr" type="android" context="android_java" />
<output filename="java/res/values-uk/branded_strings.xml" lang="uk" type="android" context="android_java" />
<output filename="java/res/values-ur/branded_strings.xml" lang="ur" type="android" context="android_java" />
<output filename="java/res/values-uz/branded_strings.xml" lang="uz" type="android" context="android_java" />
<output filename="java/res/values-vi/branded_strings.xml" lang="vi" type="android" context="android_java" />
<output filename="java/res/values-zh-rCN/branded_strings.xml" lang="zh-CN" type="android" context="android_java" />
<output filename="java/res/values-zh-rHK/branded_strings.xml" lang="zh-HK" type="android" context="android_java" />
<output filename="java/res/values-zh-rTW/branded_strings.xml" lang="zh-TW" type="android" context="android_java" />
<output filename="java/res/values-zu/branded_strings.xml" lang="zu" type="android" context="android_java" />
<!-- Pseudolocales -->
<output filename="java/res/values-ar-rXB/branded_strings.xml" lang="ar-XB" type="android" context="android_java" />
<output filename="java/res/values-en-rXA/branded_strings.xml" lang="en-XA" type="android" context="android_java" />
</if>
</outputs>
<translations>
<file path="resources/chromium_strings_af.xtb" lang="af" />
<file path="resources/chromium_strings_am.xtb" lang="am" />
<file path="resources/chromium_strings_ar.xtb" lang="ar" />
<file path="resources/chromium_strings_as.xtb" lang="as" />
<file path="resources/chromium_strings_az.xtb" lang="az" />
<file path="resources/chromium_strings_be.xtb" lang="be" />
<file path="resources/chromium_strings_bg.xtb" lang="bg" />
<file path="resources/chromium_strings_bn.xtb" lang="bn" />
<file path="resources/chromium_strings_bs.xtb" lang="bs" />
<file path="resources/chromium_strings_ca.xtb" lang="ca" />
<file path="resources/chromium_strings_cs.xtb" lang="cs" />
<file path="resources/chromium_strings_cy.xtb" lang="cy" />
<file path="resources/chromium_strings_da.xtb" lang="da" />
<file path="resources/chromium_strings_de.xtb" lang="de" />
<file path="resources/chromium_strings_el.xtb" lang="el" />
<file path="resources/chromium_strings_en-GB.xtb" lang="en-GB" />
<file path="resources/chromium_strings_es.xtb" lang="es" />
<file path="resources/chromium_strings_es-419.xtb" lang="es-419" />
<file path="resources/chromium_strings_et.xtb" lang="et" />
<file path="resources/chromium_strings_eu.xtb" lang="eu" />
<file path="resources/chromium_strings_fa.xtb" lang="fa" />
<file path="resources/chromium_strings_fi.xtb" lang="fi" />
<file path="resources/chromium_strings_fil.xtb" lang="fil" />
<file path="resources/chromium_strings_fr.xtb" lang="fr" />
<file path="resources/chromium_strings_fr-CA.xtb" lang="fr-CA" />
<file path="resources/chromium_strings_gl.xtb" lang="gl" />
<file path="resources/chromium_strings_gu.xtb" lang="gu" />
<file path="resources/chromium_strings_hi.xtb" lang="hi" />
<file path="resources/chromium_strings_hr.xtb" lang="hr" />
<file path="resources/chromium_strings_hu.xtb" lang="hu" />
<file path="resources/chromium_strings_hy.xtb" lang="hy" />
<file path="resources/chromium_strings_id.xtb" lang="id" />
<file path="resources/chromium_strings_is.xtb" lang="is" />
<file path="resources/chromium_strings_it.xtb" lang="it" />
<!-- The translation console uses 'iw' for Hebrew, but we use 'he'. -->
<file path="resources/chromium_strings_iw.xtb" lang="he" />
<file path="resources/chromium_strings_ja.xtb" lang="ja" />
<file path="resources/chromium_strings_ka.xtb" lang="ka" />
<file path="resources/chromium_strings_kk.xtb" lang="kk" />
<file path="resources/chromium_strings_km.xtb" lang="km" />
<file path="resources/chromium_strings_kn.xtb" lang="kn" />
<file path="resources/chromium_strings_ko.xtb" lang="ko" />
<file path="resources/chromium_strings_ky.xtb" lang="ky" />
<file path="resources/chromium_strings_lo.xtb" lang="lo" />
<file path="resources/chromium_strings_lt.xtb" lang="lt" />
<file path="resources/chromium_strings_lv.xtb" lang="lv" />
<file path="resources/chromium_strings_mk.xtb" lang="mk" />
<file path="resources/chromium_strings_ml.xtb" lang="ml" />
<file path="resources/chromium_strings_mn.xtb" lang="mn" />
<file path="resources/chromium_strings_mr.xtb" lang="mr" />
<file path="resources/chromium_strings_ms.xtb" lang="ms" />
<file path="resources/chromium_strings_my.xtb" lang="my" />
<file path="resources/chromium_strings_ne.xtb" lang="ne" />
<file path="resources/chromium_strings_nl.xtb" lang="nl" />
<file path="resources/chromium_strings_no.xtb" lang="no" />
<file path="resources/chromium_strings_or.xtb" lang="or" />
<file path="resources/chromium_strings_pa.xtb" lang="pa" />
<file path="resources/chromium_strings_pl.xtb" lang="pl" />
<file path="resources/chromium_strings_pt-BR.xtb" lang="pt-BR" />
<file path="resources/chromium_strings_pt-PT.xtb" lang="pt-PT" />
<file path="resources/chromium_strings_ro.xtb" lang="ro" />
<file path="resources/chromium_strings_ru.xtb" lang="ru" />
<file path="resources/chromium_strings_si.xtb" lang="si" />
<file path="resources/chromium_strings_sk.xtb" lang="sk" />
<file path="resources/chromium_strings_sl.xtb" lang="sl" />
<file path="resources/chromium_strings_sq.xtb" lang="sq" />
<file path="resources/chromium_strings_sr.xtb" lang="sr" />
<file path="resources/chromium_strings_sr-Latn.xtb" lang="sr-Latn" />
<file path="resources/chromium_strings_sv.xtb" lang="sv" />
<file path="resources/chromium_strings_sw.xtb" lang="sw" />
<file path="resources/chromium_strings_ta.xtb" lang="ta" />
<file path="resources/chromium_strings_te.xtb" lang="te" />
<file path="resources/chromium_strings_th.xtb" lang="th" />
<file path="resources/chromium_strings_tr.xtb" lang="tr" />
<file path="resources/chromium_strings_uk.xtb" lang="uk" />
<file path="resources/chromium_strings_ur.xtb" lang="ur" />
<file path="resources/chromium_strings_uz.xtb" lang="uz" />
<file path="resources/chromium_strings_vi.xtb" lang="vi" />
<file path="resources/chromium_strings_zh-CN.xtb" lang="zh-CN" />
<file path="resources/chromium_strings_zh-HK.xtb" lang="zh-HK" />
<file path="resources/chromium_strings_zh-TW.xtb" lang="zh-TW" />
<file path="resources/chromium_strings_zu.xtb" lang="zu" />
</translations>
<release seq="1">
<messages fallback_to_english="true">
<!-- Settings specific strings -->
<if expr="not is_android">
<part file="settings_chromium_strings.grdp" />
</if>
<!--
Even though Google Chrome for Testing is a separate brand, there is
no separate file for it. Instead, we use the same file as Chromium, with
a few select overrides for the most prominent end-user strings.
Rationale: https://goo.gle/chrome-for-testing#bookmark=id.n1rat320av91
-->
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_PRODUCT_NAME" desc="The Chrome for Testing application name" translateable="false">
Google Chrome for Testing
</message>
<message name="IDS_SHORT_PRODUCT_NAME" desc="The Chrome for Testing application short name." translateable="false">
Chrome for Testing
</message>
</then>
<else>
<message name="IDS_PRODUCT_NAME" desc="The Chrome application name" translateable="false">
Chromium
</message>
<message name="IDS_SHORT_PRODUCT_NAME" desc="The Chrome application short name." translateable="false">
Chromium
</message>
</else>
</if>
<if expr="is_win">
<message name="IDS_SXS_SHORTCUT_NAME" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_SHORTCUT_NAME_BETA" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_SHORTCUT_NAME_DEV" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_PRODUCT_DESCRIPTION" desc="Browser description">
Chromium is a web browser that runs webpages and applications with lightning speed. It's fast, stable, and easy to use. Browse the web more safely with malware and phishing protection built into Chromium.
</message>
<message name="IDS_WELCOME_TO_CHROME" desc="Welcoming text announced via screen readers the first time Chrome is launched at the conclusion of installation.">
Welcome to Chromium; new browser window opened
</message>
</if>
<if expr="is_macosx or is_linux">
<message name="IDS_FIRST_RUN_DIALOG_WINDOW_TITLE" desc="Window title of First Run dialog on Mac and Linux, displayed in title bar">
Welcome to Chromium
</message>
</if>
<if expr="is_chromeos">
<message name="IDS_PRODUCT_OS_NAME" desc="The ChromeOS application name">
ChromiumOS
</message>
<message name="IDS_SHORT_PRODUCT_OS_NAME" desc="The ChromeOS application short name">
ChromiumOS
</message>
<message name="IDS_INSTALLED_PRODUCT_OS_NAME" desc="Installed OS name">
ChromiumOS
</message>
</if>
<message name="IDS_PRODUCT_LOGO_ENTERPRISE_ALT_TEXT" desc="Alt text for the Chromium Enterprise logo image." formatter_data="android_java">
Chromium Enterprise logo
</message>
<if expr="is_win">
<message name="IDS_SHORTCUT_NEW_WINDOW" desc="The text label of the New window shortcut context menu entry as of Windows 8">
New window
</message>
</if>
<if expr="is_macosx or is_chromeos">
<message name="IDS_TASK_MANAGER_TITLE" desc="The title of the Task Manager window">
Task Manager
</message>
</if>
<if expr="not is_macosx and not is_chromeos">
<message name="IDS_TASK_MANAGER_TITLE" desc="The title of the Task Manager window">
Task Manager - Chromium
</message>
</if>
<message name="IDS_TASK_MANAGER_SEARCH_PLACEHOLDER" desc="The placeholder text for the Search bar in the Task Manager window">
Search
</message>
<message name="IDS_TASK_MANAGER_SEARCH_ACCESSIBILITY_NAME" desc="The accessibility description for the Search bar in the Task Manager window">
Search for any process from the list.
</message>
<message name="IDS_TASK_MANAGER_CLEAR_SEARCH_BUTTON_ACCESSIBILITY_NAME" desc="The accessibility name for the clear button accompanying the task manager search bar input.">
Clear search
</message>
<message name="IDS_TASK_MANAGER_KILL_ACCESSIBILITY_NAME" desc="The accessibility description for the End Task button in the Task Manager window">
Ends the highlighted task.
</message>
<message name="IDS_TASK_MANAGER_TASK_KILL_SUCCESS_ACCESSIBILITY_MESSAGE" desc="The text announced after a process and some of its tasks are killed.">
Task(s) ended.
</message>
<message name="IDS_TASK_MANAGER_TASK_KILL_FAIL_ACCESSIBILITY_MESSAGE" desc="The text announced when all tasks in the process could not be killed.">
Failed to end task(s).
</message>
<message name="IDS_TASK_MANAGER_CATEGORY_TABS_AND_EXTENSIONS_NAME" desc="The title of the 'Tabs and Extensions' filter category.">
Tabs & extensions
</message>
<message name="IDS_TASK_MANAGER_CATEGORY_SYSTEM_NAME" desc="The title of the 'System' filter category on ChromeOS.">
System
</message>
<message name="IDS_TASK_MANAGER_CATEGORY_BROWSER_NAME" desc="The title of the 'System' filter category on Windows/Mac/Linux.">
Browser
</message>
<message name="IDS_TASK_MANAGER_CATEGORY_ALL_NAME" desc="The title of the 'All tasks' filter category on Windows/Mac/Linux/ChromeOS.">
All tasks
</message>
<message name="IDS_SESSION_CRASHED_VIEW_UMA_OPTIN" desc="Text besides the checkbox to let users optin to UMA in the restore from previous crash bubble.">
Help make Chromium better by sending crash reports and <ph name="UMA_LINK">$1<ex>usage statistics</ex></ph> to Google
</message>
<if expr="not is_chromeos">
<!-- Browser Window Title Format -->
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for titles displayed in tabs and popup windows">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Google Chrome for Testing
</message>
</then>
<else>
<message name="IDS_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for titles displayed in tabs and popup windows">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Chromium
</message>
</else>
</if>
</if>
<if expr="is_chromeos">
<!-- Browser Window Title Format -->
<message name="IDS_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for titles displayed in tabbed browser windows">
Chromium - <ph name="PAGE_TITLE">$1<ex>Google</ex></ph>
</message>
</if>
<if expr="not is_chromeos and not is_macosx">
<!-- Captive Portal Browser Window Title Format -->
<message name="IDS_CAPTIVE_PORTAL_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for titles displayed in captive portal popup windows">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Network Sign-in - Chromium
</message>
</if>
<if expr="is_chromeos">
<!-- Captive Portal Browser Window Title Format -->
<message name="IDS_CAPTIVE_PORTAL_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for titles displayed in captive portal popup windows">
Chromium - Network Sign-in - <ph name="PAGE_TITLE">$1<ex>Google</ex></ph>
</message>
</if>
<if expr="is_macosx">
<!-- Captive Portal Browser Window Title Format -->
<message name="IDS_CAPTIVE_PORTAL_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for titles displayed in captive portal popup windows">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Network Sign-in
</message>
</if>
<!-- Accessible window title format - includes the channel, and the same
on all browser platforms rather than different on ChromeOS. -->
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_ACCESSIBLE_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for the accessible name of a tabbed browser window">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Google Chrome for Testing
</message>
</then>
<else>
<message name="IDS_ACCESSIBLE_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for the accessible name of a tabbed browser window">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Chromium
</message>
</else>
</if>
<message name="IDS_ACCESSIBLE_BETA_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for the accessible name of a tabbed browser window for the beta channel version of the browser">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Chromium Beta
</message>
<message name="IDS_ACCESSIBLE_DEV_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for the accessible name of a tabbed browser window for the developer (dev) channel version of the browser">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Chromium Dev
</message>
<message name="IDS_ACCESSIBLE_CANARY_BROWSER_WINDOW_TITLE_FORMAT" desc="The format for the accessible name of a tabbed browser window for the canary (nightly build) channel version of the browser">
<ph name="PAGE_TITLE">$1<ex>Google</ex></ph> - Chromium Canary
</message>
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_ABOUT_VERSION_COMPANY_NAME" desc="Company name on the about pages">
Google LLC
</message>
<message name="IDS_ABOUT_VERSION_COPYRIGHT" desc="Copyright information on the about pages">
Copyright <ph name="YEAR">{0,date,y}<ex>2016</ex></ph> Google LLC. All rights reserved.
</message>
</then>
<else>
<message name="IDS_ABOUT_VERSION_COMPANY_NAME" desc="Company name on the about pages">
The Chromium Authors
</message>
<message name="IDS_ABOUT_VERSION_COPYRIGHT" desc="Copyright information on the about pages">
Copyright <ph name="YEAR">{0,date,y}<ex>2016</ex></ph> The Chromium Authors. All rights reserved.
</message>
</else>
</if>
<if expr="is_chromeos">
<message name="IDS_ABOUT_CROS_VERSION_LICENSE" desc="Additional text displayed beneath the Chromium open source URLs for ChromeOS.">
ChromiumOS is made possible by additional <ph name="BEGIN_LINK_CROS_OSS"><a target="_blank" href="$1"></ph>open source software<ph name="END_LINK_CROS_OSS"></a></ph>.
</message>
<message name="IDS_ABOUT_CROS_WITH_LINUX_VERSION_LICENSE" desc="Additional text displayed beneath the Chromium open source URLs for ChromeOS when Crostini is installed.">
ChromiumOS is made possible by additional <ph name="BEGIN_LINK_CROS_OSS"><a target="_blank" href="$1"></ph>open source software<ph name="END_LINK_CROS_OSS"></a></ph>, as is <ph name="BEGIN_LINK_LINUX_OSS"><a target="_blank" href="$2"></ph>Linux development environment<ph name="END_LINK_LINUX_OSS"></a></ph>.
</message>
<message name="IDS_ABOUT_SAFETY_INFORMATION" desc="The safety label in the About box." translateable="false">
Not used in Chromium. Placeholder to keep resource maps in sync.
</message>
</if>
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_ABOUT_TERMS_OF_SERVICE" desc="The terms of service label in the About box.">
Terms of Service
</message>
</then>
<else>
<message name="IDS_ABOUT_TERMS_OF_SERVICE" desc="The terms of service label in the About box." translateable="false">
Not used in Chromium. Placeholder to keep resource maps in sync.
</message>
</else>
</if>
<if expr="is_macosx">
<message name="IDS_MACOS_OBSOLETE" desc="A message displayed on an at-launch infobar and About (Help) page warning the user that the OS version they are using will soon be or is already unsupported.">
To get future Chromium updates, you'll need macOS 12 or later. This computer is using macOS 11.
</message>
</if>
<if expr="is_win">
<message name="IDS_WIN_XP_VISTA_OBSOLETE" desc="A message displayed on an at-launch infobar and about:help warning the user that the computer they are using is no longer supported.">
Chromium may not function correctly because it is no longer supported on Windows XP or Windows Vista
</message>
</if>
<if expr="is_win">
<message name="IDS_WIN_7_OBSOLETE" desc="A message displayed on an at-launch infobar and about:help warning the user that the computer they are using will soon be or is already unsupported.">
To get future Chromium updates, you'll need Windows 10 or later. This computer is using Windows 7.
</message>
</if>
<if expr="is_win">
<message name="IDS_WIN_8_OBSOLETE" desc="A message displayed on an at-launch infobar and about:help warning the user that the computer they are using will soon be or is already unsupported.">
To get future Chromium updates, you'll need Windows 10 or later. This computer is using Windows 8.
</message>
</if>
<if expr="is_win">
<message name="IDS_WIN_8_1_OBSOLETE" desc="A message displayed on an at-launch infobar and about:help warning the user that the computer they are using will soon be or is already unsupported.">
To get future Chromium updates, you'll need Windows 10 or later. This computer is using Windows 8.1.
</message>
</if>
<if expr="is_linux">
<message name="IDS_LINUX_OBSOLETE" desc="A message displayed on an at-launch infobar and about:help warning the user that the OS version they are using is no longer supported.">
Chromium may not function correctly because it is no longer supported on this Linux distribution
</message>
</if>
<message name="IDS_ACCNAME_APP" desc="The accessible name for the app menu." translateable="false">
Chromium
</message>
<!-- Hung Browser Detector -->
<if expr="is_win">
<message name="IDS_BROWSER_HUNGBROWSER_MESSAGE" desc="Content of the dialog box shown when the browser is hung">
Chromium is unresponsive. Relaunch now?
</message>
</if>
<!-- Sharing messages -->
<message name="IDS_BROWSER_SHARING_CLICK_TO_CALL_DIALOG_HELP_TEXT_NO_DEVICES" desc="The label to be shown as a help text of the dialog when user click on a phone number, if there are no phones to choose from.">
To send a number from here to your Android phone, sign in to Chromium on both devices.
</message>
<message name="IDS_BROWSER_SHARING_CLICK_TO_CALL_DIALOG_HELP_TEXT_NO_DEVICES_ORIGIN" desc="The label to be shown as a help text of the dialog when user click on a phone number, if there are no phones to choose from.">
To send a number from <ph name="ORIGIN">$1<ex>www.google.com</ex></ph> to your Android phone, sign in to Chromium on both devices.
</message>
<message name="IDS_BROWSER_SHARING_ERROR_DIALOG_TEXT_DEVICE_NOT_FOUND" desc="The text to be shown on the dialog when an error occurred because the device is not synced.">
Make sure you are signed in to Chromium on your <ph name="TARGET_DEVICE_NAME">$1<ex>Pixel XL</ex></ph> and then try sending again.
</message>
<!-- Uninstall messages -->
<if expr="is_win">
<message name="IDS_UNINSTALL_CLOSE_APP" desc="Message to user when uninstall detects other app instance running">
Please close all Chromium windows and try again.
</message>
<message name="IDS_UNINSTALL_VERIFY" desc="Message to confirm user wants to uninstall">
Are you sure you want to uninstall Chromium?
</message>
<message name="IDS_UNINSTALL_CHROME" desc="The title of the Chromium uninstall dialog.">
Uninstall Chromium
</message>
</if>
<message name="IDS_FR_CUSTOMIZE_DEFAULT_BROWSER" desc="Default browser checkbox label">
Make Chromium the default browser
</message>
<if expr="use_titlecase">
<message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="In Title Case: The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed">
Let Chromium Run in the Background
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed">
Let Chromium run in the background
</message>
</if>
<if expr="use_titlecase">
<message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND_SETTING" desc="In Title Case: The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed">
Disable Chromium Running in Background for Apps
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND_SETTING" desc="The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed">
Disable Chromium running in background for apps
</message>
</if>
<message name="IDS_CANT_WRITE_USER_DIRECTORY_SUMMARY" desc="Summary of problem displayed in dialog when we can't create a directory for this user.">
Chromium cannot read and write to its data directory:
<ph name="USER_DATA_DIRECTORY">$1<ex>C:\Documents and Settings\devint\Local Settings\Application Data\Google\Chrome</ex></ph>
</message>
<if expr="is_chromeos">
<message name="IDS_EULA_CHECKBOX_ENABLE_LOGGING" desc="The label of the checkbox to enable/disable crash and user metrics logging">
Optional: Help improve ChromiumOS features and performance by automatically sending diagnostic and usage data to Google.
</message>
</if>
<message name="IDS_PROFILE_TOO_NEW_ERROR" desc="Error displayed on startup when the profile is from a newer version of the product and can not be read">
Your profile can not be used because it is from a newer version of Chromium.
Some features may be unavailable. Please specify a different profile directory or use a newer version of Chromium.
</message>
<message name="IDS_PREFERENCES_UNREADABLE_ERROR" desc="Error displayed on startup when user preferences file can not be read">
Your preferences can not be read.
Some features may be unavailable and changes to preferences won't be saved.
</message>
<message name="IDS_PREFERENCES_CORRUPT_ERROR" desc="Error displayed on startup when user preferences file can not be read">
Your preferences file is corrupt or invalid.
Chromium is unable to recover your settings.
</message>
<if expr="is_linux">
<message name="IDS_DESKTOP_SHORTCUT_COMMENT" desc="Description of the desktop shortcut file which will open a Chrome tab at a given url.">
Open <ph name="URL">$1<ex>https://www.example-url.com/</ex></ph> in a new tab in Chromium.
</message>
</if>
<!-- Password manager onboarding strings -->
<message name="IDS_PASSWORD_MANAGER_ONBOARDING_DETAILS_C" desc="The explanation text that is shown below the title in the password manager onboarding dialog.">
Chromium lets you know if your passwords are ever compromised
</message>
<message name="IDS_PASSWORD_MANAGER_TITLE_BRAND" desc="The product name used in the title of the password bubble." translateable="false">
Chromium
</message>
<message name="IDS_PASSWORD_BUBBLES_PASSWORD_MANAGER_LINK_TEXT_SAVING_ON_DEVICE" desc="The text of the Google Password Manager links displayed on Password Manager bubbles footer when the credentials are stored only locally.">
Password Manager
</message>
<message name="IDS_PASSWORD_MANAGER_SAVE_PASSWORD_SIGNED_OUT_MESSAGE_DESCRIPTION" desc="The description of the Password Manager's save password message when the user is signed out.">
To Password Manager on this device
</message>
<message name="IDS_PASSWORD_MANAGER_UPDATE_PASSWORD_SIGNED_OUT_MESSAGE_DESCRIPTION" desc="The description of the Password Manager's update password message when the user is signed out.">
In Password Manager on this device
</message>
<if expr="is_macosx">
<message name="IDS_PASSWORDS_AUTHENTICATION_PROMPT_PREFIX" desc="Text shown in the beginning of the OS-level user authentication prompt before performing a seneitive operation such as show passwords in plain text.">
Chromium is trying to <ph name="AUTHENTICATION_PURPOSE">$1<ex>show passwords</ex></ph>
</message>
</if>
<if expr="is_win">
<message name="IDS_PASSWORDS_PAGE_AUTHENTICATION_PROMPT" desc="Text for the dialog box that prompts the user for their OS account password before revealing plaintext passwords on the password page.">
Chromium is trying to show passwords. Type your Windows password to allow this.
</message>
<message name="IDS_PASSWORDS_PAGE_COPY_AUTHENTICATION_PROMPT" desc="Text for the dialog box that prompts the user for their OS account password before copying plaintext passwords into the clipboard.">
Chromium is trying to copy passwords. Type your Windows password to allow this.
</message>
<message name="IDS_PASSWORDS_PAGE_EDIT_AUTHENTICATION_PROMPT" desc="Text for the dialog box that prompts the user for their OS account password before editing plaintext passwords on the password page.">
Chromium is trying to edit passwords. Type your Windows password to allow this.
</message>
<message name="IDS_PASSWORDS_PAGE_EXPORT_AUTHENTICATION_PROMPT" desc="Text for the dialog box that prompts the user for their OS account password before exporting passwords to a file.">
Chromium wants to export your passwords. Type your Windows password to allow this.
</message>
<message name="IDS_PASSWORDS_PAGE_DELETE_ALL_DATA_AUTHENTICATION_PROMPT" desc="Text for the dialog box that prompts the user for their OS account password before deleting all data from Google Password Manager.">
Chromium wants to delete your Password Manager data. Type your Windows password to allow this.
</message>
<message name="IDS_PASSWORDS_PAGE_IMPORT_AUTHENTICATION_PROMPT" desc="Text for the dialog box that prompts the user for their OS account password before overriding passwords during Import.">
Chromium is trying to replace existing passwords. Type your Windows password to allow this.
</message>
<message name="IDS_INSTALL_HIGHER_VERSION" desc="Error displayed when higher version already exists.">
This computer already has a more recent version of Chromium. If the software is not working, please uninstall Chromium and try again.
</message>
<message name="IDS_INSTALL_FAILED" desc="Error displayed if installation fails due to some unknown error.">
Installation failed due to unspecified error. If Chromium is currently running, please close it and try again.
</message>
<message name="IDS_SAME_VERSION_REPAIR_FAILED" desc="Error displayed if installation fails due to Chrome running.">
Can not install the same Chromium version that is currently running. Please close Chromium and try again.
</message>
<message name="IDS_SETUP_PATCH_FAILED" desc="Error message when setup.exe fails to patch itself.">
Installation failed due to unspecified error. Please download Chromium again.
</message>
<message name="IDS_INSTALL_OS_NOT_SUPPORTED" desc="Error displayed if OS is not supported">
Chromium requires Windows 10 or higher.
</message>
<message name="IDS_INSTALL_OS_ERROR" desc="Error displayed when any Windows API call fails and we do not have more specific information.">
An operating system error occurred during installation. Please download Chromium again.
</message>
<message name="IDS_INSTALL_SINGLETON_ACQUISITION_FAILED" desc="Error displayed when the installer cannot run because another installer is already running.">
Another operation on Chromium is in progress. Please try again later.
</message>
<message name="IDS_INSTALL_TEMP_DIR_FAILED" desc="Error displayed when we fail to create temporary directory during installation.">
The installer couldn't create a temporary directory. Please check for free disk space and permission to install software.
</message>
<message name="IDS_INSTALL_UNCOMPRESSION_FAILED" desc="Error when when we can not uncompress installation archive.">
The installer failed to uncompress archive. Please download Chromium again.
</message>
<message name="IDS_INSTALL_INVALID_ARCHIVE" desc="Error displayed when we can not open the installation archive.">
The installer archive is corrupted or invalid. Please download Chromium again.
</message>
<message name="IDS_INSTALL_INSUFFICIENT_RIGHTS" desc="Error displayed when a non admin user tries to attempt system level install/uninstall.">
You do not have appropriate rights for system-level install. Try running the installer again as Administrator.
</message>
<message name="IDS_INSTALL_EXISTING_VERSION_LAUNCHED" desc="A message shown to users who try to install Chrome in their user profile directory when their computer already has Chrome installed for all users. In this case, the installer silently launches the existing version of Chrome for all users rather than installing a second version of Chrome.">
Chromium is already installed for all users on your computer.
</message>
<message name="IDS_ELEVATION_SERVICE_DESCRIPTION"
desc="The description of the Windows elevation service. Displayed in the Windows Services management console.">
Provides elevated privileges for <ph name="BROWSER_NAME">$1<ex>Chromium</ex></ph>.
</message>
<message name="IDS_TRACING_SERVICE_DESCRIPTION"
desc="The description of the Windows system tracing service. Displayed in the Windows Services management console.">
Provides system tracing services for <ph name="BROWSER_NAME">$1<ex>Chromium</ex></ph>. If this service is disabled, performance traces created by the browser will not include system-wide events such as context switch and ready thread events.
</message>
</if>
<!-- Options Dialog -->
<if expr="is_win">
<message name="IDS_SHORTCUT_TOOLTIP" desc="Text for the hover-on tooltip for the Chromium shortcuts.">
Access the Internet
</message>
<message name="IDS_UNINSTALL_DELETE_PROFILE" desc="Text to show user to ask whether to delete all the profile data also during uninstallation.">
Also delete your browsing data?
</message>
<message name="IDS_UNINSTALL_SET_DEFAULT_BROWSER" desc="Text to ask whether to set another browser as default when Chromium is uninstalled.">
Change default browser to:
</message>
<message name="IDS_UNINSTALL_BUTTON_TEXT" desc="Label for uninstall button on Uninstall confirmation dialog.">
Uninstall
</message>
</if>
<message name="IDS_DEFAULT_BROWSER_INFOBAR_TEXT" desc="Text to show in an infobar when Chromium is not the current default browser.">
Chromium isn't your default browser
</message>
<message name="IDS_DEFAULT_BROWSER_PIN_INFOBAR_TEXT" desc="Text to show in an infobar when Chromium is not the current default browser and can be pinned to the taskbar.">
Set Chromium as your default browser and pin it to your taskbar
</message>
<if expr="is_win or is_macosx">
<message name="IDS_PDF_INFOBAR_TEXT" desc="Text to show in an infobar when Chromium is not the default PDF viewer.">
Set Chromium as your default PDF viewer
</message>
</if>
<!-- Download Bubble Items -->
<message name="IDS_DOWNLOAD_BUBBLE_SUBPAGE_SUMMARY_UNKNOWN_SOURCE"
desc="Summary of dangerous warning for a file (like an extension) from an unknown source.">
Extensions, apps, and themes from unknown sources can harm your device. Chromium recommends only installing them from the <ph name="IDS_EXTENSION_WEB_STORE_TITLE">$1<ex>Chrome Web Store</ex></ph>
</message>
<message name="IDS_DOWNLOAD_BUBBLE_SUBPAGE_SUMMARY_WARNING_BLOCKED_LEARN_MORE_LINK"
desc="Text for the link to the help page about why Chromium blocks some downloaded files.">
Learn why Chromium blocks some downloads
</message>
<message name="IDS_DOWNLOAD_BUBBLE_SUBPAGE_SUMMARY_DEEP_SCANNING_PROMPT_LOCAL_DECRYPTION"
desc="Subpage summary of warning for a file where we recommend providing the password for on-device decryption">
This file may be dangerous<ph name="LINE_BREAK">$1</ph>Chromium can check this download for you if you provide the password. Info about the file gets sent to Google Safe Browsing, but the file content and password stay on your device.
</message>
<!-- Download Shelf Items -->
<message name="IDS_DOWNLOAD_STATUS_CRX_INSTALL_RUNNING"
desc="Message shown when a CRX has been downloaded and is being unpacked.">
Adding to Chromium...
</message>
<message name="IDS_PROMPT_DOWNLOAD_CHANGES_SETTINGS"
desc="Message shown on the download shelf when the download is known to change settings in the browser in a malicious way.">
<ph name="FILE_NAME">$1<ex>bla.exe</ex></ph> may be dangerous, so Chromium has blocked it.
</message>
<message name="IDS_PROMPT_MALICIOUS_DOWNLOAD_URL"
desc="Message shown to the user to validate the download when the download url is classified to lead to malware by the safebrowsing database.">
This file is dangerous, so Chromium has blocked it.
</message>
<message name="IDS_PROMPT_MALICIOUS_DOWNLOAD_CONTENT"
desc="Message shown to the user to validate the download when the download content is classified to lead to malware by safebrowsing.">
<ph name="FILE_NAME">$1<ex>malware.exe</ex></ph> is dangerous, so Chromium has blocked it.
</message>
<message name="IDS_BLOCK_REASON_PROMPT_FOR_SCANNING"
desc="Message shown to the user on chrome://downloads page to explain that this download is recommended to be scanned.">
Chromium recommends scanning this file because it may be dangerous.
</message>
<!-- chrome://downloads page dangerous file description strings -->
<message name="IDS_BLOCK_DOWNLOAD_REASON_DANGEROUS_FILETYPE"
desc="On the chrome://downloads page, the description shown for a blocked file with a dangerous filetype.">
Chromium blocked this download because the file type isn't commonly downloaded and it may be dangerous
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_DANGEROUS"
desc="On the chrome://downloads page, the description shown for a blocked file that is dangerous.">
Chromium blocked this download because the file is dangerous
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_DANGEROUS_COOKIE_THEFT"
desc="On the chrome://downloads page, the description shown for a blocked file that is dangerous because of cookie theft.">
Chromium blocked this download because the file can harm your personal and social network accounts
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_UNCOMMON"
desc="On the chrome://downloads page, the description shown for a blocked file that is uncommon.">
Chromium blocked this download because the file isn't commonly downloaded and it may be dangerous
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_UNCOMMON_SUSPICIOUS_ARCHIVE"
desc="On the chrome://downloads page, the description shown for a blocked file that is suspicious archive.">
Chromium blocked this download because the archive file includes other files that may hide malware
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_POTENTIALLY_UNWANTED"
desc="On the chrome://downloads page, the description shown for a blocked file that is potentially unwanted.">
Chromium blocked this download because the file is deceptive and may make unexpected changes to your device
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_INSECURE"
desc="On the chrome://downloads page, the description shown for a blocked file that is insecure.">
Chromium blocked this download because the site isn't using a secure connection and the file may have been tampered with
</message>
<message name="IDS_BLOCK_DOWNLOAD_REASON_UNVERIFIED_NO_SAFE_BROWSING"
desc="On the chrome://downloads page, the description shown for a blocked file that could not be verified because Safe Browsing is off.">
Chromium blocked this download because you turned Safe Browsing off and the file can't be verified
</message>
<!-- chrome://downloads page bypass dangerous download warning prompt-->
<message name="IDS_DOWNLOAD_WARNING_BYPASS_PROMPT_LEARN_MORE_LINK"
desc="On the downloads page, the label for the link to the help center in the prompt to bypass a dangerous download warning.">
Learn why Chromium blocks some files
</message>
<message name="IDS_DOWNLOAD_WARNING_BYPASS_PROMPT_LEARN_MORE_LINK_ACCESSIBLE"
desc="On the downloads page, accessible text for the link to the help center in the prompt to bypass a dangerous download warning.">
Learn why Chromium blocks some files, opens in new tab
</message>
<!-- Abandon in-progress downloads confirmation dialog -->
<if expr="not is_macosx">
<message name="IDS_ABANDON_DOWNLOAD_DIALOG_BROWSER_MESSAGE" desc="Message on a dialog shown when the user closes the browser while one or more downloads are in progress. This string is shown on Windows, ChromeOS, and Linux, which all use 'Exit' to refer to closing a browser.">
Exit Chromium anyway?
</message>
</if>
<if expr="is_macosx">
<message name="IDS_ABANDON_DOWNLOAD_DIALOG_BROWSER_MESSAGE" desc="Mac OSX Only: Message on a dialog shown when the user closes the browser while one or more downloads are in progress. This string is shown on Mac OSX only, which uses 'Quit' to refer to closing a browser.">
Quit Chromium anyway?
</message>
</if>
<!-- Quit all apps confirmation dialog -->
<if expr="is_macosx">
<message name="IDS_QUIT_WITH_APPS_TITLE" desc="Title for a notification explaining that Chrome is running in the background.">
Chromium is in background mode.
</message>
</if>
<!-- Google API keys info bar -->
<message name="IDS_MISSING_GOOGLE_API_KEYS" desc="Message shown when Google API keys are missing. This message is followed by a 'Learn more' link.">
Google API keys are missing. Some functionality of Chromium will be disabled.
</message>
<if expr="enable_extensions_core">
<!-- Extension installed bubble -->
<message name="IDS_EXTENSION_INSTALLED_HEADING" desc="Title of the extension-installed bubble. Instructs that the extension was installed.">
<ph name="EXTENSION_NAME">$1<ex>Gmail Checker</ex></ph> has been added to Chromium
</message>
<!-- Extension uninstall prompt -->
<message name="IDS_EXTENSION_UNINSTALL_PROMPT_REMOVE_DATA_CHECKBOX" desc="Checkbox text to ask the user whether they want to remove associated data at uninstall time. Only used when uninstalling an app associated with a particular website.">
Also delete data from Chromium (<ph name="URL">$1<ex>www.google.com</ex></ph>)
</message>
<!-- Extension alerts. -->
<message name="IDS_EXTENSION_ALERT_ITEM_BLOCKLISTED_MALWARE" desc="A statement that an extension has been newly blocklisted for malware.">
Chromium found that "<ph name="EXTENSION_NAME">$1<ex>Gmail Checker</ex></ph>" contains malware
</message>
<message name="IDS_EXTENSIONS_ALERT_ITEM_BLOCKLISTED_MALWARE_TITLE" desc="A statement that multiple extension/apps have been newly blocklisted for malware.">
Chromium found that these items contain malware:
</message>
<!-- Manifest V2 Deprecation dialog -->
<message name="IDS_EXTENSIONS_MANIFEST_V2_DEPRECATION_KEEP_DIALOG_DESCRIPTION" desc="The description of the dialog asking the user if they want to keep the extension installed, which is affected by the Manifest V2 deprecation">
This extension is no longer supported. Chromium recommends that you remove it instead.
</message>
<message name="IDS_EXTENSIONS_MANIFEST_V2_DEPRECATION_DISABLED_DIALOG_DESCRIPTION" desc="The description of the dialog that appears when extensions were disabled due to the Manifest V2 deprecation">
{NUM_EXTENSIONS, plural,
=1 {This extension is no longer supported. Chromium recommends that you remove it.}
other {These extensions are no longer supported. Chromium recommends that you remove them.}}
</message>
<message name="IDS_EXTENSIONS_MV2_DEPRECATION_MESSAGE_DISABLED_SUBTITLE" desc="Subtitle text displayed in the manifest v2 deprecation message for a specific extension during the disabled stage.">
Chromium recommends that you remove it. <ph name="BEGIN_LINK"><a href="$1" aria-description="$2" target="_blank"></ph>Learn more about supported extensions<ph name="END_LINK"></a></ph>
</message>
<message name="IDS_EXTENSIONS_MV2_DEPRECATION_PANEL_DISABLED_SUBTITLE" desc="Subtitle text displayed in the manifest v2 deprecation panel for the disabled stage.">
{NUM_EXTENSIONS, plural,
=1 {Chromium recommends that you remove it. <ph name="BEGIN_LINK"><a href="$1" aria-description="$2" target="_blank"></ph>Learn more about supported extensions<ph name="END_LINK"></a></ph>}
other {Chromium recommends that you remove them. <ph name="BEGIN_LINK"><a href="$1" aria-description="$2" target="_blank"></ph>Learn more about supported extensions<ph name="END_LINK"></a></ph>}
}
</message>
<message name="IDS_EXTENSIONS_MV2_DEPRECATION_PANEL_REMOVE_BUTTON_ACC_LABEL" desc="The (accessible) label for the button to remove an extension.">
Remove <ph name="EXTENSION_NAME">$1<ex>Google Translate</ex></ph> from Chromium
</message>
</if>
<!-- Extension Safety Check Detail Page strings -->
<message name="IDS_SAFETY_CHECK_EXTENSIONS_MALWARE" desc="The text explaining the reason for disabling extension. The extension in question contains malware.">
This extension contains malware and is unsafe. Remove it from Chromium so it can no longer see and change your data on sites you visit, including your personal info.
</message>
<message name="IDS_SAFETY_CHECK_EXTENSIONS_POLICY_VIOLATION" desc="The text explaining the reason for disabling extension. The extension in question violates Chrome Web Store policy.">
This extension violates the Chrome Web Store policy, and might be unsafe. Remove it from Chromium so it can no longer see and change your data on sites you visit, including your personal info.
</message>
<message name="IDS_SAFETY_CHECK_EXTENSIONS_UNPUBLISHED" desc="The text explaining the reason for disabling extension. The extension in question was unpublished by the developer.">
This extension was unpublished by its developer, and might be unsafe. Remove it from Chromium so it can no longer see and change your data on sites you visit, including your personal info.
</message>
<message name="IDS_EXTENSIONS_SAFETY_CHECK_PRIMARY_LABEL" desc="Alerts the user that the extension should be reviewed.">
Chromium recommends you review this extension
</message>
<message name="IDS_EXTENSIONS_SAFETY_CHECK_OFFSTORE" desc="Alerts the user that the extension is not from the Chrome web store.">
Chromium can't verify where this extension comes from, and it might be unsafe. Remove it from Chromium so it can no longer see and change your data on sites you visit, including personal info.
</message>
<message name="IDS_EXTENSIONS_SAFETY_CHECK_OFFSTORE_ON" desc="Alerts the user that the extension is not from the Chrome web store.">
On • Chromium can't verify where this extension comes from
</message>
<message name="IDS_EXTENSIONS_SAFETY_CHECK_OFFSTORE_OFF" desc="Alerts the user that the extension is not from the Chrome web store.">
Off • Chromium can't verify where this extension comes from
</message>
<message name="IDS_EXTENSIONS_SAFETY_CHECK_NO_PRIVACY_PRACTICES" desc="Alerts the user that the extension has not disclosed its privacy practices.">
This extension hasn't published privacy practices, such as how it collects and uses data. Chromium recommends that you remove it.
</message>
<!-- chrome://extensions page -->
<message name="IDS_EXTENSIONS_SC_DESCRIPTION" desc="Detailed message displayed in the Safety Check description section.">
{NUM_EXTENSIONS, plural,
=1 {Chromium recommends that you remove it}
other {Chromium recommends that you remove them}}
</message>
<message name="IDS_EXTENSIONS_ITEM_SHOW_ACCESS_REQUESTS_IN_TOOLBAR" desc="The label on the toggle to allow the extension to show site access requests in the toolbar.">
Allow extension to show access requests in the Chromium toolbar
</message>
<message name="IDS_EXTENSIONS_INCOGNITO_WARNING" desc="Warns the user that Chromium cannot prevent extensions from recording history in Incognito mode. Displayed in extensions management UI after an extension is selected to be run in Incognito mode.">
Warning: Chromium cannot prevent extensions from recording your browsing history. To disable this extension in Incognito mode, unselect this option.
</message>
<message name="IDS_EXTENSIONS_UNINSTALL" desc="The label for a control that triggers an extension uninstall.">
Remove from Chromium
</message>
<message name="IDS_EXTENSIONS_SHORTCUT_SCOPE_IN_CHROME" desc="The label to indicate that a shortcut will be triggerable only from within the Chrome application.">
In Chromium
</message>
<message name="IDS_PENDING_CHANGE_WARNING" desc="The message shown to users when an extension setting change will ba applied after Chrome restarts.">
Changes to this setting will be applied once Chromium restarts.
</message>
<if expr="enable_extensions">
<message name="IDS_EXTENSIONS_MULTIPLE_UNSUPPORTED_DISABLED_BODY" desc="Body of the dialog shown when multiple unsupported extensions have been disabled.">
To make Chromium safer, we disabled some extensions that aren't listed in the <ph name="IDS_EXTENSION_WEB_STORE_TITLE">$1<ex>Chrome Web Store</ex></ph> and may have been added without your knowledge.
</message>
<message name="IDS_EXTENSIONS_SINGLE_UNSUPPORTED_DISABLED_BODY" desc="Body of the dialog shown when a single unsupported extension has been disabled.">
To make Chromium safer, we disabled the following extension that isn't listed in the <ph name="IDS_EXTENSION_WEB_STORE_TITLE">$1<ex>Chrome Web Store</ex></ph> and may have been added without your knowledge.
</message>
</if>
<!-- Main Chrome menu -->
<message name="IDS_APPMENU_TOOLTIP" desc="The tooltip to show for the browser menu">
Customize and control Chromium
</message>
<message name="IDS_APPMENU_TOOLTIP_UPDATE_AVAILABLE" desc="The tooltip to show for the browser menu when an update is available">
Customize and control Chromium. Update is available.
</message>
<message name="IDS_APPMENU_TOOLTIP_ALERT" desc="The tooltip to show for the browser menu when a non-update alert is displayed">
Customize and control Chromium. Something needs your attention - click for details.
</message>
<message name="IDS_OPEN_IN_CHROME" desc="The text label of the Open in Chrome menu item for the Hosted App app menu">
&Open in Chromium
</message>
<if expr="use_titlecase and not is_chromeos">
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_ABOUT" desc="In Title Case: The text label of the About Chrome for Testing menu item">
About &Google Chrome for Testing
</message>
</then>
<else>
<message name="IDS_ABOUT" desc="In Title Case: The text label of the About Chrome menu item">
About &Chromium
</message>
</else>
</if>
<message name="IDS_RELAUNCH_TO_UPDATE" desc="In Title Case: The text label of the relaunch to update Chrome menu item">
Relaunch to Update &Chromium
</message>
</if>
<if expr="not use_titlecase and not is_chromeos">
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_ABOUT" desc="The text label of the About Chrome for Testing menu item">
About &Google Chrome for Testing
</message>
</then>
<else>
<message name="IDS_ABOUT" desc="The text label of the About Chrome menu item">
About &Chromium
</message>
</else>
</if>
<message name="IDS_RELAUNCH_TO_UPDATE" desc="The text label of the relaunch to update Chrome menu item">
Relaunch to update &Chromium
</message>
</if>
<if expr="is_chromeos">
<message name="IDS_ABOUT" desc="The text label of the About Chrome menu item">
About &Chromium
</message>
<message name="IDS_RELAUNCH_TO_UPDATE" desc="The text label of the relaunch to update ChromeOS menu item">
Relaunch to update &ChromiumOS
</message>
</if>
<if expr="is_macosx">
<message name="IDS_APP_MENU_PRODUCT_NAME" desc="The application's short name, used for the Mac's application menu, activity monitor, etc. This should be less than 16 characters. Example: Chrome, not Google Chrome." translateable="false">
Chromium
</message>
<message name="IDS_HELPER_NAME" desc="The helper application's name. Should contain the Chrome application name (IDS_PRODUCT_NAME). Example: Google Chrome Helper.">
Chromium Helper
</message>
<message name="IDS_SHORT_HELPER_NAME" desc="The helper application's short name, used for the Mac's application menu, activity monitor, etc. Example: Chrome Helper, not Google Chrome Helper.">
Chromium Helper
</message>
</if>
<message name="IDS_VIEW_PASSWORDS" desc="Item in the app menu which shows Password Manager page">
P&assword Manager
</message>
<!-- Chrome sign-in page -->
<message name="IDS_CHROME_SIGNIN_TITLE" desc="Title on the about:chrome-signin page" translateable="false">
Chromium
</message>
<!-- DICE sign-in promo strings -->
<message name="IDS_PROFILES_DICE_SYNC_PROMO" desc="Text describing the benefits of turning on Sync.">
Sync and personalize Chromium across your devices
</message>
<!-- One click sign-in infobar -->
<if expr="not is_chromeos">
<message name="IDS_SYNC_WRONG_EMAIL" desc="Message shown when sync setup failed due to the user entering the wrong email address for sign-in.">
You were signed in to Chromium as <ph name="USER_EMAIL_ADDRESS">$1<ex>foo@gmail.com</ex></ph>. Please use the same account to sign in again.
</message>
<message name="IDS_SYNC_USED_PROFILE_ERROR" desc="An error message shown when user tries to sign in to a profile that is used by other user name before.">
Someone previously signed in to Chromium on this computer as <ph name="ACCOUNT_EMAIL_LAST">$1<ex>user@example.com</ex></ph>. Please create a new Chromium user to keep your information separate.
</message>
</if>
<!-- Enterprise sign-in dialog -->
<message name="IDS_ENTERPRISE_VALUE_PROPOSITION_PROFILE_REQUIRED_BY_ORG_TITLE" desc="Title of the screen in the profile creation flow where the user is asked whether they want to confirm signing in to Chromium with their enterprise account when it is mandatory to sign in to Chromium with the enterprise account.">
Your organization requires you to sign into Chromium
</message>
<if expr="toolkit_views">
<message name="IDS_ENTERPRISE_SIGNIN_TITLE" desc="The title of the dialog to confirm linking the browser profile with the signed-in enterprise account">
Link your Chromium data to this account?
</message>
<message name="IDS_ENTERPRISE_SIGNIN_EXPLANATION_WITHOUT_PROFILE_CREATION" desc="The warning message displayed to an enterprise user about to link their profile to their Google account. This message is followed by a 'Learn more' link.">
You are signing in with a managed account and giving its administrator control over your Chromium profile. Your Chromium data, such as your apps, bookmarks, history, passwords, and other settings will become permanently tied to <ph name="USER_NAME">$1<ex>pat@example.com</ex></ph>. You will be able to delete this data via the Google Accounts Dashboard, but you will not be able to associate this data with another account. <ph name="LEARN_MORE">$2<ex>Learn more</ex></ph>
</message>
<message name="IDS_ENTERPRISE_SIGNIN_EXPLANATION_WITH_PROFILE_CREATION" desc="The warning message displayed to an enterprise user about to link their profile to their Google account. Additionally notifies the user that they can create a new profile instead. This message is followed by a 'Learn more' link.">
You are signing in with a managed account and giving its administrator control over your Chromium profile. Your Chromium data, such as your apps, bookmarks, history, passwords, and other settings will become permanently tied to <ph name="USER_NAME">$1<ex>pat@example.com</ex></ph>. You will be able to delete this data via the Google Accounts Dashboard, but you will not be able to associate this data with another account. You can optionally create a new profile to keep your existing Chromium data separate. <ph name="LEARN_MORE">$2<ex>Learn more</ex></ph>
</message>
<message name="IDS_ENTERPRISE_VALUE_PROPOSITION_PROFILE_REQUIRED_BY_ORG_KNOWN_DOMAIN_TITLE" desc="Title of the screen in the profile creation flow where the user is asked whether they want to confirm signing in to Chromium with their enterprise account when it is mandatory to sign in to Chromium with the enterprise account.">
Your organization, <ph name="MANAGER">$1<ex>manager.com</ex></ph>, requires you to sign into Chromium
</message>
<message name="IDS_ENTERPRISE_VALUE_PROPOSITION_PROFILE_SUGGESTED_TITLE" desc="Title of the screen in the profile creation flow where the user is asked whether they want to confirm signing in to Chromium with their enterprise account.">
Sign in to Chromium?
</message>
<!-- New one-click sign-in dialog contents for SAML support -->
<message name="IDS_ONE_CLICK_SIGNIN_DIALOG_TITLE_NEW" desc="The title of the modal dialog window that opens when the user chooses to use one click sign-in.">
You're signed in to Chromium!
</message>
<message name="IDS_ONE_CLICK_SIGNIN_DIALOG_MESSAGE_NEW" desc="The message of the one click sign-in dialog.">
You're signed in as <ph name="USER_EMAIL_ADDRESS">$1<ex>foo@gmail.com</ex></ph>. Now you can access your bookmarks, history, and other settings on all your signed in devices.
</message>
</if>
<!-- Management bubble -->
<message name="IDS_MANAGEMENT_DIALOG_BROWSER_MANAGED" desc="Disclosure that an unnamed organization is managing the browser.">
Your organization manages Chromium
</message>
<message name="IDS_MANAGEMENT_DIALOG_BROWSER_MANAGED_BY" desc="Disclosure that a known organization is managing the browser.">
<ph name="MANAGER">$1<ex>The Company</ex></ph> manages Chromium
</message>
<message name="IDS_MANAGEMENT_DIALOG_BROWSER_MANAGED_BY_MULTIPLE_ORGANIZATIONS" desc="Disclosure that multiple organization are managing the browser and profile.">
Multiple organizations manage Chromium
</message>
<!-- Managed profile required interstitial -->
<message name="IDS_MANAGED_PROFILE_INTERSTITIAL_PRIMARY_PARAGRAPH" desc="The main text of the interstitial that tells the user that their organization requires them to sign in to Chrome with their managed account in order to access it.">
To continue, sign in to Chromium as <ph name="EMAIL">$1<ex>user@example.com</ex></ph>. This makes sure that you've got your organization's policies.
</message>
<!-- Extension requests sign in to Chrome through chrome.identity API -->
<if expr="enable_extensions">
<message name="IDS_EXTENSION_ASKS_IDENTITY_WHILE_SIGNED_IN_WEB_ONLY_TITLE" desc="This string is the heading of a dialog intended to inform the user that one of their installed extensions wants them to sign in to Chrome to be able to use their Google Account.">
The extension "<ph name="EXTENSION_NAME">$1<ex>Screencast</ex></ph>" wants you to sign in to Chromium
</message>
<message name="IDS_EXTENSION_ASKS_IDENTITY_WHILE_SIGNED_IN_WEB_ONLY_BODY_PART_1" desc="This string is the body of a dialog intended to inform the user that one of their installed extensions wants them to sign in to Chrome to be able to use their Google Account.">
To use this extension as <ph name="USER_EMAIL_ADDRESS">$1<ex>elisa.g.beckett@gmail.com</ex></ph>, sign in to Chromium.
</message>
<message name="IDS_EXTENSION_ASKS_IDENTITY_WHILE_SIGNED_IN_WEB_ONLY_TITLE_FALLBACK" desc="This string is the heading of a dialog intended to inform the user that one of their installed extensions wants them to sign in to Chrome to be able to use their Google Account. Used when the extension name couldn't be retrieved.">
An extension wants you to sign in to Chromium
</message>
</if>
<!-- about:browser-switch strings -->
<if expr="toolkit_views and not is_chromeos">
<message name="IDS_ABOUT_BROWSER_SWITCH_DESCRIPTION_UNKNOWN_BROWSER" desc="Description shown while waiting for an alternative browser to open, when the browser name is not auto-detected">
Your system administrator has configured Chromium to open an alternative browser to access <ph name="TARGET_URL_HOSTNAME">$1<ex>example.com</ex></ph>.
</message>
<message name="IDS_ABOUT_BROWSER_SWITCH_DESCRIPTION_KNOWN_BROWSER" desc="Description shown while waiting for an alternative browser to open, when the browser name is auto-detected">
Your system administrator has configured Chromium to open <ph name="ALTERNATIVE_BROWSER_NAME">$2<ex>Internet Explorer</ex></ph> to access <ph name="TARGET_URL_HOSTNAME">$1<ex>example.com</ex></ph>.
</message>
</if>
<!-- NTP strings -->
<if expr="_is_chrome_for_testing_branded">
<then>
<message name="IDS_NTP_CUSTOMIZE_BUTTON_LABEL" desc="Label for button on the New Tab Page that opens dialog to customize Chrome for Testing browser.">
Customize Chrome for Testing
</message>
</then>
<else>
<message name="IDS_NTP_CUSTOMIZE_BUTTON_LABEL" desc="Label for button on the New Tab Page that opens dialog to customize Chromium browser.">
Customize Chromium
</message>
</else>
</if>
<!-- Signin Email Confirmation tab modal dialog -->
<if expr="not is_chromeos">
<message name="IDS_SIGNIN_EMAIL_CONFIRMATION_TITLE" desc="Title of the signin email confirmation tab modal dialog.">
<ph name="USER_EMAIL_ADDRESS">$1<ex>foo@gmail.com</ex></ph> was previously using Chromium
</message>
</if>
<!-- Dice Web Signin Interception Bubble-->
<if expr="not use_titlecase">
<message name="IDS_AVATAR_BUTTON_INTERCEPT_BUBBLE_CHROME_SIGNIN_TEXT"
desc="Text asking the user to sign into Chromium while the Chromium Signin Bubble intercept is shown.">
Sign in to Chromium?
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_TITLE" desc="Title of the Chromium Signin Bubble intercept that is shown when a signed out user signs in on the web with it's first account.">
Make Chromium your own
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_DECLINE_TEXT"
desc="Label of the Decline button of the Chromium Signin Bubble intercept that is shown when a signed out user signs in on the web with it's first account.">
Use Chromium without an account
</message>
</if>
<if expr="use_titlecase">
<message name="IDS_AVATAR_BUTTON_INTERCEPT_BUBBLE_CHROME_SIGNIN_TEXT"
desc="Text asking the user to sign into Chromium while the Chromium Signin Bubble intercept is shown.">
Sign In to Chromium?
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_TITLE" desc="Title of the Chromium Signin Bubble intercept that is shown when a signed out user signs in on the web with it's first account.">
Make Chromium Your Own
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_DECLINE_TEXT"
desc="Label of the Decline button of the Chromium Signin Bubble intercept that is shown when a signed out user signs in on the web with it's first account.">
Use Chromium Without an Account
</message>
</if>
<if expr="not is_chromeos and not is_android">
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_CREATE_BUBBLE_TITLE_V2" desc="Title of the web signin interception bubble used when Explicit browser Sign in is enabled">
Sign in to Chromium in a new profile?
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_SWITCH_BUBBLE_TITLE" desc="Title for the profile switch interception bubble">
Switch to existing Chromium profile?
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_SWITCH_BUBBLE_DESC_V2" desc="This string is the body text for a dialog that appears when the user is already signed in to Chromium, but they just tried to sign in to a Google service (like Gmail) with a different Google Account that already has its own Chromium profile on this device. The body text is after the 'Switch to existing Chromium profile?' string. The tone should be inviting and helpful.">
You're already signed in as <ph name="USER_EMAIL_ADDRESS">$1<ex>foo@gmail.com</ex></ph> in another Chromium profile
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_SWITCH_BUBBLE_DESC_V2_SUPERVISED" desc="This string is the body text for a dialog that appears when the user is already signed in to Chromium, but they just tried to sign in to a Google service (like Gmail) with a different supervised Google Account that already has its own Chromium profile on this device. The body text is after the 'Switch to existing Chromium profile?' string. The tone should be inviting and helpful.">
To stay safer online with your parent’s choices, switch to your Chromium profile where you’re already signed in as <ph name="USER_EMAIL_ADDRESS">$1<ex>foo@gmail.com</ex></ph>
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_CONSUMER_BUBBLE_DESC" desc="Body of the web signin interception bubble">
<ph name="EXISTING_USER">$1<ex>Elisa</ex></ph> is already signed in to this Chromium profile. To keep your browsing separate, Chromium can create your own profile for you.
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_CREATE_BUBBLE_DESC" desc="Body of the web signin interception bubble. It is shown when the user signs in on the web while they already have another account present in the current profile.">
<ph name="EXISTING_USER">$1<ex>Elisa</ex></ph> is already signed in. To keep your browsing separate, sign in to Chromium in your own profile as <ph name="USER_EMAIL_ADDRESS">$2<ex>foo@gmail.com</ex></ph>.
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_SUBTITLE" desc="Subtitle of the Chromium Signin Bubble intercept that is shown when a signed out user signs in on the web with it's first account.">
To get your passwords and more on all your devices, sign in to Chromium
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_SUBTITLE_SUPERVISED" desc="This string is the body of a promotion about signing in to Chromium with the user's Google Account. It explains the overarching user benefit of signing in: Kids of a certain age are motivated to get their parents’ help staying safer online, so the tone should be motivating. We want users to understand why signing in is beneficial, and click 'Continue as name' to sign in to their Google Account.">
To stay safer online with your parent’s choices, sign in to Chromium
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_IPH_TEXT_SIGNIN_REMINDER" desc="This string is the body text of a reminder message, which is intended to help users understand that they have been signed in to Chromium. The user previously signed in to a Google service (like Gmail or Maps), and saw the Chrome Signin Bubble intercept; when asked whether the user wanted to sign in to Chromium as well, the user selected yes. After a period of time, this reminder message appears at the top right of Chromium (pointing at the Profile Menu) to remind the user that they made this choice a while ago. This body text string comes after the 'Welcome back, USER_NAME' string. We are focusing on the benefit that user enjoys, now that they're signed in to Chromium. The tone should be welcoming.">
While you're signed in, you can use your passwords and more from your Google Account in Chromium. You can change this at any time in settings.
</message>
<message name="IDS_SIGNIN_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNIN_IPH_TEXT_SIGNIN_REMINDER_SCREENREADER" desc="This string is the accessibility text of a reminder message, which is intended to help users understand that they have been signed in to Chrome.">
While you're signed in, you can use your passwords and more from your Google Account in Chromium. <ph name="SHORTCUT">$1<ex>CTRL+SHIFT+M</ex></ph> can change your Google services settings.
</message>
<message name="IDS_CHROME_SIGNOUT_CONFIRMATION_PROMPT_NO_UNSYNCED_TITLE" desc="This is the title of a confirmation dialog and asks the user to confirm that they want to sign out of Chromium. It appears when the user opens the Chromium Profile Menu and chooses 'Sign out of Chromium'. This title is before the 'Your passwords and other Chromium data are saved to your Google Account, and will be removed from this device. To use them in the future, sign back in to Chromium.' string. The tone should be straightforward.">
Sign out of Chromium?
</message>
<message name="IDS_CHROME_SIGNOUT_CONFIRMATION_PROMPT_NO_UNSYNCED_BODY" desc="This is the subtitle of a confirmation dialog that asks the user to confirm that they want to sign out of Chromium. It appears when the user opens the Chromium Profile Menu and chooses 'Sign out of Chromium'. This subtitle is after the 'Sign out of Chromium?' string. The tone should be calm, because we want to explain to the user that their data is saved; however, we want to set expectations by clarifying that the data will be removed from the device. This string provides a path to resolution because it explains how the user can see their data again (by signing back in).">
Your passwords, payment methods, and addresses that you saved in your Google Account will be removed from this device. To use them again in Chromium, sign back in.
</message>
<message name="IDS_CHROME_SIGNOUT_CONFIRMATION_PROMPT_NO_UNSYNCED_DATA_BODY" desc="This is the subtitle of a confirmation dialog that asks the user to confirm that they want to sign out of Chromium. It appears when the user opens the Chromium Profile Menu and chooses 'Sign out of Chromium'. This subtitle is after the 'Sign out of Chromium?' string. The tone should be calm, because we want to explain to the user that their data is saved; however, we want to set expectations by clarifying that the data will be removed from the device. This string provides a path to resolution because it explains how the user can see their data again (by signing back in).">
Your passwords and other Chromium data that you saved in your Google Account will be removed from this device. To use them again in Chromium, sign back in.
</message>
<message name="IDS_CHROME_SIGNOUT_CONFIRMATION_PROMPT_VERIFY_BODY" desc="This is the subtitle of an error message dialog that appears when the user opens the Chromium Profile Menu and chooses 'Sign out of Chromium'. The error message appears when the user has saved some data (like a password or payment method) to Chromium, but Chromium wasn't able to save the data to the user's Google Account due to a sign-in error; we want to set expectations by clarifying that the data will be removed from the device. This subtitle is after the 'Some data isn’t saved yet' string. The tone should be cautionary, because we want to explain to the user that their data is not saved and will be deleted if they sign out. This string provides a path to resolution because it explains how the user can properly save their data before they sign out of Chromium.">
Chromium needs to verify it’s you before some data can be saved in your Google Account and used on all your devices. If you sign out now, this data will be deleted.
</message>
<message name="IDS_CHROME_SIGNOUT_CONFIRMATION_PROMPT_UNSYNCED_BODY" desc="This is the subtitle of an error message dialog that appears when the user opens the Chromium Profile Menu and chooses 'Sign out of Chromium'. The error message appears when the user tries to sign out immediately after having saved saved some data (like a password or payment method) to Chromium and Chromium hasn't had time to save that data to the user's Google Account yet. This subtitle is after the 'Some data isn't saved yet' string. The tone should be cautionary, because we want to explain to the user that their data is not saved to their Google Account. This string asks the user to wait a few minutes before trying to sign out again.">
Some of your Chromium data hasn't been saved in your Google Account yet. Try waiting a few minutes before signing out. If you sign out now, this data will be deleted.
</message>
<message name="IDS_CLOSE_WARNING_FOR_CLEAR_COOKIES_ON_EXIT_TEXT" desc="Body of a notice displayed when closing the last Chrome window, to inform the user about a change in the way the 'Clear cookie on exit' setting works.">
You’ll be signed out of most sites when you close all Chromium windows, except your Google Account if you’re signed in to Chromium. To let sites remember you, <ph name="SETTINGS_LINK">$1<ex>go to settings</ex></ph>.
</message>
<message name="IDS_SYNC_PASSPHRASE_DIALOG_FOOTER" desc="Dialog footer of the passphrase dialog.">
If you forgot your passphrase or want to change this setting, <ph name="SETTINGS_LINK">$1<ex>clear</ex></ph> the Chromium data in your account
</message>
<message name="IDS_SYNC_PASSPHRASE_DIALOG_FOOTER_LINK_ACC" desc="Accessibility label for the link in the footer of the sync passhprase dialog">
Clear the Chromium data in your account
</message>
<message name="IDS_SYNC_PASSPHRASE_DIALOG_BODY" desc="Body of the sync passphrase dialog.">
Your data is encrypted with your passphrase. Enter it to use and save Chromium data in your Google Account.
</message>
<message name="IDS_AVATAR_BUTTON_INTERCEPT_BUBBLE_CHROME_SIGNIN_ACCESSIBILITY_LABEL"
desc="Accessibility label (read by the accessibility tools) of the avatar button when the Chromium Signin bubble is shown. The text implies that the expanded bubble underneath the button is closable by clicking on the button. The actual text is 'Sign in to Chromium?' with a bubble shown under it.">
Click to close the Chromium sign-in dialog
</message>
<message name="IDS_AVATAR_BUTTON_SIGNIN_PENDING_ACCESSIBILITY_LABEL"
desc="Accessibility label (read by the accessibility tools) of the avatar button when Chromium is in 'Sign-in pending' state. This state means that the account associated with Chromium does not have valid credentials anymore and needs to be re-authenticated.">
Chromium account requires re-authentication
</message>
<!-- Autofill Sign In Promo Bubble -->
<message name="IDS_AUTOFILL_SIGNIN_PROMO_SUBTITLE_PASSWORD" desc="This is the body text of a confirmation message and means that the password was only saved locally to the user's device (not in their Google Account). It appears when the user is not signed in to Chromium and is after the 'Password saved to this device' string. If the user wants to save this data to their Google Account, they can click the 'Sign in to Chromium' button at the bottom of this message. The tone should be motivating.">
To get your passwords and more on all your devices, sign in to Chromium. This password will be saved in your Google Account after you sign in.
</message>
<message name="IDS_AUTOFILL_SIGNIN_PROMO_SUBTITLE_ADDRESS" desc="This is the body text of a confirmation message and means that the address was only saved locally to the user's device (not in their Google Account). It appears when the user is not signed in to Chromium and is after the 'Address saved to this device' string. If the user wants to save this data to their Google Account, they can click the 'Sign in to Chromium' button at the bottom of this message. The tone should be motivating.">
To get your addresses and more on all your devices, sign in to Chromium. This address will be saved in your Google Account after you sign in.
</message>
</if>
<if expr="not is_chromeos and not is_android">
<!-- Profile Customization Web UI -->
<message name="IDS_PROFILE_CUSTOMIZATION_TEXT" desc="Text of the profile customization bubble">
Customize your new Chromium profile
</message>
<message name="IDS_PROFILE_CUSTOMIZATION_TITLE_V2" desc="Title of the profile customization dialog">
Customize your Chromium profile
</message>
</if>
<!-- Sync/sign-in error messages -->
<if expr="is_chromeos">
<message name="IDS_SIGNIN_ERROR_SECONDARY_ACCOUNT_DISPLAY_SOURCE" desc="Context title shown in the notification header of sign-in error notification for ChromiumOS Secondary Accounts.">
ChromiumOS System
</message>
<message name="IDS_SYNC_SIGN_IN_ERROR_BUBBLE_VIEW_MESSAGE" desc="Message in the sign-in error notification when the user's sign-in credentials are out of date.">
ChromiumOS could not sync your data because your account sign-in details are out of date.
</message>
<message name="IDS_SYNC_UNAVAILABLE_ERROR_BUBBLE_VIEW_MESSAGE" desc="Message in the sign-in error notification when sync is not available for their domain.">
ChromiumOS could not sync your data because Sync is not available for your domain.
</message>
<message name="IDS_SYNC_OTHER_SIGN_IN_ERROR_BUBBLE_VIEW_MESSAGE" desc="Message in the sign-in error notification when there's an error signing in.">
ChromiumOS could not sync your data due to an error signing in.
</message>
</if>
<!-- Profile Menu -->
<message name="IDS_PROFILE_MENU_SIGNIN_PROMO_BUTTON" desc="Text for the button in the sign-in promo in the profile menu when the used is signed out.">
Sign in to Chromium
</message>
<message name="IDS_PROFILE_MENU_PLACEHOLDER_PROFILE_NAME" desc="Placeholder profile name, used when the user did not enter a name for their profile.">
Your Chromium
</message>
<if expr="not use_titlecase">
<message name="IDS_PROFILE_MENU_SIGN_OUT_WHEN_SIGNIN_PENDING" desc="The text label of the Sign out of Chromium button in the Profile Menu when the user is in sign in pending state.">
Remove account from Chromium
</message>
<message name="IDS_PROFILE_MENU_PROFILES_LIST_TITLE" desc="Title in the profile menu for the list of 'other Chromium profiles'.">
Other Chromium profiles
</message>
<message name="IDS_PROFILE_MENU_MANAGE_PROFILES" desc="The text label of the Manage Chromium Profiles item in the Profile Menu.">
Manage Chromium profiles
</message>
<message name="IDS_PROFILE_MENU_SIGN_OUT"
desc="The text label of the Sign out of Chromium button in the Profile Menu.">
Sign out of Chromium
</message>
<message name="IDS_PROFILE_MENU_ADD_PROFILE" desc="The text label of the add new profile item in the profile menu.">
Add Chromium profile
</message>
</if>
<if expr="use_titlecase">
<message name="IDS_PROFILE_MENU_SIGN_OUT_WHEN_SIGNIN_PENDING" desc="The text label of the Sign out of Chromium button in the Profile Menu when the user is in sign in pending state.">
Remove Account from Chromium
</message>
<message name="IDS_PROFILE_MENU_PROFILES_LIST_TITLE" desc="Title in the profile menu for the list of 'other Chromium profiles'.">
Other Chromium Profiles
</message>
<message name="IDS_PROFILE_MENU_MANAGE_PROFILES" desc="The text label of the Manage Chromium Profiles item in the Profile Menu.">
Manage Chromium Profiles
</message>
<message name="IDS_PROFILE_MENU_SIGN_OUT"
desc="The text label of the Sign out of Chromium button in the Profile Menu.">
Sign Out of Chromium
</message>
<message name="IDS_PROFILE_MENU_ADD_PROFILE" desc="The text label of the add new profile item in the profile menu.">
Add Chromium Profile
</message>
</if>
<!-- App list -->
<if expr="is_chromeos">
<message name="IDS_APP_LIST_EXTENSIONS_UNINSTALL" desc="Title text for the context menu item of a non-platform-app app list item that removes the app.">
Remove from Chromium...
</message>
</if>
<message name="IDS_APP_ALSO_DELETE_APPS_DATA" desc="Checkbox text to ask the user during uninstall; Whether they want to remove associated data for the app being uninstalled. Only used when uninstalling an app associated with a particular website.">
Remove this apps data from Chromium
</message>
<!-- App shortcuts -->
<message name="IDS_APP_SHORTCUTS_SUBDIR_NAME" desc="Name for the Chromium Apps Start Menu folder name.">
Chromium Apps
</message>
<message name="IDS_APP_SHORTCUTS_SUBDIR_NAME_CANARY" desc="Name for the Chrome Apps Start Menu folder name.">
Chromium Apps
</message>
<if expr="is_win">
<message name="IDS_APP_SHORTCUTS_SUBDIR_NAME_BETA" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_APP_SHORTCUTS_SUBDIR_NAME_DEV" desc="Unused in Chromium builds" translateable="false">
</message>
</if>
<!-- ChromeOS OOBE Terms of Service screen-->
<if expr="is_chromeos">
<message name="IDS_TERMS_OF_SERVICE_SCREEN_SUBHEADING" desc="Subheading at the top of the Terms of Service screen. MANAGER can be a domain or an email address.">
<ph name="MANAGER">$1<ex>example.com</ex></ph> requires that you read and accept the following Terms of Service before using this device. These terms do not expand, modify or limit the ChromiumOS Terms.
</message>
</if>
<!-- MediaStream capture status tray icon -->
<message name="IDS_MEDIA_STREAM_STATUS_TRAY_TEXT_AUDIO_AND_VIDEO" desc="Tool tip for the capture status tray icon when microphone and camera are being used">
Chromium is using your camera and microphone.
</message>
<message name="IDS_MEDIA_STREAM_STATUS_TRAY_TEXT_AUDIO_ONLY" desc="Tool tip for the capture status tray icon when microphone is being used">
Chromium is using your microphone.
</message>
<message name="IDS_MEDIA_STREAM_STATUS_TRAY_TEXT_VIDEO_ONLY" desc="Tool tip for the capture status tray icon when camera is being used">
Chromium is using your camera.
</message>
<if expr="not is_android">
<!-- WebHID system tray icon -->
<message name="IDS_WEBHID_SYSTEM_TRAY_ICON_TITLE" desc="Title for the WebHID system tray icon">
{NUM_DEVICES, plural,
=0 {1 HID device was being accessed by one or more Chromium extensions}
=1 {1 HID device is being accessed by one or more Chromium extensions}
other {# HID devices are being accessed by one or more Chromium extensions}}
</message>
<!-- WebUSB system tray icon -->
<message name="IDS_WEBUSB_SYSTEM_TRAY_ICON_TITLE" desc="Title for the WebUSB system tray icon">
{NUM_DEVICES, plural,
=0 {1 USB device was being accessed by one or more Chromium extensions}
=1 {1 USB device is being accessed by one or more Chromium extensions}
other {# USB devices are being accessed by one or more Chromium extensions}}
</message>
</if>
<!-- ProcessSingleton -->
<if expr="is_posix">
<message name="IDS_PROFILE_IN_USE_POSIX" desc="Message shown when the browser cannot start because the profile is in use on a different host.">
The profile appears to be in use by another Chromium process (<ph name="PROCESS_ID">$1<ex>12345</ex></ph>) on another computer (<ph name="HOST_NAME">$2<ex>example.com</ex></ph>). Chromium has locked the profile so that it doesn't get corrupted. If you are sure no other processes are using this profile, you can unlock the profile and relaunch Chromium.
</message>
</if>
<!-- Mac First-run dialog messages -->
<if expr="is_macosx">
<message name="IDS_FIRSTRUN_DLG_MAC_SET_DEFAULT_BROWSER_LABEL" desc="Label for checkbox that sets the default browser">
Set Chromium as your default browser
</message>
</if>
<!-- Material Design User Manager -->
<if expr="not is_android and not is_chromeos">
<!-- User pod remove sync warning text -->
<message name="IDS_LOGIN_POD_USER_REMOVE_WARNING_SYNC" desc="Main text shown as a warning when attempting to remove an user.">
This person's browsing data will be deleted from this device. To recover the data, sign in to Chromium as <ph name="USER_EMAIL">$2<ex>foo@example.com</ex></ph>.
</message>
<!-- Tutorial -->
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_INTRO_TITLE" desc="Title of the tutorial introduction slide">
Chromium just got better
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_INTRO_TEXT" desc="Main text of the tutorial introduction slide">
Now it's easier to use Chromium with your Google Account and on shared computers.
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_YOUR_CHROME_TITLE" desc="Title of the slide about personalizing the browser">
This is your Chromium
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_YOUR_CHROME_TEXT" desc="Main text of the slide about personalizing the browser">
Your web, bookmarks, and other Chromium stuff live here.
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_GUEST_TEXT" desc="Main text of the guest user slide">
Guests can use Chromium without leaving anything behind.
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_FRIENDS_TEXT" desc="Main text of the friends and family slide">
If you share a computer, friends and family can browse separately and set up Chromium just the way they want.
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_OUTRO_TEXT" desc="Main text of the tutorial completion slide">
Click your name to open Chromium and start browsing.
</message>
<message name="IDS_USER_MANAGER_TUTORIAL_SLIDE_OUTRO_ADD_USER" desc="Text of the add a new user button">
Add yourself to Chromium
</message>
</if>
<if expr="not is_android">
<!-- Password Manager Tutorial Strings -->
<message name="IDS_TUTORIAL_PASSWORD_MANAGER_OPEN_APP_MENU" desc="The description of the 'open add menu' step in password manager tutorial">
Click the Chromium menu
</message>
<message name="IDS_TUTORIAL_PASSWORD_MANAGER_CLICK_PASSWORD_MANAGER" desc="The description of the 'click password manager' step in password manager tutorial">
Click “Password Manager”
</message>
<message name="IDS_TUTORIAL_PASSWORD_MANAGER_SUCCESS_BODY" desc="The description of the body text in the 'success' step in password manager tutorial">
Use your shortcut to quickly get to the Password Manager. You can move your shortcut to your computer's home screen or app launcher.
</message>
<message name="IDS_PASSWORD_MANAGER_IPH_CREATE_SHORTCUT_BODY" desc="Body of the in Product Help shown after successfully logging into a website telling user about how to create a shortcut">
Add a shortcut to Password Manager
</message>
</if>
<!-- Settings API bubble -->
<message name="IDS_EXTENSIONS_SETTINGS_API_SECOND_LINE_START_PAGES" desc="Second line in the Settings API bubble. Only shown if the secondary change by the extension was just the start pages. The triple single quotes are needed to preserve the space before and after the sentence which is needed when the language (Chrome is being translated to) uses space as word separator. Please preserve them, unless the language being translated to does not use space as word separator.">
''' It also controls what page is shown when you start Chromium. '''
</message>
<message name="IDS_EXTENSIONS_SETTINGS_API_SECOND_LINE_START_AND_SEARCH" desc="Second line in the Settings API bubble. Only shown if the secondary change by the extension was both the start page and the search engine. See IDS_EXTENSIONS_SETTINGS_API_SECOND_LINE_START_PAGES for reason for triple quotes.">
''' It also controls what page is shown when you start Chromium or search from the Omnibox. '''
</message>
<!-- Webstore strings -->
<message name="IDS_WEBSTORE_APP_DESCRIPTION" desc="Description for the WebStore app.">
Discover great apps, games, extensions and themes for Chromium.
</message>
<!-- Windows firewall rule strings. -->
<if expr="is_win">
<message name="IDS_INBOUND_MDNS_RULE_NAME" desc="The name of the firewall rule allowing inbound mDNS traffic.">
Chromium (mDNS-In)
</message>
<message name="IDS_INBOUND_MDNS_RULE_NAME_BETA" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_INBOUND_MDNS_RULE_NAME_CANARY" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_INBOUND_MDNS_RULE_NAME_DEV" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_INBOUND_MDNS_RULE_DESCRIPTION" desc="The description of the firewall rule allowing inbound mDNS traffic.">
Inbound rule for Chromium to allow mDNS traffic.
</message>
<message name="IDS_INBOUND_MDNS_RULE_DESCRIPTION_BETA" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_INBOUND_MDNS_RULE_DESCRIPTION_CANARY" desc="Unused in Chromium builds" translateable="false">
</message>
<message name="IDS_INBOUND_MDNS_RULE_DESCRIPTION_DEV" desc="Unused in Chromium builds" translateable="false">
</message>
</if>
<if expr="not is_android">
<message name="IDS_CONTENT_CONTEXT_ACCESSIBILITY_LABELS_BUBBLE_TEXT" desc="The text of a bubble that confirms users allows integrating the accessibility labels service of Google to Chromium.">
If an image doesn’t have a useful description, Chromium will try to provide one for you. To create descriptions, images are sent to Google. You can turn this off in settings at any time.
</message>
<message name="IDS_CONTENT_CONTEXT_ACCESSIBILITY_LABELS_BUBBLE_TEXT_ONCE" desc="The text of a bubble that confirms users allows integrating the accessibility labels service of Google to Chromium just once.">
If an image doesn’t have a useful description, Chromium will try to provide one for you. To create descriptions, images are sent to Google.
</message>
<message name="IDS_CONTENT_CONTEXT_SPELLING_BUBBLE_TEXT" desc="The text of a bubble that confirms users allows integrating the spelling service of Google to Chrome.">
This uses the same spell checker that's used in Google search. Text you type in the browser is sent to Google. You can always change this behavior in settings.
</message>
<if expr="not use_titlecase">
<message name="IDS_CONTENT_CONTEXT_OPENLINKNEWTAB_INAPP" desc="The name of the command to open a link in a newly created browser tab when the user is in an app window">
Open link in new Chromium &tab
</message>
<message name="IDS_CONTENT_CONTEXT_OPENLINKOFFTHERECORD_INAPP" desc="The name of the command to open a link in an Incognito browser window when the user is in an app window">
Open link in Chromium inco&gnito window
</message>
</if>
<if expr="use_titlecase">
<message name="IDS_CONTENT_CONTEXT_OPENLINKNEWTAB_INAPP" desc="In Title Case: The name of the command to open a link in a newly created browser tab when the user is in an app window">
Open Link in New Chromium &tab
</message>
<message name="IDS_CONTENT_CONTEXT_OPENLINKOFFTHERECORD_INAPP" desc="In Title Case: The name of the command to open a link in an Incognito browser window when the user is in an app window">
Open Link in Chromium Inco&gnito Window
</message>
</if>
</if>
<!-- Update Recommended dialog -->
<if expr="not is_chromeos">
<message name="IDS_UPDATE_RECOMMENDED_DIALOG_TITLE" desc="The window title for the Update Recommended dialog.">
Relaunch Chromium
</message>
<message name="IDS_UPDATE_RECOMMENDED" desc="The main text of the Update Recommended dialog with a count of open Incognito windows.">
{COUNT, plural,
=0 {A new update for Chromium is available and will be applied as soon as you relaunch.}
=1 {A new update for Chromium is available and will be applied as soon as you relaunch. Your Incognito window won't reopen.}
other {A new update for Chromium is available and will be applied as soon as you relaunch. Your # Incognito windows won't reopen.}}
</message>
<message name="IDS_RELAUNCH_AND_UPDATE" desc="The button in the Update Recommended dialog which updates and relaunches Chrome.">
Relaunch
</message>
</if>
<if expr="is_chromeos">
<message name="IDS_UPDATE_RECOMMENDED_DIALOG_TITLE" desc="The window title for the Update Recommended dialog.">
Restart ChromiumOS
</message>
<message name="IDS_UPDATE_RECOMMENDED" desc="The main text of the Update Recommended dialog.">
ChromiumOS needs to be restarted to apply the update.
</message>
<message name="IDS_RELAUNCH_AND_UPDATE" desc="The button in the Update Recommended dialog which updates and restarts ChromeOS.">
Restart
</message>
</if>
<if expr="is_win or is_macosx or is_linux">
<message name="IDS_UPDATE_RECOMMENDED_DIALOG_TITLE_ALT" desc="Alternate window title for the Update Recommended dialog." translateable="false">
Not used in Chromium. Placeholder to keep resource maps in sync.
</message>
<message name="IDS_UPDATE_RECOMMENDED_ALT" desc="Alternate main text of the Update Recommended dialog with a count of open Incognito windows." translateable="false">
Not used in Chromium. Placeholder to keep resource maps in sync.
</message>
</if>
<!-- Update bubble -->
<message name="IDS_REINSTALL_APP" desc="Text for the button the user clicks to reinstall the app.">
Reinstall Chromium
</message>
<if expr="use_titlecase">
<message name="IDS_UPGRADE_BUBBLE_MENU_ITEM" desc="In Title Case: Text for the Chrome menu option replacing Update required.">
Chromium is Out of Date
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_UPGRADE_BUBBLE_MENU_ITEM" desc="Text for the Chrome menu option replacing Update required.">
Chromium is out of date
</message>
</if>
<message name="IDS_UPGRADE_BUBBLE_TITLE" desc="Text for the title of the upgrade bubble view.">
Can't update Chromium
</message>
<message name="IDS_UPGRADE_BUBBLE_TEXT" desc="Text for the upgrade bubble view full description.">
Chromium couldn't update to the latest version, so you're missing out on new features and security fixes.
</message>
<!-- User menu errors -->
<message name="IDS_SYNC_ERROR_USER_MENU_UPGRADE_BUTTON" desc="Button in the header of desktop user menu that prompts the user to update Chrome to fix the out-of-date Chrome client error.">
Update Chromium
</message>
<message name="IDS_SYNC_ERROR_PASSPHRASE_USER_MENU_ERROR_DESCRIPTION" desc="Error description of the sync/signin error header of desktop user menu.">
Enter your passphrase to use and save Chromium data in your account, <ph name="ACCOUNT_EMAIL">$1<ex>elisa.beckett@gmail.com</ex></ph>
</message>
<message name="IDS_SYNC_ERROR_TRUSTED_VAULT_USER_MENU_ERROR_DESCRIPTION" desc="Error description of the sync/signin error header of desktop user menu.">
Verify it's you to use and save Chromium data in your account, <ph name="ACCOUNT_EMAIL">$1<ex>elisa.beckett@gmail.com</ex></ph>
</message>
<message name="IDS_SYNC_ERROR_UPGRADE_CLIENT_USER_MENU_TITLE" desc="Error message to resolve sync protocol error for out-of-date client.">
To use and save Chromium data in your Google Account, update Chromium
</message>
<message name="IDS_SYNC_ERROR_UPGRADE_CLIENT_USER_MENU_ERROR_DESCRIPTION" desc="Error message to resolve sync protocol error for out-of-date client.">
Update Chromium to keeping using the Chromium data in your Google Account, <ph name="ACCOUNT_EMAIL">$1<ex>elisa.beckett@gmail.com</ex></ph>
</message>
<!-- Sync errors. -->
<message name="IDS_SYNC_UPGRADE_CLIENT" desc="Message indicating client needs to be upgraded to the latest version.">
Update Chromium to start sync
</message>
<message name="IDS_SYNC_UPGRADE_CLIENT_BUTTON" desc="Button indicating client needs to be upgraded to the latest version.">
Update Chromium
</message>
<!-- Upgrade recovery bubble -->
<message name="IDS_RECOVERY_BUBBLE_TITLE" desc="Text for the title of the chrome recovery bubble view.">
Chromium is out of date
</message>
<if expr="use_titlecase">
<message name="IDS_RUN_RECOVERY" desc="In Title Case: Text for the button the user clicks to recover chromium and its updater.">
Update Chromium
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_RUN_RECOVERY" desc="Text for the button the user clicks to recover chromium and its updater.">
Update Chromium
</message>
</if>
<message name="IDS_RECOVERY_BUBBLE_TEXT" desc="Text for the chrome recovery bubble view full description.">
Important security improvements and new features are available in the latest version.
</message>
<!-- Critical Notification bubble -->
<message name="IDS_CRITICAL_NOTIFICATION_TITLE" desc="The title for a bubble that appears when there is a critical update and Chromium must restart to install it. It counts down a timer and then Chromium automatically restarts.">
Chromium will restart in <ph name="REMAINING_TIME">$1<ex>1 minute, 7 seconds</ex></ph>
</message>
<message name="IDS_CRITICAL_NOTIFICATION_TITLE_ALTERNATE" desc="The title for a bubble that appears when there is a critical update and Chromium must restart to install it. The title was previously countng down to an automatic restart and now it has finished. Will only be seen if a web page stops the shutdown process.">
Please restart Chromium now
</message>
<message name="IDS_CRITICAL_NOTIFICATION_TEXT" desc="Explanation text for the bubble that appears when there is a critical update and Chromium must restart to install it.">
A special security update for Chromium was just applied. Restart now and we'll restore your tabs.
</message>
<!-- Desktop Capture -->
<message name="IDS_DESKTOP_MEDIA_PICKER_SOURCE_TYPE_TAB" desc="Text for the button on the window picker dialog, clicking which takes one to tab sharing">
Chromium Tab
</message>
<message name="IDS_DESKTOP_MEDIA_PICKER_SCREEN_PERMISSION_TEXT_MAC" desc="Instructive text for how to enable screen recording on Mac when trying to share a screen." >
To share your screen, allow screen recording for Chromium in System Settings
</message>
<message name="IDS_DESKTOP_MEDIA_PICKER_SCREEN_PERMISSION_TEXT_PERIOD_MAC" desc="Instructive text for how to enable screen recording on Mac when trying to share a screen, ending with period to allow a supplementary text to follow." >
To share your screen, allow screen recording for Chromium in System Settings.
</message>
<message name="IDS_DESKTOP_MEDIA_PICKER_WINDOW_PERMISSION_TEXT_MAC" desc="Instructive text for how to enable screen recording on Mac when trying to share a window." >
To share your window, allow screen recording for Chromium in System Settings
</message>
<message name="IDS_DESKTOP_MEDIA_PICKER_WINDOW_PERMISSION_TEXT_PERIOD_MAC" desc="Instructive text for how to enable screen recording on Mac when trying to share a window, ending with period to allow a supplementary text to follow." >
To share your window, allow screen recording for Chromium in System Settings.
</message>
<message name="IDS_DESKTOP_MEDIA_PICKER_PERMISSION_RESTART_TEXT_MAC" desc="Supplementary text about the need to restart Chrome, displayed below the message about enabling screen-recording permissions on Mac when those permissions are missing." >
You'll then need to restart Chromium.
</message>
<!-- Runtime permission strings -->
<if expr="is_android">
<message name="IDS_INFOBAR_MISSING_AR_CAMERA_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to augmented reality capabilities, but Chrome is missing the Android camera permission.">
Chromium needs permission to access your camera to create a 3D map of your surroundings
</message>
<message name="IDS_INFOBAR_MISSING_CAMERA_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to the camera capabilities, but Chrome is missing the Android camera permission.">
Chromium needs permission to access your camera for this site
</message>
<message name="IDS_INFOBAR_MISSING_HAND_TRACKING_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to hand tracking capabilities, but Chrome is missing the Android hand tracking permission.">
Chromium needs permission to track your hands
</message>
<message name="IDS_INFOBAR_MISSING_MICROPHONE_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to the microphone capabilities, but Chrome is missing the Android microphone permission.">
Chromium needs permission to access your microphone for this site
</message>
<message name="IDS_INFOBAR_MISSING_MICROPHONE_CAMERA_PERMISSIONS_TEXT" desc="Text shown in an infobar when a website has requested access to the microphone and camera capabilities, but Chrome is missing the Android microphone and camera permissions.">
Chromium needs permission to access your camera and microphone for this site
</message>
<message name="IDS_INFOBAR_MISSING_LOCATION_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to the location capabilities, but Chrome is missing the Android location permission.">
Chromium needs access to your location to share your location with this site
</message>
<message name="IDS_MISSING_STORAGE_PERMISSION_DOWNLOAD_EDUCATION_TEXT" desc="Text shown educating the user that Chrome is missing the Android storage permission, which is required to download files.">
Chromium needs storage access to download files
</message>
<message name="IDS_MESSAGE_MISSING_AR_CAMERA_PERMISSION_TEXT" desc="Text shown in a prompt ui when a website has requested access to augmented reality capabilities, but Chrome is missing the Android camera permission.">
Chromium needs camera permission to create a 3D map of your surroundings
</message>
<message name="IDS_MESSAGE_MISSING_CAMERA_PERMISSION_TEXT" desc="Text shown in a prompt ui when a website has requested access to the camera capabilities, but Chrome is missing the Android camera permission.">
Chromium needs camera permission for this site
</message>
<message name="IDS_MESSAGE_MISSING_HAND_TRACKING_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to mixed reality capabilities, but Chrome is missing the Android hand tracking permission.">
Chromium needs permission to track your hands
</message>
<message name="IDS_MESSAGE_MISSING_MICROPHONE_PERMISSION_TEXT" desc="Text shown in a prompt ui when a website has requested access to the microphone capabilities, but Chrome is missing the Android microphone permission.">
Chromium needs microphone permission for this site
</message>
<message name="IDS_MESSAGE_MISSING_MICROPHONE_CAMERA_PERMISSIONS_TEXT" desc="Text shown in a prompt ui when a website has requested access to the microphone and camera capabilities, but Chrome is missing the Android microphone and camera permissions.">
Chromium needs camera and microphone permissions for this site
</message>
<message name="IDS_MESSAGE_MISSING_LOCATION_PERMISSION_TEXT" desc="Text shown in a prompt ui when a website has requested access to the location capabilities, but Chrome is missing the Android location permission.">
Chromium needs location permission for this site
</message>
<message name="IDS_MESSAGE_STORAGE_ACCESS_PERMISSION_TEXT" desc="Text shown educating the user that Chrome is missing the Android storage permission, which is required to download files.">
Chromium needs storage access permission to download files
</message>
<message name="IDS_MESSAGE_MISSING_XR_PERMISSION_TEXT" desc="Text shown in an infobar when a website has requested access to mixed reality capabilities, but Chrome is missing the Android scene understanding and hand tracking permission.">
Chromium needs permission to map your surroundings and track your hands
</message>
</if>
<if expr="is_macosx">
<message name="IDS_RUNTIME_PERMISSION_OS_REASON_TEXT" desc="Text provided to the macOS permission dialog, explaining why Chrome needs to access a protected resource (e.g., camera, microphone).">
Once Chromium has access, websites will be able to ask you for access.
</message>
<message name="IDS_LOCAL_NETWORK_ACCESS_PERMISSION_DESC" desc="Text shown in the macOS permission dialog, describing why Chrome needs the permission to access local network.">
This will allow you to select from available devices and display content on them.
</message>
</if>
<!-- Lens Overlay Strings -->
<if expr="not is_android">
<!-- Side Panel Pinnable Entrypoint Strings -->
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_PINNABLE_IPH"
desc="The body text of the IPH describing that the Lens Overlay panel is pinnable.">
You can pin Image Search for easy access
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_PINNABLE_IPH_SCREENREADER"
desc="The screen reader text of the IPH describing that the Lens Overlay panel is pinnable."
is_accessibility_with_no_ui="true">
You can pin Image Search for easy access; click the Pin button at the top of the side panel
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_PINNABLE_FOLLOWUP_IPH"
desc="The body text of the IPH describing that the Lens Overlay panel has been pinned.">
Pinned! Use Image Search again from the toolbar
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_PINNABLE_FOLLOWUP_IPH_SCREENREADER"
desc="The screen reader text of the IPH describing that the Lens Overlay panel has been pinned."
is_accessibility_with_no_ui="true">
Pinned! You can access Image Search again from the new button on the toolbar
</message>
<!-- Overlay WebUI Strings -->
<message name="IDS_LENS_OVERLAY_COPY"
desc="Command in the Lens Overlay context menu to copy text.">
Copy
</message>
<message name="IDS_LENS_OVERLAY_COPY_TEXT"
desc="Command in the Lens Overlay context menu to copy text.">
Copy text
</message>
<message name="IDS_LENS_OVERLAY_COPY_TOAST_MESSAGE"
desc="Notification shown in the Lens Overlay when the user has copied selected text to the clipboard.">
Text copied
</message>
<message name="IDS_LENS_OVERLAY_COPY_AS_IMAGE_TOAST_MESSAGE"
desc="Notification shown in the Lens Overlay when the user has copied the selected image to the clipboard.">
Image copied
</message>
<message name="IDS_LENS_OVERLAY_FEEDBACK_TOAST_MESSAGE"
desc="The message on the toast prompting the user to share their thoughts by sending feedback.">
Share your thoughts
</message>
<message name="IDS_LENS_OVERLAY_SEND_FEEDBACK_BUTTON_LABEL"
desc="The label for the button that on click opens a feedback form for the user to send feedback about the feature.">
Send feedback
</message>
<message name="IDS_LENS_OVERLAY_MORE_OPTIONS_BUTTON_LABEL"
desc="Text that is shown in the tooltip of the more options button in the Lens Overlay.">
More options
</message>
<message name="IDS_LENS_OVERLAY_MY_ACTIVITY"
desc="Text that is shown in the more options menu to open the user's activity page.">
My Activity
</message>
<message name="IDS_LENS_OVERLAY_TOAST_PAGE_CONTENT_NOT_FOUND_MESSAGE">
Can't find content in page
</message>
<message name="IDS_LENS_OVERLAY_TOAST_DISMISS_MESSAGE"
desc="The label for the button that dismisses the toast message">
Dismiss
</message>
<message name="IDS_LENS_OVERLAY_TRANSLATE"
desc="Command in the Lens Overlay context menu to translate text.">
Translate
</message>
<message name="IDS_LENS_OVERLAY_SELECT_TEXT"
desc="Command in the Lens Overlay context menu to select text.">
Select text
</message>
<message name="IDS_LENS_OVERLAY_COPY_AS_IMAGE"
desc="Command in the Lens Overlay context menu to copy the selected screen region to the clipboard as an image.">
Copy as image
</message>
<message name="IDS_LENS_OVERLAY_SAVE_AS_IMAGE"
desc="Command in the Lens Overlay context menu to save the selected screen region to disk as an image file.">
Save as image
</message>
<message name="IDS_LENS_OVERLAY_LEARN_MORE"
desc="Text that is shown in the more options menu to open the help center article.">
Learn more
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_LABEL"
desc="Accessibility label for the initial user eduction bubble that appears at the top of the screen after the user invokes the Lens Overlay feature. Informs the user to select an object to search with Google Lens, or use the escape key to exit the feature.">
Select anything to search with Image Search or press escape to exit Image Search
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_MESSAGE"
desc="Text that is shown in the Lens Overlay education bubble when starting the feature. Informs the user to tap an object or drag over the screen to select a region to search with Google Lens.">
Select anything to search with Image Search
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_LABEL_SIMPLIFIED"
desc="Accessibility label for the initial user eduction bubble that appears at the top of the screen after the user invokes the Lens Overlay feature. Informs the user to select an object to search with Google Lens, or use the escape key to exit the feature."
is_accessibility_with_no_ui="true">
Select any text or image to search with Image Search or press escape to exit Image Search
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_MESSAGE_SIMPLIFIED"
desc="Text that is shown in the Lens Overlay education bubble when starting the feature. Informs the user to tap an object or drag over the screen to select a region to search with Google Lens.">
Select any text or image to search with Image Search
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_MESSAGE_SELECT_TEXT"
desc="Text that is shown in the Lens Overlay education bubble when starting the feature. Informs the user to drag over the screen to select text to search with Google Lens.">
Select text with Image Search
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_ERROR_MESSAGE"
desc="Text that is shown in the Lens Overlay education bubble when starting the feature in an offline state. Informs the user that Lens is not currently available.">
Image Search is not available. Try again later.
</message>
<message name="IDS_LENS_OVERLAY_INITIAL_TOAST_ERROR_EXIT_BUTTON_TEXT"
desc="Text that is shown in the Lens Overlay education bubble exit button when starting the feature in an offline state.">
Exit
</message>
<message name="IDS_LENS_OVERLAY_CURSOR_TOOLTIP_DRAG_MESSAGE"
desc="Text that is shown in the Lens Overlay tooltip that appears beneath the cursor. Informs the user to drag over the screen to select a region to search it.">
Drag to search
</message>
<message name="IDS_LENS_OVERLAY_CURSOR_TOOLTIP_TEXT_HIGHLIGHT_MESSAGE"
desc="Text that is shown in the Lens Overlay tooltip that appears beneath the cursor. Informs the user to highlight text to search it.">
Select text to search
</message>
<message name="IDS_LENS_OVERLAY_CURSOR_TOOLTIP_CLICK_MESSAGE"
desc="Text that is shown in the Lens Overlay tooltip that appears beneath the cursor. Informs the user to click on an object to search it.">
Click to search
</message>
<message name="IDS_LENS_OVERLAY_CURSOR_TOOLTIP_LIVE_PAGE_MESSAGE"
desc="Text that is shown in the Lens Overlay tooltip that appears beneath the cursor. Informs the user to click to exit Google Lens.">
Click to exit Image Search
</message>
<message name="IDS_LENS_OVERLAY_AUTO_DETECT_LANGUAGE_LABEL"
desc="Label for the language picker button denoting that source language of the page will be automatically detected.">
Auto-detect
</message>
<message name="IDS_LENS_OVERLAY_TRANSLATE_BUTTON_LABEL"
desc="Label for the translate button. Informs the user that the entire screen will be translated when clicked.">
Translate screen
</message>
<message name="IDS_LENS_OVERLAY_SOURCE_LANGUAGE_PICKER_MENU_TITLE"
desc="Label for the source language picker menu title denoting that the user can select a language for the screen to be translated to.">
Translate from
</message>
<message name="IDS_LENS_OVERLAY_TARGET_LANGUAGE_PICKER_MENU_TITLE"
desc="Label for the target language picker menu title denoting that the user can select a language for the screen to be translated to.">
Translate to
</message>
<message name="IDS_LENS_OVERLAY_RECENT_LANGUAGES_LABEL"
desc="Label in the language picker menu denoting that the following language menu items are ones that have been selected recently by the user.">
Recent languages
</message>
<message name="IDS_LENS_OVERLAY_ALL_LANGUAGES_LABEL"
desc="Label in the language picker menu denoting that the following language menu items are all of the possible selections that can be made.">
All languages
</message>
<message name="IDS_LENS_OVERLAY_DETECTED_LABEL"
desc="Label in the language picker menu denoting that the following language is the one that has been detected.">
Detected
</message>
<message name="IDS_LENS_OVERLAY_DETECT_LANGUAGE_LABEL"
desc="Label in the language picker menu denoting that the following language is the one that has been detected.">
Detect language
</message>
<message name="IDS_LENS_SEND_FEEDBACK"
desc="Text that is shown in the more options menu to open the feedback dialog.">
Send feedback
</message>
<message name="IDS_LENS_SEND_FEEDBACK_PLACEHOLDER"
desc="Placeholder text that is shown in the feedback dialog to send feedback for the Lens Overlay.">
Send feedback for search with Lens
</message>
<message name="IDS_LENS_OVERLAY_RENDERER_LABEL"
desc="The label for the renderer process housing the Lens overlay.">
Image Search
</message>
<message name="IDS_LENS_OVERLAY_CLOSE_TRANSLATE_SCREEN_LABEL"
desc="Accessibility label for the button that closes translate mode on the Lens Overlay UI. Informs the user that the button this label is associated with closes translate screen functionality.">
Close translate screen
</message>
<message name="IDS_LENS_OVERLAY_LANGUAGE_PICKER_LABEL"
desc="Accessibility label for the language picker menu. Informs the user that the menu opened is a language picker menu where they can select a language.">
Language picker
</message>
<message name="IDS_LENS_OVERLAY_SOURCE_LANGUAGE_ACCESSIBILITY_LABEL"
desc="Accessibility label for the button that shows the source translate language when in translate mode. Informs the user of the current source translate language that is set on the UI which is the language the screen will be translated from.">
Original language: <ph name="LANGUAGE"><ex>English</ex>$1</ph>
</message>
<message name="IDS_LENS_OVERLAY_TARGET_LANGUAGE_ACCESSIBILITY_LABEL"
desc="Accessibility label for the button that shows the target translate language when in translate mode. Informs the user of the current target translate language that is set on the UI which is the language the screen will be translated to.">
Translated language: <ph name="LANGUAGE"><ex>English</ex>$1</ph>
</message>
<message name="IDS_LENS_OVERLAY_SEARCH_LANGUAGE_PICKER_LABEL"
is_accessibility_with_no_ui="true"
desc="Accessibility label for the button that opens a searchbox on the language picker so the user can search through the defined languages to find one that matches the text they enter into the searchbox.">
Search language list
</message>
<message name="IDS_LENS_OVERLAY_TOP_LEFT_CORNER_SLIDER_ACCESSIBILITY_LABEL"
is_accessibility_with_no_ui="true"
desc="Accessibility label for the slider controlling the top left corner of the search area. Includes the coordinates of the left and top edges of the search area expressed as percentages of the image area.">
top left corner of search area: left <ph name="LEFT"><ex>15</ex>$1</ph>%, top <ph name="TOP"><ex>65</ex>$2</ph>%
</message>
<message name="IDS_LENS_OVERLAY_TOP_RIGHT_CORNER_SLIDER_ACCESSIBILITY_LABEL"
is_accessibility_with_no_ui="true"
desc="Accessibility label for the slider controlling the top right corner of the search area. Includes the coordinates of the right and top edges of the search area expressed as percentages of the image area.">
top right corner of search area: right <ph name="RIGHT"><ex>15</ex>$1</ph>%, top <ph name="TOP"><ex>65</ex>$2</ph>%
</message>
<message name="IDS_LENS_OVERLAY_BOTTOM_RIGHT_CORNER_SLIDER_ACCESSIBILITY_LABEL"
is_accessibility_with_no_ui="true"
desc="Accessibility label for the slider controlling the bottom right corner of the search area. Includes the coordinates of the right and bottom edges of the search area expressed as percentages of the image area.">
bottom right corner of search area: right <ph name="RIGHT"><ex>15</ex>$1</ph>%, bottom <ph name="BOTTOM"><ex>65</ex>$2</ph>%
</message>
<message name="IDS_LENS_OVERLAY_BOTTOM_LEFT_CORNER_SLIDER_ACCESSIBILITY_LABEL"
is_accessibility_with_no_ui="true"
desc="Accessibility label for the slider controlling the bottom left corner of the search area. Includes the coordinates of the left and bottom edges of the search area expressed as percentages of the image area.">
bottom left corner of search area: left <ph name="LEFT"><ex>15</ex>$1</ph>%, bottom <ph name="BOTTOM"><ex>65</ex>$2</ph>%
</message>
<message name="IDS_LENS_OVERLAY_SEARCH_SCREENSHOT_ACCESSIBILITY_LABEL"
desc="Spoken by screen readers when the screenshot gets focus, but not visually rendered. Informs the user that the screenshot will be searched when activated.">
Search this screenshot
</message>
<!-- IPH Strings -->
<message name="IDS_LENS_OVERLAY_TRANSLATE_BUTTON_IPH"
desc="Text that appears in the IPH toast informing the user about the availability of the new translate screen chip in the Lens Overlay that adds functionality to translate the entire screen.">
New! You can translate both text and images on your screen
</message>
<message name="IDS_LENS_OVERLAY_TRANSLATE_BUTTON_IPH_SCREENREADER"
is_accessibility_with_no_ui="true"
desc="Text that appears in the IPH toast informing the user about the availability of the new translate screen chip in the Lens Overlay that adds functionality to translate the entire screen.">
New! You can translate both text and images on your screen by selecting the "translate screen" button
</message>
<message name="IDS_CONTENT_CONTEXT_LENS_OVERLAY"
desc="The name of the Lens overlay command in the content area context menu">
Search with Image Search
</message>
<message name="IDS_CONTENT_LENS_OVERLAY_ENTRYPOINT_LABEL"
desc="The label of the Lens overlay entrypoint in the omnibox">
Image Search
</message>
<message name="IDS_CONTENT_LENS_OVERLAY_HOMEWORK_ENTRYPOINT_LABEL"
desc="The label of the Lens overlay entrypoint in the omnibox offering homework help">
Homework help
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_TOOLBAR_TOOLTIP"
desc="The tooltip for the Lens overlay toolbar button.">
Search with Image Search
</message>
<!-- Lens Side Panel Error Page -->
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_GENERIC_ERROR_PAGE_FIRST_LINE"
desc="Text shown on the side panel for the Lens feature when there is a network or other server error. The texts informs the user that an error has occured.">
Something went wrong
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_GENERIC_ERROR_PAGE_SECOND_LINE"
desc="Text shown on the side panel for the Lens feature when there is a network or other server error. The texts informs the user the panel can not be loaded.">
Couldn't load this panel, try again
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_PROTECTED_PAGE_ERROR_FIRST_LINE"
desc="Text shown on the side panel for the Lens feature when there is are no results being loaded due to the page being protected. The texts informs the user the panel can not be loaded.">
This page is protected
</message>
<message name="IDS_SIDE_PANEL_LENS_OVERLAY_PROTECTED_PAGE_ERROR_SECOND_LINE"
desc="Text shown on the side panel for the Lens feature when there is are no results being loaded due to the page being protected. The text suggests the user try a different page since the current one can not be read.">
Protected pages can't be read. Try a different page.
</message>
<!-- Lens Permission Bubble Dialog-->
<message name="IDS_LENS_PERMISSION_BUBBLE_DIALOG_CANCEL_BUTTON"
desc="Text on the cancel button in the dialog for choosing not to allow the sending of the Lens screenshot to Google.">
Cancel
</message>
<message name="IDS_LENS_PERMISSION_BUBBLE_DIALOG_CONTINUE_BUTTON"
desc="Text on the continue button in the dialog for choosing to allow the sending of the Lens screenshot to Google.">
OK
</message>
<message name="IDS_LENS_PERMISSION_BUBBLE_DIALOG_CSB_DESCRIPTION"
desc="Text that is shown in the Lens permission bubble, giving examples of what Lens can do and informing uawea what information will be sent to the server. Includes placeholder for learn more link.">
When you use Image Search, the page title, URL, and content, including PDFs, are sent to the server. <ph name="LEARN_MORE">$1<ex>Learn more</ex></ph>
</message>
<message name="IDS_LENS_PERMISSION_BUBBLE_DIALOG_DESCRIPTION"
desc="Text that is shown in the Lens permission bubble, giving examples of what Lens can do and informing users that their screenshot will be sent to the server. Includes placeholder for learn more link.">
Identify things or places and copy or translate text. When you use Image Search, a screenshot of the page is sent to the server. <ph name="LEARN_MORE">$1<ex>Learn more</ex></ph>
</message>
<message name="IDS_LENS_PERMISSION_BUBBLE_DIALOG_LEARN_MORE_LINK"
desc="Text link that is shown to users to learn more about privacy in relation to Google Lens.">
Learn more
</message>
<message name="IDS_LENS_PERMISSION_BUBBLE_DIALOG_TITLE"
desc="The title of the lens permission search bubble dialog, introducing Lens as a way to search what's on their screen.">
Search anything on this page
</message>
<!-- Title Case Dependent -->
<if expr="use_titlecase">
<message name="IDS_CONTEXT_MENU_SHOW_GOOGLE_LENS_SHORTCUT"
desc="In Title Case: The text label of the omnibox context menu option to show the 'Search with Google Lens' shortcut button">
Always Show Image Search Shortcut
</message>
<message name="IDS_SHOW_LENS_OVERLAY"
desc="In Title Case: The text label of the Lens overlay menu item">
Search with Image Search
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_SHOW_LENS_OVERLAY" desc="The text label of the Lens overlay menu item">
Search with Image Search
</message>
<message name="IDS_CONTEXT_MENU_SHOW_GOOGLE_LENS_SHORTCUT"
desc="The text label of the omnibox context menu option to show the 'Search with Google Lens' shortcut button">
Always show Image Search shortcut
</message>
</if>
</if>
<!-- OOBE -->
<if expr="is_chromeos">
<message name="IDS_INSTALLING_UPDATE" desc="Label shown on the updates installation screen during OOBE">
Please wait while Chromium installs the latest system updates.
</message>
<message name="IDS_EULA_SCREEN_ACCESSIBLE_TITLE" desc="Title to be spoken on opening the OOBE EULA screen">
ChromiumOS terms
</message>
</if>
<!-- Native notifications for Windows 10 -->
<if expr="is_win">
<message name="IDS_WIN_NOTIFICATION_SETTINGS_CONTEXT_MENU_ITEM_NAME" desc="The name of the button in Windows Notification Center which leads to Chrome notification settings.">
Go to Chromium notification settings
</message>
</if>
<!-- Relaunch notification bubble and dialog. -->
<if expr="not is_android">
<if expr="not is_chromeos">
<message name="IDS_RELAUNCH_RECOMMENDED_TITLE" desc="The title of a dialog that tells users that a browser relaunch is recommended for an update available for some number of days.">
{0, plural,
=0 {A Chromium update is available}
=1 {A Chromium update is available}
other {A Chromium update has been available for # days}}
</message>
<message name="IDS_RELAUNCH_RECOMMENDED_BODY" desc="The body text of a dialog that tells users that a browser relaunch is recommended for an update with Incognito counter.">
{COUNT, plural,
=0 {Your administrator asks that you relaunch Chromium to apply this update}
=1 {Your administrator asks that you relaunch Chromium to apply this update. Your Incognito window won't reopen.}
other {Your administrator asks that you relaunch Chromium to apply this update. Your # Incognito windows won't reopen.}}
</message>
<message name="IDS_RELAUNCH_REQUIRED_TITLE_DAYS" desc="The title of a dialog that tells users the browser must be relaunched within two or more days.">
{0, plural,
=1 {Relaunch Chromium within a day}
other {Relaunch Chromium within # days}}
</message>
<message name="IDS_RELAUNCH_REQUIRED_TITLE_HOURS" desc="The title of a dialog that tells users the browser must be relaunched within one or more hours.">
{0, plural,
=1 {Chromium will relaunch in an hour}
other {Chromium will relaunch in # hours}}
</message>
<message name="IDS_RELAUNCH_REQUIRED_TITLE_MINUTES" desc="The title of a dialog that tells users the browser must be relaunched within one or more minutes.">
{0, plural,
=1 {Chromium will relaunch in 1 minute}
other {Chromium will relaunch in # minutes}}
</message>
<message name="IDS_RELAUNCH_REQUIRED_TITLE_SECONDS" desc="The title of a dialog that tells users the browser must be relaunched within some number of seconds.">
{0, plural,
=0 {Chromium will relaunch now}
=1 {Chromium will relaunch in 1 second}
other {Chromium will relaunch in # seconds}}
</message>
<message name="IDS_RELAUNCH_REQUIRED_BODY" desc="The body text of a dialog that tells users the browser must be relaunched with Incognito counter.">
{COUNT, plural,
=0 {Your administrator requires that you relaunch Chromium to apply an update}
=1 {Your administrator requires that you relaunch Chromium to apply an update. Your Incognito window won't reopen.}
other {Your administrator requires that you relaunch Chromium to apply an update. Your # Incognito windows won't reopen.}}
</message>
</if>
</if>
<!-- Chromium launch blocking dialog. -->
<if expr="not is_android and not is_chromeos">
<message name="IDS_ENTERPRISE_STARTUP_CLOUD_POLICY_ENROLLMENT_TOOLTIP" desc="The information message of Chromium launch blocking dialog for machine level user cloud policy enrollment.">
Launching Chromium...
</message>
<message name="IDS_ENTERPRISE_STARTUP_CLOUD_POLICY_ENROLLMENT_ERROR" desc="The error message of Chromium launch blocking dialog when machine level user cloud policy enrollment failed.">
Couldn't launch Chromium. Try again.
</message>
<message name="IDS_ENTERPRISE_STARTUP_RELAUNCH_BUTTON" desc="The text of relaunch button of Chromium launch blocking dialog.">
Relaunch Chromium
</message>
</if>
<message name="IDS_DESKTOP_MEDIA_PICKER_TITLE_WEB_CONTENTS_ONLY" desc="Title for the window picker dialog shown when desktop capture of a tab is requested by an app.">
Share a Chromium tab
</message>
<!-- Idle timeout bubble. -->
<if expr="toolkit_views">
<message name="IDS_IDLE_BUBBLE_TITLE_CLOSE" desc="Title of a bubble that informs the user that Chrome closed automatically, because they were away from the computer for X minutes.">
Chromium was automatically closed
</message>
<message name="IDS_IDLE_BUBBLE_BODY_CLOSE_AND_CLEAR" desc="Body of a bubble that informs the user that Chromium closed + cleared data automatically, because they were away from the computer for X minutes.">
Your organization closes Chromium when it isn't used for <ph name="TIMEOUT_DURATION">$1<ex>30 minutes</ex></ph>. Browsing data was deleted. This could include history, autofill, and downloads.
</message>
<message name="IDS_IDLE_BUBBLE_BODY_CLEAR" desc="Body of a bubble that informs the user that Chromium cleared data automatically, because they were away from the computer for X minutes.">
Your organization deletes Chromium data when it isn't used for <ph name="TIMEOUT_DURATION">$1<ex>30 minutes</ex></ph>. This could include history, autofill, and downloads.
</message>
<message name="IDS_IDLE_BUBBLE_BODY_CLOSE" desc="Body of a bubble that informs the user that Chromium closed automatically, because they were away from the computer for X minutes.">
Your organization closes Chromium when it isn't used for <ph name="TIMEOUT_DURATION">$1<ex>30 minutes</ex></ph>.
</message>
</if>
<!-- Idle timeout dialog. -->
<if expr="not is_android and not is_chromeos">
<message name="IDS_IDLE_TIMEOUT_CLOSE_TITLE" desc="Title of the Idle Timeout dialog, warning the user that their windows are about to close.">
Chromium will soon close
</message>
<message name="IDS_IDLE_TIMEOUT_CLEAR_TITLE" desc="Title of the Idle Timeout dialog, warning the user that their browsing data will be lost soon.">
Chromium will soon delete browsing data
</message>
<message name="IDS_IDLE_TIMEOUT_CLOSE_AND_CLEAR_TITLE" desc="Title of the Idle Timeout dialog, warning the user that their windows are about to close and their browsing data will be lost.">
Chromium will soon close and delete data
</message>
<message name="IDS_IDLE_TIMEOUT_CLOSE_BODY" desc="First sentence in the Idle Timeout dialog, warning the user that Chromium is going to close automatically.">
{COUNT, plural,
=1 {Your organization automatically closes Chromium when it isn't used for 1 minute.}
other {Your organization automatically closes Chromium when it isn't used for # minutes.}}
</message>
<message name="IDS_IDLE_TIMEOUT_CLEAR_BODY" desc="First sentence in the Idle Timeout dialog, warning the user that Chromium is going to clear data automatically.">
{COUNT, plural,
=1 {Your organization automatically deletes browsing data when Chromium isn't used for 1 minute. This could include history, autofill, and downloads. Your tabs will stay open.}
other {Your organization automatically deletes browsing data when Chromium isn't used for # minutes. This could include history, autofill, and downloads. Your tabs will stay open.}}
</message>
<message name="IDS_IDLE_TIMEOUT_CLOSE_AND_CLEAR_BODY" desc="First sentence in the Idle Timeout dialog, warning the user that Chromium is going to close and clear data automatically.">
{COUNT, plural,
=1 {Your organization automatically closes Chromium when it isn't used for 1 minute. Browsing data is deleted. This could include history, autofill, and downloads.}
other {Your organization automatically closes Chromium when it isn't used for # minutes. Browsing data is deleted. This could include history, autofill, and downloads.}}
</message>
<message name="IDS_IDLE_DISMISS_BUTTON" desc="Button label in the Idle Timeout dialog, this button dismisses the dialog and prevents browsers from closing automatically.">
Continue using Chromium
</message>
</if>
<!-- User happiness tracking survey UI -->
<if expr="not is_android">
<message name="IDS_HATS_BUBBLE_TITLE" translateable="false" desc="The title of Happiness Tracking Survey's invitation banner, it invites users to take a survey">
Help us improve Chromium
</message>
</if>
<!-- HaTS invitations on Android -->
<if expr="is_android">
<message name="IDS_MESSAGE_ACT_SURVEY_INVITATION" desc="Survey invitation text that's shown in a pop up. The user can then ignore the invitation or accept it, which will cause the survey to be shown.">
Help us improve Incognito by taking this 1 minute survey.
</message>
</if>
<!-- Chrome parent extension/app install blocking dialog. -->
<if expr="enable_extensions">
<message name="IDS_EXTENSION_PERMISSIONS_BLOCKED_BY_PARENT_PROMPT_MESSAGE" desc="Text for the dialog indicating that a parent has blocked extensions and apps.">
Your parent has turned off "Permissions for sites, apps and extensions" for Chromium
</message>
</if>
<if expr="not is_chromeos and not is_android">
<!-- Enterprise profile welcome screen -->
<message name="IDS_ENTERPRISE_WELCOME_PROFILE_INFORMATION_DETAILS" desc="Paragraph disclaiming to the user what their organization can do with their profile information.">
Your organization can see and manage browsing data, such as your bookmarks, history, and passwords. It can't see browsing data in other Chromium profiles
</message>
<!-- Profile Picker -->
<message name="IDS_PROFILE_PICKER_MAIN_VIEW_TITLE" desc="Profile picker main view title">
Welcome to Chromium profiles
</message>
<message name="IDS_PROFILE_PICKER_MAIN_VIEW_TITLE_V2" desc="Title of a screen that lets the user choose which profile to use when browsing the web. *If the EN source doesn't translate well in your language, an alternative string 'Which Chromium profile would you like to use?' may be used instead">
Who's using Chromium?
</message>
<message name="IDS_PROFILE_PICKER_MAIN_VIEW_SUBTITLE" desc="Profile picker main view subtitle">
With Chromium profiles, you can separate all your Chromium stuff. Create profiles for friends and family, or split between work and fun.
</message>
<message name="IDS_PROFILE_PICKER_PROFILE_CREATION_FLOW_PROFILE_TYPE_CHOICE_TITLE" desc="Profile picker profile type choice title">
Set up your new Chromium profile
</message>
<message name="IDS_PROFILE_PICKER_IPH_FOR_PROFILES_TEXT" desc="Text of the IPH bubble for introducing profiles.">
Each profile holds its own Chromium info like bookmarks, history, passwords, and more
</message>
<message name="IDS_PROFILE_PICKER_IPH_FOR_ADD_PROFILE_TEXT" desc="Text of the IPH bubble for adding new profiles.">
If you share a device, friends and family can browse separately and set up Chromium just the way they want
</message>
<message name="IDS_PROFILE_PICKER_PROFILE_SWITCH_TITLE" desc="Profile picker profile switch title">
Switch to existing Chromium profile?
</message>
<message name="IDS_PROFILE_PICKER_PROFILE_SWITCH_SUBTITLE" desc="Profile picker profile switch subtitle">
A Chromium profile with this account already exists on this device
</message>
<message name="IDS_PROFILE_PICKER_FORCE_SIGN_IN_ERROR_DIALOG_NOT_SUPPORTED_BY_GLIC_FLOW_BODY" desc="Body of the force sign in error dialog, the dialog is shown when the user attempts to reauth a profile while in the Glic version. This flow is not supported in this version of the picker. The overall purpose of the dialog is to redirect the user to the regular picker to finalize the reauth." translateable="false">
To use this profile with Glic, open Chromium and sign in
</message>
<!-- First Run Experience -->
<message name="IDS_FRE_SIGN_IN_TITLE_0"
desc="This string appears as a heading on a full-page screen that asks the user to sign in to Chromium with their Google Account. It appears when the user launches Chromium for the first time. When they sign in, they can personalize and customize Chromium and remember their settings in their Google Account. The tone should be inviting and alluring.">
Sign in to Chromium
</message>
<!-- Default Browser Promo -->
<message name="IDS_FRE_DEFAULT_BROWSER_TITLE" desc="Title for the page that prompts user to set Chromium as their default browser in the first run experience.">
Set Chromium as your default browser
</message>
<message name="IDS_FRE_DEFAULT_BROWSER_AND_PINNING_TITLE" desc="Title for the page that prompts user to set Chromium as their default browser and pin to taskbar in the first run experience.">
Use Chromium by default and get it pinned
</message>
<message name="IDS_FRE_DEFAULT_BROWSER_SUBTITLE_NEW" desc="Subtitle for the page that prompts user to set Chromium as their default browser in the first run experience.">
Use Chromium anytime you click links in messages, documents, and other apps
</message>
<message name="IDS_FRE_DEFAULT_BROWSER_AND_PINNING_SUBTITLE" desc="Subtitle for the page that prompts user to set Chromium as their default browser and pin to taskbar in the first run experience.">
Open links in Chromium from any app. Plus for easy access, it gets pinned to your taskbar.
</message>
<message name="IDS_FRE_DEFAULT_BROWSER_ILLUSTRATION_ALT_TEXT" desc="Alt text for the illustration in the page that prompts user to set Chromium as their default browser.">
Chromium logo inside a computer screen.
</message>
<message name="IDS_APP_MENU_TOOLTIP_DEFAULT_PROMPT" desc="The tooltip to show for the browser menu when the default browser prompt is displayed">
Customize and control Chromium. Set Chromium as your default.
</message>
<message name="IDS_APP_MENU_BUTTON_DEFAULT_PROMPT" desc="Text in the browser menu chip indicating that the user can change their default browser">
Set Chromium as your default
</message>
<message name="IDS_SET_BROWSER_AS_DEFAULT_MENU_ITEM" desc="Menu item that prompts user to set Chromium as their default browser.">
Set Chromium as your default browser
</message>
<!-- Profile switch IPH -->
<message name="IDS_PROFILE_SWITCH_PROMO" desc="Text of the In-Product-Help bubble for profile switching.">
You can switch between Chromium profiles here
</message>
<message name="IDS_PROFILE_SWITCH_PROMO_SCREENREADER" desc="Text announced by screenreaders to explain how to switch between profiles.">
<ph name="SHORTCUT">$1<ex>CTRL+SHIFT+M</ex></ph> can switch between Chromium profiles
</message>
<message name="IDS_PASSWORD_MANAGER_IPH_BODY_WEB_APP_PROFILE_SWITCH" desc="Body of the in Product Help for profile switching shown in the password manager web app.">
You can switch to see passwords from another Chromium profile
</message>
<!-- Web Signout Intercept IPH -->
<message name="IDS_SIGNOUT_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNOUT_IPH_TEXT" desc="This confirmation message is intended to help users to understand that signing out of a Google service (like Gmail) will not sign them out of Chromium. It appears in a blue in-product help bubble, which points to the Chromium Profile Menu; it appears after the user signs out of a Google service (like Gmail). The user can open the Profile Menu and sign out of Chromium, if they wish to do so.">
To remove your Google Account from Chromium, sign out
</message>
<message name="IDS_SIGNOUT_DICE_WEB_INTERCEPT_BUBBLE_CHROME_SIGNOUT_IPH_TEXT_SCREENREADER" desc="Text announced by screenreaders related to the confirmation message is intended to help users to understand that signing out of a Google service (like Gmail) will not sign them out of Chromium. It appears in a blue in-product help bubble, which points to the Chromium Profile Menu; it appears after the user signs out of a Google service (like Gmail). The user can open the Profile Menu and sign out of Chromium, if they wish to do so.">
To remove your Google Account from Chromium, sign out of Chromium in the Settings page
</message>
</if>
<!-- Notification quiet permission IPH -->
<message name="IDS_QUIET_NOTIFICATION_IPH_TEXT" desc="Text of the blocked notifications indicator promo, that shows under the blocked notifications indicator in the address bar, when a site requests notifications permission. The promo informs the user that as a result of them usually blocking notifications, the request from the site is automatically blocked, and the user can click on the icon to allow notifications.">
You usually block notifications. To let this site notify you, click here.
</message>
<message name="IDS_QUIET_NOTIFICATION_IPH_TEXT_SCREENREADER" desc="Text of the blocked notifications indicator promo, that shows under the blocked notifications indicator in the address bar, when a site requests notifications permission. The promo informs the user that as a result of them usually blocking notifications, the request from the site is automatically blocked, and the user can click on the icon to allow notifications.">
You usually block notifications. To let this site notify you, click the notification icon on the right corner of your location bar.
</message>
<!-- ChromeLabs bubble -->
<message name="IDS_CHROMELABS_RELAUNCH_FOOTER_MESSAGE" desc="Text that shows in the footer of the Chrome Labs bubble when relaunch is needed for changes to take effect.">
Your changes will take effect the next time you relaunch Chromium.
</message>
<!-- Device Chooser Prompt -->
<message name="IDS_SERIAL_DEVICE_CHOOSER_AUTHORIZE_BLUETOOTH" desc="Text shown in the Web Serial Chooser when browser does not have Bluetooth permission. The ' ' is a newline character to force the desired line wrapping.">
Chromium needs Bluetooth access to explore Bluetooth devices. <ph name="IDS_SERIAL_DEVICE_CHOOSER_AUTHORIZE_BLUETOOTH_LINK">$1<ex>Open Preferences</ex></ph>
</message>
<!-- Tailored Security -->
<message name="IDS_TAILORED_SECURITY_UNCONSENTED_PROMOTION_NOTIFICATION_TITLE" desc="Title of notification prompting the user to enable Enhanced Safe Browsing after they have enabled account-level protections.">
Get Chromium's strongest security
</message>
<message name="IDS_TAILORED_SECURITY_UNCONSENTED_PROMOTION_MESSAGE_TITLE" desc="Title shown in the message shown when a user changes their account-level tailored security setting encouraging them to enable Enhanced Safe Browsing">
Get Chromium's strongest security
</message>
<message name="IDS_TAILORED_SECURITY_UNCONSENTED_PROMOTION_MESSAGE_DESCRIPTION" desc="Description shown in the message shown when a user changes their account-level tailored security setting encouraging them to enable Enhanced Safe Browsing">
Enhanced protection does more to block phishing and malware
</message>
<message name="IDS_TAILORED_SECURITY_UNCONSENTED_PROMOTION_MESSAGE_DESCRIPTION_UPDATED" desc="Description shown in the message shown when a user changes their account-level tailored security setting encouraging them to enable Enhanced Safe Browsing">
Enhanced Safe Browsing does more to protect you against dangerous websites and downloads
</message>
<message name="IDS_TAILORED_SECURITY_UNCONSENTED_PROMOTION_MESSAGE_ACCEPT" desc="Accept button shown in the message shown when a user changes their account-level tailored security setting encouraging them to enable Enhanced Safe Browsing">
Continue
</message>
<!-- Advanced security settings -->
<message name="IDS_SETTINGS_SECURITY_JAVASCRIPT_OPTIMIZATION_LINK_ROW_ENABLED" desc="Description for the link row of the Javascript-optimization page when javascript-optimization is enabled.">
Speeds up sites with Chromium's V8 engine but makes Chromium slightly less resistant to attacks. This setting is on.
</message>
<message name="IDS_SETTINGS_SECURITY_JAVASCRIPT_OPTIMIZATION_LINK_ROW_DISABLED" desc="Description for the link row of the Javascript-optimization page when javascript-optimization is disabled.">
Speeds up sites with Chromium's V8 engine but makes Chromium slightly less resistant to attacks. This setting is off.
</message>
<message name="IDS_SETTINGS_SITE_SETTINGS_JAVASCRIPT_OPTIMIZER_DESCRIPTION" desc="Description of the JavaScript optimizer content setting.">
V8 is Chromium’s JavaScript and WebAssembly engine used to improve site performance
</message>
<message name="IDS_SETTINGS_SITE_SETTINGS_JAVASCRIPT_OPTIMIZER_ALLOWED_SUB_LABEL" desc="Sub-label for the enabled option of the JavaScript optimizer content setting.">
Chromium runs faster and features that use JavaScript should work as designed (recommended)
</message>
<!-- ChromiumUpdater Strings -->
<if expr="is_win">
<message name="IDS_FRIENDLY_COMPANY_NAME" desc="Company name" translateable="false">
Chromium
</message>
<message name="IDS_NO_UPDATE_RESPONSE" desc="Updater response for no updates when handling install result.">
No update is available.
</message>
<message name="IDS_INSTALL_UPDATER_FAILED" desc="Updater response for failure when handling install result.">
Installation failed. Please try again.
</message>
<message name="IDS_INSTALLER_DISPLAY_NAME" desc="Name for the updater metainstaller.">
<ph name="COMPANY_NAME">$1<ex>Chromium</ex></ph> Installer
</message>
<message name="IDS_CLOSE_BUTTON" desc="Close button tooltip">
Close
</message>
<message name="IDS_MINIMIZE_BUTTON" desc="Minimize button tooltip">
Minimize
</message>
<message name="IDS_INITIALIZING" desc="Initial message for the progress window.">
Initializing...
</message>
<message name="IDS_WAITING_TO_CONNECT" desc="Message to show while checking for updates.">
Connecting to the Internet...
</message>
<message name="IDS_DOWNLOADING_SHORT" desc="Shows how many seconds are remaining in the download.">
Downloading... <ph name="SECONDS">$1<ex>0</ex></ph> second(s) remaining
</message>
<message name="IDS_DOWNLOADING_LONG" desc="Shows how many minutes are remaining in the download.">
Downloading... <ph name="MINUTE">$1<ex>0</ex></ph> minute(s) remaining
</message>
<message name="IDS_DOWNLOADING_VERY_LONG" desc="Shows how many hours are remaining in the download.">
Downloading... <ph name="HOURS">$1<ex>0</ex></ph> hour(s) remaining
</message>
<message name="IDS_DOWNLOADING_COMPLETED" desc="For when donwload is completed.">
Download complete.
</message>
<message name="IDS_DOWNLOADING" desc="For when time remaining is less than 0.">
Downloading...
</message>
<message name="IDS_WAITING_TO_INSTALL" desc="While waiting to install between downloading and installing.">
Waiting to install...
</message>
<message name="IDS_INSTALLING" desc="Message shown during install.">
Installing...
</message>
<message name="IDS_CANCELING" desc="For when requesting to cancel the installation.">
Canceling...
</message>
<message name="IDS_TEXT_RESTART_BROWSER" desc="For when a browser must be restarted to complete the installation.">
Thanks for installing. You must restart your browser before using <ph name="BUNDLE_NAME">$1<ex>Chromium</ex></ph>.
</message>
<message name="IDS_TEXT_RESTART_ALL_BROWSERS" desc="For when all browsers must be restarted to complete the installation.">
Thanks for installing. You must restart all your browsers before using <ph name="BUNDLE_NAME">$1<ex>Chromium</ex></ph>.
</message>
<message name="IDS_TEXT_RESTART_COMPUTER" desc="For when the computer must be restarted to complete the installation.">
Thanks for installing. You must restart your computer before using <ph name="BUNDLE_NAME">$1<ex>Chromium</ex></ph>.
</message>
<message name="IDS_UPDATER_CLOSE" desc="For close button on the UI post install completion.">
Close
</message>
<message name="IDS_RESTART_NOW" desc="For button to restart now to complete installation.">
Restart Now
</message>
<message name="IDS_RESTART_LATER" desc="For button to restart later to complete installation.">
Restart Later
</message>
<message name="IDS_GET_HELP_TEXT" desc="For button to get help.">
Help
</message>
<message name="IDS_INSTALLATION_STOPPED_WINDOW_TITLE" desc="For dialog when user chooses to close the installation window.">
Installation Stopped.
</message>
<message name="IDS_INSTALL_STOPPED" desc="Message of the dialog when user chooses to close the installation window.">
Installation not complete. Are you sure you want to cancel?
</message>
<message name="IDS_RESUME_INSTALLATION" desc="For button to resume the installation.">
Resume Installation
</message>
<message name="IDS_CANCEL_INSTALLATION" desc="For button to cancel the installation.">
Cancel Installation
</message>
<message name="IDS_BUNDLE_INSTALLED_SUCCESSFULLY" desc="Installation complete message.">
Installation complete.
</message>
<message name="IDS_UPDATER_OS_NOT_SUPPORTED" desc="Error displayed if the OS is not supported">
Installation failed because your version of Windows is not supported.
</message>
<!--extra code-->
<message name="IDS_EXTRA_CODE"
desc="The optional extra code for any of the errors below">
Extra code: <ph name="EXTRA_CODE">$1<ex>0x80071234</ex></ph>.
</message>
<!--Startup errors.-->
<message name="IDS_UNABLE_TO_GET_SETUP_LOCK"
desc="Error message displayed in the main dialog when the updater is unable to get the setup lock at startup.">
Startup error: another instance of setup is currently running, please try again later.
</message>
<message name="IDS_WRONG_USER_ELEVATION_REQUIRED_ERROR"
desc="Error message displayed in the main dialog when the updater is run without administrative privileges to install a per-system application.">
Startup error: please run the installer as administrator.
</message>
<message name="IDS_WRONG_USER_DEELEVATION_REQUIRED_ERROR"
desc="Error message displayed in the main dialog when the updater is run with administrative privileges to install a per-user application.">
Startup error: please run the installer as a regular user, not as administrator.
</message>
<message name="IDS_GENERIC_STARTUP_ERROR"
desc="Error message displayed in the main dialog when an error is encountered at startup of the updater.">
Startup error: <ph name="STARTUP_ERROR">$1<ex>error-internal</ex></ph>.
</message>
<!--Network errors.-->
<message name="IDS_NO_NETWORK_PRESENT_ERROR"
desc="Error message displayed in the main dialog when the Updater is unable to connect to the network.">
Unable to connect to the Internet. If you use a firewall, please ensure <ph name="PRODUCT_EXE_NAME">$1<ex>ChromiumUpdater.exe</ex></ph> is in the allowlist.
</message>
<message name="IDS_ERROR_HTTPSTATUS_UNAUTHORIZED"
desc="Error message displayed in the main dialog when an update check or download fails due to unauthorized access, usually due to proxy problems.">
Unable to connect to the Internet. HTTP 401 Unauthorized. Please check your proxy configuration.
</message>
<message name="IDS_ERROR_HTTPSTATUS_FORBIDDEN"
desc="Error message displayed in the main dialog when an update check or download fails due to forbidden access, usually due to proxy problems.">
Unable to connect to the Internet. HTTP 403 Forbidden. Please check your proxy configuration.
</message>
<message name="IDS_ERROR_HTTPSTATUS_PROXY_AUTH_REQUIRED"
desc="Error message displayed in the main dialog when an update check or download fails due to a need for proxy authentication.">
Unable to connect to the Internet. Proxy server requires authentication.
</message>
<!--Update server response errors.-->
<message name="IDS_UNKNOWN_APPLICATION"
desc="Error message displayed in the main dialog when the server responds with an error of unknown application.">
Unable to install, the application is unknown to the server.
</message>
<message name="IDS_RESTRICTED_RESPONSE_FROM_SERVER"
desc="Error message displayed in the main dialog when the user is in a export-restricted country.">
Installation failed because access is restricted in this country.
</message>
<message name="IDS_OS_NOT_SUPPORTED"
desc="Error message displayed in the main dialog when the OS does not meet the application's requirements.">
Installation failed because this version of the operating system is not supported.
</message>
<message name="IDS_HW_NOT_SUPPORTED"
desc="Error message displayed in the main dialog when the computer does not meet the application's minimum hardware requirements.">
Installation failed because your computer does not meet the minimum hardware requirements.
</message>
<message name="IDS_NO_HASH"
desc="Error message displayed in the main dialog when the server does not have the application installer's hash.">
Installation failed because the update server does not have any hash data for the application.
</message>
<message name="IDS_UNSUPPORTED_PROTOCOL"
desc="Error message displayed in the main dialog for protocols that do not support multiple packages.">
Installation failed because of an unsupported protocol error.
</message>
<message name="IDS_INTERNAL"
desc="Error message displayed in the main dialog when the update server encounters an internal error.">
Installation failed because of an update server internal error.
</message>
<message name="IDS_GENERIC_UPDATE_CHECK_ERROR"
desc="Error message displayed in the main dialog when the update client returns an error in the update check.">
Update check error: <ph name="UPDATE_CHECK_ERROR">$1<ex>error-internal</ex></ph>.
</message>
<!--Download errors.-->
<message name="IDS_DOWNLOAD_HASH_MISMATCH"
desc="Error message displayed in the main dialog when the downloaded file fails hash verification.">
The downloaded file failed verification.
</message>
<message name="IDS_GENERIC_DOWNLOAD_ERROR"
desc="Error message displayed in the main dialog when the update client returns an error while downloading.">
Download error: <ph name="DOWNLOAD_ERROR">$1<ex>error-internal</ex></ph>.
</message>
<!--Unpack errors.-->
<message name="IDS_UNPACK_CACHING_ERROR"
desc="Error message displayed in the main dialog when the update client fails to cache the installer.">
Failed to cache the downloaded installer. Error: <ph name="UNPACK_CACHING_ERROR_CODE">$1<ex>0x80070005</ex></ph>.
</message>
<message name="IDS_GENERIC_UNPACK_ERROR"
desc="Error message displayed in the main dialog when the update client returns an error while unpacking.">
Unpack error: <ph name="UNPACK_ERROR">$1<ex>error-internal</ex></ph>.
</message>
<!--Service errors.-->
<message name="IDS_SERVICE_ERROR_CANCELLED"
desc="Error message displayed in the main dialog when the installation is cancelled.">
The installation has been cancelled.
</message>
<message name="IDS_GENERIC_SERVICE_ERROR"
desc="Error message displayed in the main dialog for runtime errors that occur in the update client service.">
Service error: <ph name="SERVICE_ERROR">$1<ex>error-internal</ex></ph>.
</message>
<!--update_client install errors.-->
<message name="IDS_GENERIC_INSTALL_ERROR"
desc="Error message displayed in the main dialog if update client encounters an error while installing.">
Install error: <ph name="INSTALL_ERROR">$1<ex>error-internal</ex></ph>
</message>
<!--Installer errors.-->
<message name="IDS_GENERIC_INSTALLER_ERROR"
desc="Error message displayed in the main dialog when the application installer returns an error.">
Installer error: <ph name="INSTALLER_ERROR">$1<ex>error-internal</ex></ph>
</message>
<message name="IDS_INSTALL_REBOOT"
desc="Message displayed in the main dialog when a system reboot is required or has been initiated after installing.">
Reboot required: <ph name="INSTALL_SUCCESS">$1<ex>success-message-internal</ex></ph>
</message>
<message name="IDS_APP_INSTALL_DISABLED_BY_GROUP_POLICY"
desc="Error message displayed in the main dialog when an IT admin has disabled installation or update of this application using Windows Group Policy.">
Install error: Your network administrator has applied a Group Policy that prevents installation: <ph name="INSTALL_ERROR">$1<ex>error-internal</ex></ph>
</message>
<message name="IDS_INVALID_INSTALLER_FILENAME"
desc="Error message displayed in the main dialog when the application installer's filename or extension is invalid or unsupported.">
Install error: The installer filename is invalid or unsupported.
</message>
<message name="IDS_INSTALLER_FAILED_TO_START"
desc="Error message displayed in the main dialog when the application installer process fails to start.">
Install error: The installer process failed to start.
</message>
<message name="IDS_INSTALLER_TIMED_OUT"
desc="Error message displayed in the main dialog when the application installer does not complete in the allowed amount of time.">
Install error: The installer did not complete. The installation has been aborted.
</message>
<!--Metainstaller errors.-->
<message name="IDS_GENERIC_METAINSTALLER_ERROR"
desc="Error message displayed when the metainstaller returns an error.">
Setup error: <ph name="METAINSTALLER_EXIT_CODE">$1<ex>error-internal</ex></ph>. <ph name="WINDOWS_ERROR">$2<ex>windows-error-description</ex></ph>
</message>
<message name="IDS_FAILED_TO_ELEVATE_METAINSTALLER" desc="Error displayed if the metainstaller could not be run with elevated privileges for a system install">
Failed to run setup with elevated privileges. <ph name="METAINSTALLER_ERROR">$1<ex>error-internal</ex></ph>
</message>
<!--Windows service strings.-->
<message name="IDS_UPDATER_SERVICE_DISPLAY_NAME"
desc="The name of the Windows service. Displayed in the Windows Services management console.">
Chromium Updater Service
</message>
<message name="IDS_INTERNAL_UPDATER_SERVICE_DISPLAY_NAME"
desc="The name of the internal Windows service. Displayed in the Windows Services management console.">
Chromium Updater Internal Service
</message>
<message name="IDS_UPDATER_SERVICE_DESCRIPTION"
desc="The description of the Windows service. Displayed in the Windows Services management console.">
Keeps your Chromium software up to date. If this service is disabled or stopped, your Chromium software will not be kept up to date, meaning security vulnerabilities that may arise cannot be fixed and features may not work. This service uninstalls itself when there is no Chromium software using it.
</message>
</if>
<!-- Memory Saver Chip strings -->
<if expr="not is_android">
<message name="IDS_MEMORY_SAVER_DIALOG_BODY" desc="Body text for a dialog describing that Memory Saver mode will use less memory.">
While this tab was inactive, memory was freed up to keep Chromium fast. You can choose to always exclude this site from being inactive.
</message>
</if>
<!-- Memory Saver IPH strings -->
<if expr="not is_android">
<if expr="use_titlecase">
<message name="IDS_MEMORY_SAVER_MODE_PROMO_TITLE" desc="In Title Case: The title for the Memory Saver mode in-product promo bubble">
Make Chromium Faster
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_MEMORY_SAVER_MODE_PROMO_TITLE" desc="The title for the Memory Saver mode in-product promo bubble">
Make Chromium faster
</message>
</if>
</if>
<!-- Performance Intervention Dialog strings -->
<if expr="not is_android">
<message name="IDS_PERFORMANCE_INTERVENTION_DIALOG_BODY_V1" desc="Body text for a dialog suggesting users to deactivate certain tabs to improve performance.">
These tabs are using extra resources. To improve your performance, let Chromium make them inactive.
</message>
<message name="IDS_PERFORMANCE_INTERVENTION_DIALOG_BODY_SINGULAR_V1" desc="Body text for a dialog suggesting users to deactivate certain tabs to improve performance.">
This tab is using extra resources. To improve your performance, let Chromium make it inactive.
</message>
<if expr="use_titlecase">
<message name="IDS_PERFORMANCE_INTERVENTION_DIALOG_TITLE_UPDATED_V3" desc="Title text for a dialog with information on tabs that could be causing performance issues.">
{NUM_TABS, plural,
=1 {Chromium Recommends Pausing the Tab Slowing Your Browser}
other {Chromium Recommends Pausing the Tabs Slowing Your Browser}}
</message>
</if>
<if expr="not use_titlecase">
<message name="IDS_PERFORMANCE_INTERVENTION_DIALOG_TITLE_UPDATED_V3" desc="Title text for a dialog with information on tabs that could be causing performance issues.">
{NUM_TABS, plural,
=1 {Chromium recommends pausing the tab slowing your browser}
other {Chromium recommends pausing the tabs slowing your browser}}
</message>
</if>
</if>
<!-- Delete Browsing Data -->
<message name="IDS_SETTINGS_CLEAR_BROWSING_DATA_SIGNED_IN" desc="Description in the footer of the Delete Browsing Data dialog when the user is signed.">
To delete browsing data from this device only, while keeping it in your Google Account, <ph name="BEGIN_LINK"><a href="#" target="_blank"></ph>sign out of Chromium<ph name="END_LINK"></a></ph>.
</message>
<!-- New Create Shortcut View Strings -->
<if expr="not is_android and not is_chromeos">
<message name="IDS_CREATE_SHORTCUT_NOT_APPS_DIALOG_SUBTITLE" desc="Subtitle of the updated Create Shortcut dialog about how the site opens for Chromium">
Shortcuts open in Chromium
</message>
</if>
<if expr="is_macosx">
<message name="IDS_CHROMIUM_SHORCUT_DESCRIPTION" desc="Text to use as description for the '.crwebloc' file format, which is generated by the 'Save and Share' -> 'Create Shortcut' flow.">
Chromium Shortcut
</message>
</if>
<!-- Toast Strings-->
<if expr="not is_android">
<message name="IDS_CLEAR_BROWSING_DATA_TOAST_BODY" desc="Text on a toast notification that is shown when browsing data is successfully cleared.">
Cleared Chromium data
</message>
</if>
<!-- UNO Promo strings for extensions -->
<if expr="enable_extensions">
<message name="IDS_EXTENSION_INSTALLED_PROMO_EXPLICIT_SIGNIN_MESSAGE" desc="Text of the promo displayed at the bottom of the extension installed bubble asking the user to enable UNO.">
To get this extension and more on all your computers, sign in to Chromium
</message>
</if>
<!-- UNO Promo strings for bookmarks -->
<message name="IDS_BOOKMARK_INSTALLED_PROMO_EXPLICIT_SIGNIN_MESSAGE" desc="Text of the promo displayed at the bottom of the bookmark bubble asking the user to enable UNO.">
To get this bookmark and more on all your devices, sign in to Chromium
</message>
</messages>
</release>
</grit>
|