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
|
<?xml version="1.0" encoding="UTF-8"?>
<grit base_dir="." current_release="1" enc_check="möl" latest_public_release="0" source_lang_id="en">
<outputs>
<output filename="_locales/am/messages.json" type="chrome_messages_json" lang="am"/>
<output filename="_locales/ar/messages.json" type="chrome_messages_json" lang="ar"/>
<output filename="_locales/bg/messages.json" type="chrome_messages_json" lang="bg"/>
<output filename="_locales/bn/messages.json" type="chrome_messages_json" lang="bn"/>
<output filename="_locales/ca/messages.json" type="chrome_messages_json" lang="ca"/>
<output filename="_locales/cs/messages.json" type="chrome_messages_json" lang="cs"/>
<output filename="_locales/da/messages.json" type="chrome_messages_json" lang="da"/>
<output filename="_locales/de/messages.json" type="chrome_messages_json" lang="de"/>
<output filename="_locales/el/messages.json" type="chrome_messages_json" lang="el"/>
<output filename="_locales/en_GB/messages.json" type="chrome_messages_json" lang="en-GB"/>
<output filename="_locales/en/messages.json" type="chrome_messages_json" lang="en"/>
<output filename="_locales/es/messages.json" type="chrome_messages_json" lang="es"/>
<output filename="_locales/es_419/messages.json" type="chrome_messages_json" lang="es-419"/>
<output filename="_locales/et/messages.json" type="chrome_messages_json" lang="et"/>
<output filename="_locales/fa/messages.json" type="chrome_messages_json" lang="fa"/>
<output filename="_locales/fi/messages.json" type="chrome_messages_json" lang="fi"/>
<output filename="_locales/fil/messages.json" type="chrome_messages_json" lang="fil"/>
<output filename="_locales/fr/messages.json" type="chrome_messages_json" lang="fr"/>
<output filename="_locales/gu/messages.json" type="chrome_messages_json" lang="gu"/>
<output filename="_locales/he/messages.json" type="chrome_messages_json" lang="he"/>
<output filename="_locales/hi/messages.json" type="chrome_messages_json" lang="hi"/>
<output filename="_locales/hr/messages.json" type="chrome_messages_json" lang="hr"/>
<output filename="_locales/hu/messages.json" type="chrome_messages_json" lang="hu"/>
<output filename="_locales/id/messages.json" type="chrome_messages_json" lang="id"/>
<output filename="_locales/it/messages.json" type="chrome_messages_json" lang="it"/>
<output filename="_locales/ja/messages.json" type="chrome_messages_json" lang="ja"/>
<output filename="_locales/kn/messages.json" type="chrome_messages_json" lang="kn"/>
<output filename="_locales/ko/messages.json" type="chrome_messages_json" lang="ko"/>
<output filename="_locales/lt/messages.json" type="chrome_messages_json" lang="lt"/>
<output filename="_locales/lv/messages.json" type="chrome_messages_json" lang="lv"/>
<output filename="_locales/ml/messages.json" type="chrome_messages_json" lang="ml"/>
<output filename="_locales/mr/messages.json" type="chrome_messages_json" lang="mr"/>
<output filename="_locales/ms/messages.json" type="chrome_messages_json" lang="ms"/>
<output filename="_locales/nl/messages.json" type="chrome_messages_json" lang="nl"/>
<output filename="_locales/nb/messages.json" type="chrome_messages_json" lang="no"/>
<output filename="_locales/pl/messages.json" type="chrome_messages_json" lang="pl"/>
<output filename="_locales/pt_BR/messages.json" type="chrome_messages_json" lang="pt-BR"/>
<output filename="_locales/pt_PT/messages.json" type="chrome_messages_json" lang="pt-PT"/>
<output filename="_locales/ro/messages.json" type="chrome_messages_json" lang="ro"/>
<output filename="_locales/ru/messages.json" type="chrome_messages_json" lang="ru"/>
<output filename="_locales/sk/messages.json" type="chrome_messages_json" lang="sk"/>
<output filename="_locales/sl/messages.json" type="chrome_messages_json" lang="sl"/>
<output filename="_locales/sr/messages.json" type="chrome_messages_json" lang="sr"/>
<output filename="_locales/sv/messages.json" type="chrome_messages_json" lang="sv"/>
<output filename="_locales/sw/messages.json" type="chrome_messages_json" lang="sw"/>
<output filename="_locales/ta/messages.json" type="chrome_messages_json" lang="ta"/>
<output filename="_locales/te/messages.json" type="chrome_messages_json" lang="te"/>
<output filename="_locales/th/messages.json" type="chrome_messages_json" lang="th"/>
<output filename="_locales/tr/messages.json" type="chrome_messages_json" lang="tr"/>
<output filename="_locales/uk/messages.json" type="chrome_messages_json" lang="uk"/>
<output filename="_locales/vi/messages.json" type="chrome_messages_json" lang="vi"/>
<output filename="_locales/zh_CN/messages.json" type="chrome_messages_json" lang="zh-CN"/>
<output filename="_locales/zh_TW/messages.json" type="chrome_messages_json" lang="zh-TW"/>
</outputs>
<translations>
<file path="chromevox_strings_am.xtb" lang="am" />
<file path="chromevox_strings_ar.xtb" lang="ar" />
<file path="chromevox_strings_bg.xtb" lang="bg" />
<file path="chromevox_strings_bn.xtb" lang="bn" />
<file path="chromevox_strings_ca.xtb" lang="ca" />
<file path="chromevox_strings_cs.xtb" lang="cs" />
<file path="chromevox_strings_da.xtb" lang="da" />
<file path="chromevox_strings_de.xtb" lang="de" />
<file path="chromevox_strings_el.xtb" lang="el" />
<file path="chromevox_strings_en-GB.xtb" lang="en-GB" />
<file path="chromevox_strings_es.xtb" lang="es" />
<file path="chromevox_strings_es-419.xtb" lang="es-419" />
<file path="chromevox_strings_et.xtb" lang="et" />
<file path="chromevox_strings_fa.xtb" lang="fa" />
<file path="chromevox_strings_fi.xtb" lang="fi" />
<file path="chromevox_strings_fil.xtb" lang="fil" />
<file path="chromevox_strings_fr.xtb" lang="fr" />
<file path="chromevox_strings_gu.xtb" lang="gu" />
<file path="chromevox_strings_hi.xtb" lang="hi" />
<file path="chromevox_strings_hr.xtb" lang="hr" />
<file path="chromevox_strings_hu.xtb" lang="hu" />
<file path="chromevox_strings_id.xtb" lang="id" />
<file path="chromevox_strings_it.xtb" lang="it" />
<!-- The translation console uses 'iw' for Hebrew, but we use 'he'. -->
<file path="chromevox_strings_iw.xtb" lang="he" />
<file path="chromevox_strings_ja.xtb" lang="ja" />
<file path="chromevox_strings_kn.xtb" lang="kn" />
<file path="chromevox_strings_ko.xtb" lang="ko" />
<file path="chromevox_strings_lt.xtb" lang="lt" />
<file path="chromevox_strings_lv.xtb" lang="lv" />
<file path="chromevox_strings_ml.xtb" lang="ml" />
<file path="chromevox_strings_mr.xtb" lang="mr" />
<file path="chromevox_strings_ms.xtb" lang="ms" />
<file path="chromevox_strings_nl.xtb" lang="nl" />
<file path="chromevox_strings_no.xtb" lang="no" />
<file path="chromevox_strings_pl.xtb" lang="pl" />
<file path="chromevox_strings_pt-BR.xtb" lang="pt-BR" />
<file path="chromevox_strings_pt-PT.xtb" lang="pt-PT" />
<file path="chromevox_strings_ro.xtb" lang="ro" />
<file path="chromevox_strings_ru.xtb" lang="ru" />
<file path="chromevox_strings_sk.xtb" lang="sk" />
<file path="chromevox_strings_sl.xtb" lang="sl" />
<file path="chromevox_strings_sr.xtb" lang="sr" />
<file path="chromevox_strings_sv.xtb" lang="sv" />
<file path="chromevox_strings_sw.xtb" lang="sw" />
<file path="chromevox_strings_ta.xtb" lang="ta" />
<file path="chromevox_strings_te.xtb" lang="te" />
<file path="chromevox_strings_th.xtb" lang="th" />
<file path="chromevox_strings_tr.xtb" lang="tr" />
<file path="chromevox_strings_uk.xtb" lang="uk" />
<file path="chromevox_strings_vi.xtb" lang="vi" />
<file path="chromevox_strings_zh-CN.xtb" lang="zh-CN" />
<file path="chromevox_strings_zh-TW.xtb" lang="zh-TW" />
</translations>
<release allow_pseudo="false" seq="1">
<messages fallback_to_english="true">
<message desc="The locale you're translating into. For use in URL to localized pages. e.g. http://www.google.com/?hl=en." name="IDS_LOCALE">
en
</message>
<message desc="The product name for ChromeVox." name="IDS_CHROMEVOX_NAME">
ChromeVox
</message>
<message desc="The product description, displayed in the Chrome Extensions page." name="IDS_CHROMEVOX_DESCRIPTION">
ChromeVox - Giving Voice to Chrome
</message>
<message desc="The description of the stopSpeech key. Displayed in the Options page." name="IDS_CHROMEVOX_STOP_SPEECH_KEY">
Stop speech
</message>
<message desc="The description of the toggleStickyMode key. Displayed in the Options page." name="IDS_CHROMEVOX_TOGGLE_STICKY_MODE">
Enable/Disable sticky mode
</message>
<message desc="The description of the prefix key. Displayed in the Options page." name="IDS_CHROMEVOX_PREFIX_KEY">
Prefix key
</message>
<message desc="The description of the handleTab key. Displayed in the Options page." name="IDS_CHROMEVOX_HANDLE_TAB_NEXT">
Jump to next focusable item
</message>
<message desc="The description of the handleTab key. Displayed in the Options page." name="IDS_CHROMEVOX_HANDLE_TAB_PREV">
Jump to previous focusable item
</message>
<message desc="The description of the backward key. Displayed in the Options page." name="IDS_CHROMEVOX_BACKWARD">
Navigate backward
</message>
<message desc="The description of the forward key. Displayed in the Options page." name="IDS_CHROMEVOX_FORWARD">
Navigate forward
</message>
<message desc="The description of the left key. Displayed in the Options page." name="IDS_CHROMEVOX_LEFT">
Move left
</message>
<message desc="The description of the right key. Displayed in the Options page." name="IDS_CHROMEVOX_RIGHT">
Move right
</message>
<message desc="The description of the skip backward key that functions only during continuous reading (when ChromeVox is speaking the entire page without pausing). The skip backward key allows the user to skip backward without pausing the continuous reading. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_BACKWARD">
Skip backward during continuous reading
</message>
<message desc="The description of the skip forward key that functions only during continuous reading (when ChromeVox is speaking the entire page without pausing). The skip forward key allows the user to skip forward without pausing the continuous reading. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_FORWARD">
Skip forward during continuous reading
</message>
<message desc="The description of the previousGranularity key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_GRANULARITY">
Decrease navigation granularity
</message>
<message desc='The description of the nextGranularity key. Navigation granularity can be e.g. "sentence level", "word level". Granularity is also referred as "level of detail". c.f. http://chromevox.com/tutorial/text_navigation.html Displayed in the Options page.' name="IDS_CHROMEVOX_NEXT_GRANULARITY">
Increase navigation granularity
</message>
<message desc="The description of the actOnCurrentItem key. The current item is the HTML element which has focus. Taking action is similar to using the mouse to click on the element. Displayed in the Options page." name="IDS_CHROMEVOX_ACT_ON_CURRENT_ITEM">
Take action on current item
</message>
<message desc="The description of the forceClickOnCurrentItem key. Displayed in the Options page." name="IDS_CHROMEVOX_FORCE_CLICK_ON_CURRENT_ITEM">
Click on current item
</message>
<message desc="The description of the readLinkURL key. Displayed in the Options page." name="IDS_CHROMEVOX_READ_LINK_URL">
Announce the URL behind a link
</message>
<message desc="The description of the readCurrentTitle key. Displayed in the Options page." name="IDS_CHROMEVOX_READ_CURRENT_TITLE">
Announce the title of the current page
</message>
<message desc="The description of the readCurrentURL key. Displayed in the Options page." name="IDS_CHROMEVOX_READ_CURRENT_URL">
Announce the URL of the current page
</message>
<message desc="The description of the readFromHere key. Displayed in the Options page." name="IDS_CHROMEVOX_READ_FROM_HERE">
Start reading from current location
</message>
<message desc="The description of the showPowerKey key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_POWER_KEY">
Open ChromeVox keyboard help
</message>
<message desc="The description of the hidePowerKey key. Displayed in the Options page." name="IDS_CHROMEVOX_HIDE_POWER_KEY">
Hide ChromeVox help
</message>
<message desc="Spoken instruction on navigating power key." name="IDS_CHROMEVOX_POWER_KEY_HELP">
Press up or down to review commands, press enter to activate
</message>
<message desc="The description of the help key. Displayed in the Options page." name="IDS_CHROMEVOX_HELP">
Open ChromeVox tutorial
</message>
<message desc="The description of the toggleSearchWidget key. Displayed in the Options page." name="IDS_CHROMEVOX_TOGGLE_SEARCH_WIDGET">
Toggle search widget
</message>
<message desc="The description of the showOptionsPage key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_OPTIONS_PAGE">
Open options page
</message>
<message desc="The description of the showKbExplorerPage key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_KB_EXPLORER_PAGE">
Open keyboard explorer
</message>
<message desc="The description of the decreaseTtsRate key. Displayed in the Options page." name="IDS_CHROMEVOX_DECREASE_TTS_RATE">
Decrease rate of speech
</message>
<message desc="The description of the increaseTtsRate key. Displayed in the Options page." name="IDS_CHROMEVOX_INCREASE_TTS_RATE">
Increase rate of speech
</message>
<message desc="The description of the decreaseTtsPitch key. This key's action is passed to the text-to-speech voice engine and controls the voice's pitch. c.f. http://en.wikipedia.org/wiki/Pitch_(music) Displayed in the Options page." name="IDS_CHROMEVOX_DECREASE_TTS_PITCH">
Decrease pitch
</message>
<message desc="The description of the increaseTtsPitch key. Displayed in the Options page." name="IDS_CHROMEVOX_INCREASE_TTS_PITCH">
Increase pitch
</message>
<message desc="The description of the decreaseTtsVolume key. Displayed in the Options page." name="IDS_CHROMEVOX_DECREASE_TTS_VOLUME">
Decrease speech volume
</message>
<message desc="The description of the increaseTtsVolume key. Displayed in the Options page." name="IDS_CHROMEVOX_INCREASE_TTS_VOLUME">
Increase speech volume
</message>
<message desc="The description of the showFormsList key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_FORMS_LIST">
Show forms list
</message>
<message desc="The description of the showHeadingsList key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_HEADINGS_LIST">
Show headings list
</message>
<message desc="The description of the showLinksList key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_LINKS_LIST">
Show links list
</message>
<message desc="The description of the showTablesList key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_TABLES_LIST">
Show tables list
</message>
<message desc="The description of the showLandmarksList key. Displayed in the Options page." name="IDS_CHROMEVOX_SHOW_LANDMARKS_LIST">
Show landmarks list
</message>
<message desc="The description of the previousRow key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_ROW">
Previous table row
</message>
<message desc="The description of the nextRow key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_ROW">
Next table row
</message>
<message desc="The description of the previousCol key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_COL">
Previous table column
</message>
<message desc="The description of the nextCol key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_COL">
Next table column
</message>
<message desc="The description of the announceHeaders key. Displayed in the Options page." name="IDS_CHROMEVOX_ANNOUNCE_HEADERS">
Announce the headers of the current cell
</message>
<message desc="The description of the speakTableLocation key. This key's action will describe where in the table the focus currently is. Displayed in the Options page." name="IDS_CHROMEVOX_SPEAK_TABLE_LOCATION">
Announce current cell coordinates
</message>
<message desc="The description of the guessRowHeader key. In a table, attempt to determine the header for the row containing the current cell, even if uncertain. Displayed in the Options page." name="IDS_CHROMEVOX_GUESS_ROW_HEADER">
Make a guess at the row header of the current cell
</message>
<message desc="The description of the guessColHeader key. Displayed in the Options page." name="IDS_CHROMEVOX_GUESS_COL_HEADER">
Make a guess at the column header of the current cell
</message>
<message desc="The description of the skipToBeginning key. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_TO_BEGINNING">
Go to beginning of table
</message>
<message desc="The description of the skipToEnd key. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_TO_END">
Go to end of table
</message>
<message desc="The description of the skipToRowBeginning key. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_TO_ROW_BEGINNING">
Go to beginning of the current row
</message>
<message desc="The description of the skipToRowEnd key. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_TO_ROW_END">
Go to end of the current row
</message>
<message desc="The description of the skipToColBeginning key. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_TO_COL_BEGINNING">
Go to beginning of the current column
</message>
<message desc="The description of the skipToColEnd key. Displayed in the Options page." name="IDS_CHROMEVOX_SKIP_TO_COL_END">
Go to end of the current column
</message>
<message desc='The description of the nextHeading1 key. In most cases, "level 1 heading" is a H1 HTML tag. ChromeVox will search, from the current focus, for the next heading on the page. If a heading is found, ChromeVox will focus on the heading. Displayed in the Options page.' name="IDS_CHROMEVOX_NEXT_HEADING1">
Next level 1 heading
</message>
<message desc="The description of the previousHeading1 key. Behaves like nextHeading1, but this key's action will search backwards (up the page). Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING1">
Previous level 1 heading
</message>
<message desc="The description of the nextHeading2 key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_HEADING2">
Next level 2 heading
</message>
<message desc="The description of the previousHeading2 key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING2">
Previous level 2 heading
</message>
<message desc="The description of the nextHeading3 key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_HEADING3">
Next level 3 heading
</message>
<message desc="The description of the previousHeading3 key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING3">
Previous level 3 heading
</message>
<message desc="The description of the nextHeading4 key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_HEADING4">
Next level 4 heading
</message>
<message desc="The description of the previousHeading4 key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING4">
Previous level 4 heading
</message>
<message desc="The description of the nextHeading5 key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_HEADING5">
Next level 5 heading
</message>
<message desc="The description of the previousHeading5 key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING5">
Previous level 5 heading
</message>
<message desc="The description of the nextHeading6 key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_HEADING6">
Next level 6 heading
</message>
<message desc="The description of the previousHeading6 key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING6">
Previous level 6 heading
</message>
<message desc="The description of the nextComboBox key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_COMBO_BOX">
Next combo box
</message>
<message desc="The description of the previousComboBox key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_COMBO_BOX">
Previous combo box
</message>
<message desc="The description of the nextEditText key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_EDIT_TEXT">
Next editable text area
</message>
<message desc="The description of the previousEditText key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_EDIT_TEXT">
Previous editable text area
</message>
<message desc="The description of the nextFormField key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_FORM_FIELD">
Next form field
</message>
<message desc="The description of the previousFormField key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_FORM_FIELD">
Previous form field
</message>
<message desc="The description of the nextGraphic key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_GRAPHIC">
Next graphic
</message>
<message desc="The description of the previousGraphic key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_GRAPHIC">
Previous graphic
</message>
<message desc="The description of the nextHeading key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_HEADING">
Next heading
</message>
<message desc="The description of the previousHeading key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_HEADING">
Previous heading
</message>
<message desc="The description of the nextListItem key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_LIST_ITEM">
Next list item
</message>
<message desc="The description of the previousListItem key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_LIST_ITEM">
Previous list item
</message>
<message desc="The description of the nextJump key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_JUMP">
Next jump
</message>
<message desc="The description of the previousJump key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_JUMP">
Previous jump
</message>
<message desc="The description of the nextLink key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_LINK">
Next link
</message>
<message desc="The description of the previousLink key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_LINK">
Previous link
</message>
<message desc="The description of the nextList key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_LIST">
Next list
</message>
<message desc="The description of the previousList key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_LIST">
Previous list
</message>
<message desc="The description of the nextMath key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_MATH">
Next math
</message>
<message desc="The description of the previousMath key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_MATH">
Previous math
</message>
<message desc="The description of the nextMedia key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_MEDIA">
Next media
</message>
<message desc="The description of the previousMedia key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_MEDIA">
Previous media
</message>
<message desc="The description of the nextBlockquote key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_BLOCKQUOTE">
Next block quote
</message>
<message desc="The description of the previousBlockquote key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_BLOCKQUOTE">
Previous block quote
</message>
<message desc="The description of the nextRadio key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_RADIO">
Next radio button
</message>
<message desc="The description of the previousRadio key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_RADIO">
Previous radio button
</message>
<message desc="The description of the nextSlider key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_SLIDER">
Next slider
</message>
<message desc="The description of the previousSlider key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_SLIDER">
Previous slider
</message>
<message desc="The description of the nextTable key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_TABLE">
Next table
</message>
<message desc="The description of the nextVisitedLink key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_VISITED_LINK">
Next visited link
</message>
<message desc="The description of the previousTable key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_TABLE">
Previous table
</message>
<message desc="The description of the previousVisitedLink key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_VISITED_LINK">
Previous visited link
</message>
<message desc="The description of the nextButton key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_BUTTON">
Next button
</message>
<message desc="The description of the previousButton key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_BUTTON">
Previous button
</message>
<message desc="The description of the nextCheckbox key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_CHECKBOX">
Next checkbox
</message>
<message desc="The description of the previousCheckbox key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_CHECKBOX">
Previous checkbox
</message>
<message desc="The description of the nextLandmark key. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_LANDMARK">
Next landmark
</message>
<message desc="The description of the previousLandmark key. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_LANDMARK">
Previous landmark
</message>
<message desc="The description of the benchmark key. Launches a benchmark tool useful for debugging. Displayed in the Options page." name="IDS_CHROMEVOX_BENCHMARK">
Debug benchmark
</message>
<message desc="The description of the announcePosition key. Displayed in the Options page." name="IDS_CHROMEVOX_ANNOUNCE_POSITION">
Announces a brief description of the current position
</message>
<message desc="The description of the fullyDescribe key. Displayed in the Options page." name="IDS_CHROMEVOX_FULLY_DESCRIBE">
Announces a complete description of the current position
</message>
<message desc="The title of the extension's options page." name="IDS_CHROMEVOX_OPTIONS_PAGE_TITLE">
ChromeVox Options
</message>
<message desc="The summary of the extension's options. Shown at the top of the options page." name="IDS_CHROMEVOX_OPTIONS_PAGE_SUMMARY">
Use the options below to customize ChromeVox. Changes take effect immediately.
</message>
<message desc="An option to enable the page focus following the mouse. Focus represents the current HTML element or group of elements that are being spoken and can be acted upon. There is also a visual UI which highlights the focused elements. * This key's action allows the user to change focus with the mouse. Focus can also be changed using the ChromeVox navigation keys and an API." name="IDS_CHROMEVOX_OPTIONS_MOUSE_FOCUS_FOLLOWS">
Use the mouse to change focus.
</message>
<message desc="An option to enhance the experience of specific sites such as Google Search." name="IDS_CHROMEVOX_OPTIONS_SITE_SPECIFIC_ENHANCEMENTS">
Enhance specific sites (like Google Search).
</message>
<message desc="An option to use more verbose feedback for the user." name="IDS_CHROMEVOX_OPTIONS_VERBOSITY_VERBOSE">
Enable verbose descriptions.
</message>
<message desc="An option to show the cursor between characters." name="IDS_CHROMEVOX_OPTIONS_CURSOR_BETWEEN_CHARACTERS">
Place cursor between characters when editing text (like Mac OS X).
</message>
<message desc="An option to show the magnifier." name="IDS_CHROMEVOX_OPTIONS_MAGNIFIER_SHOW_CHECKBOX">
Show a magnified view of the page content.
</message>
<message desc="An options page section header for options about the ChromeVox voice. This section lets users change the voice by selecting a different voice from a listbox." name="IDS_CHROMEVOX_OPTIONS_VOICES">
Voices
</message>
<message desc="Labels the voice selection list box." name="IDS_CHROMEVOX_OPTIONS_VOICES_DESCRIPTION">
Change the current voice by selecting an option from the list below.
</message>
<message desc="An options page section header for options about the ChromeVox braille table. This section lets users change the braille table by selecting a different braille table from a listbox. A braille table describes how text gets converted from a unicode encoding into a pattern of dots. This varies based on locale and contraction. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_OPTIONS_BRAILLE">
Braille
</message>
<message desc="Labels the braille table type button when the current table is an 6 dot table. A braille table describes how text gets converted from a unicode encoding into a pattern of dots. This varies based on locale and contraction. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_OPTIONS_BRAILLE_TABLE_TYPE_6">
Switch to 8 dot braille
</message>
<message desc="Labels the braille table type button when the current table is an 8 dot table. A braille table describes how text gets converted from a unicode encoding into a pattern of dots. This varies based on locale and contraction. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_OPTIONS_BRAILLE_TABLE_TYPE_8">
Switch to 6 dot braille
</message>
<message desc="Labels the braille table selection list box. A braille table describes how text gets converted from a unicode encoding into a pattern of dots. This varies based on locale and contraction. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_OPTIONS_BRAILLE_DESCRIPTION_6">
Change the current 6 dot braille table by selecting an option from the list below.
</message>
<message desc="How to present the name of a braille table to the user. For example, a locale could be 'English (United States)' and a grade could be '2'. Together they would be 'English (UnitedStates), Grade 2'. A braille table describes how text gets converted from Unicode text into a pattern of braille dots. This varies based on locale and contraction. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_BRAILLE_TABLE_NAME_WITH_GRADE">
<ph name="locale">$1</ph>, Grade <ph name="grade">$2</ph>
</message>
<message desc="How to present the name of a braille table to the user. For example, a locale could be 'English' and a variant could be 'UEB' (for 'Unified English Braille'). Together they would be 'English (UEB)'. A braille table describes how text gets converted from Unicode text into a pattern of braille dots. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_BRAILLE_TABLE_NAME_WITH_VARIANT">
<ph name="locale">$1</ph> (<ph name="variant">$2</ph>)
</message>
<message desc="How to present the name of a braille table to the user. For example, a locale could be 'English', variant could be 'UEB' (for 'Unified English Braille') and a grade could be '2'. Together they would be 'English (UEB), Grade 2'. A braille table describes how text gets converted from Unicode text into a pattern of braille dots. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_BRAILLE_TABLE_NAME_WITH_VARIANT_AND_GRADE">
<ph name="locale">$1</ph> (<ph name="variant">$2</ph>), Grade <ph name="grade">$3</ph>
</message>
<message desc="Labels the braille table selection list box. A braille table describes how text gets converted from a unicode encoding into a pattern of dots. This varies based on locale and contraction. See http://en.wikipedia.org/wiki/Braille for a more in-depth discussion." name="IDS_CHROMEVOX_OPTIONS_BRAILLE_DESCRIPTION_8">
Change the current 8 dot braille table by selecting an option from the list below.
</message>
<message desc="An options page section header for options about key shortcuts. This section lets users change the key bindings for ChromeVox actions. The section has a list of actions and a text field to change the binding (e.g. Ctrl-B) for each action." name="IDS_CHROMEVOX_OPTIONS_KEYBOARD_SHORTCUTS">
Keyboard shortcuts
</message>
<message desc="Labels the key map selection combo box. Key maps describe a pairing of keys users use to invoke a command." name="IDS_CHROMEVOX_OPTIONS_KEYMAP_DESCRIPTION">
Change the current keymap by selecting an option from the list below.
</message>
<message desc="A button to reset the key assignments in the options page." name="IDS_CHROMEVOX_OPTIONS_SELECT_KEYS">
Reset current keymap
</message>
<message desc="Labels the keyboard shortcut section." name="IDS_CHROMEVOX_OPTIONS_SHORTCUTS_DESCRIPTION">
Customize keyboard shortcuts for frequently used commands by typing them into the corresponding fields below.
</message>
<message desc="An options page section header for the modifier key section." name="IDS_CHROMEVOX_OPTIONS_MODIFIER_KEYS">
Modifier keys
</message>
<message desc="An option for setting the key combination that will be used as the ChromeVox modifier key (aka, the 'Cvox' key)." name="IDS_CHROMEVOX_OPTIONS_CVOX_MODIFIER_KEY">
ChromeVox modifier key
</message>
<message desc="The title of the ChromeOS Keyboard explorer page. The keyboard explorer voices the name of each key when the user presses it." name="IDS_CHROMEVOX_KBEXPLORER_TITLE">
ChromeOS Keyboard Explorer
</message>
<message desc="The instructions for the keyboard explorer. The keyboard explorer voices the name of each key when the user presses it. * These instructions describe how to use the keyboard explorer." name="IDS_CHROMEVOX_KBEXPLORER_INSTRUCTIONS">
Press any key to learn its name. Ctrl+W will close the keyboard explorer.
</message>
<message desc="Spoken when a System update is ready and restart is needed." name="IDS_CHROMEVOX_CHROME_SYSTEM_NEED_RESTART">
System was updated. Restart is recommended.
</message>
<message desc="Spoken when the screen brightness is changed." name="IDS_CHROMEVOX_CHROME_BRIGHTNESS_CHANGED">
Brightness <ph name="brightness">$1</ph> percent
</message>
<message desc="Spoken when a new Chrome tab named 'title' is opened." name="IDS_CHROMEVOX_CHROME_TAB_CREATED">
tab created
</message>
<message desc="Spoken when the user changes to different tab showing the 'title' page." name="IDS_CHROMEVOX_CHROME_TAB_SELECTED">
<ph name="title">$1</ph>, tab
</message>
<message desc="Spoken when the user changes to a different normal window showing the 'title' page." name="IDS_CHROMEVOX_CHROME_NORMAL_WINDOW_SELECTED">
window <ph name="title">$1</ph> tab
</message>
<message desc="Spoken when the user changes to a different incognito window showing the 'title' page in the current (displayed) tab." name="IDS_CHROMEVOX_CHROME_INCOGNITO_WINDOW_SELECTED">
incognito window <ph name="title">$1</ph> tab
</message>
<message desc="Spoken when the user opens a Chrome menu named 'title'." name="IDS_CHROMEVOX_CHROME_MENU_OPENED">
<ph name="title">$1</ph> menu opened
</message>
<message desc="Describes a HTML checkbox named 'name' in the checked state." name="IDS_CHROMEVOX_DESCRIBE_CHECKBOX_CHECKED">
<ph name="name">$1</ph> checkbox checked
</message>
<message desc="The checked state for a checkbox." name="IDS_CHROMEVOX_CHECKBOX_CHECKED_STATE">
checked
</message>
<message desc="The checked state for a checkbox in braille." name="IDS_CHROMEVOX_CHECKBOX_CHECKED_STATE_BRL">
x
</message>
<message desc="Describes a HTML checkbox named 'name' in the unchecked state." name="IDS_CHROMEVOX_DESCRIBE_CHECKBOX_UNCHECKED">
<ph name="name">$1</ph>, checkbox not checked
</message>
<message desc="The unchecked state for a checkbox." name="IDS_CHROMEVOX_CHECKBOX_UNCHECKED_STATE">
not checked
</message>
<message desc="The unchecked state for a checkbox in braille." name="IDS_CHROMEVOX_CHECKBOX_UNCHECKED_STATE_BRL">
''' '''
</message>
<message desc="Describes a HTML radio button named 'name' in the selected state." name="IDS_CHROMEVOX_DESCRIBE_RADIO_SELECTED">
<ph name="name">$1</ph>, radio button selected
</message>
<message desc="The selected state for a radio button." name="IDS_CHROMEVOX_RADIO_SELECTED_STATE">
selected
</message>
<message desc="The selected state for a radio button in braille." name="IDS_CHROMEVOX_RADIO_SELECTED_STATE_BRL">
x
</message>
<message desc="Describes a HTML radio button named 'name' in the unselected state." name="IDS_CHROMEVOX_DESCRIBE_RADIO_UNSELECTED">
<ph name="name">$1</ph>, radio button unselected
</message>
<message desc="The unselected state for a radio button." name="IDS_CHROMEVOX_RADIO_UNSELECTED_STATE">
unselected
</message>
<message desc="The unselected state for a radio button in braille." name="IDS_CHROMEVOX_RADIO_UNSELECTED_STATE_BRL">
''' '''
</message>
<message desc="Describes a menu named 'name'." name="IDS_CHROMEVOX_DESCRIBE_MENU">
<ph name="name">$1</ph>, menu
</message>
<message desc="Describes a menu item named 'name'." name="IDS_CHROMEVOX_DESCRIBE_MENU_ITEM">
<ph name="name">$1</ph>, menu item
</message>
<message desc="Describes a menu item named 'name' with a submenu." name="IDS_CHROMEVOX_DESCRIBE_MENU_ITEM_WITH_SUBMENU">
<ph name="name">$1</ph>, menu item, with submenu
</message>
<message desc="Describes a window named 'name'." name="IDS_CHROMEVOX_DESCRIBE_WINDOW">
<ph name="name">$1</ph>, window
</message>
<message desc="Describes a HTML textbox named 'name' with value 'value'." name="IDS_CHROMEVOX_DESCRIBE_TEXTBOX">
<ph name="value">$1</ph>, <ph name="name">$2</ph>, text box
</message>
<message desc="Describes an unnamed HTML textbox with value 'value'." name="IDS_CHROMEVOX_DESCRIBE_UNNAMED_TEXTBOX">
<ph name="value">$1</ph>, text box
</message>
<message desc="Describes a HTML password textbox named 'name' with value 'value'." name="IDS_CHROMEVOX_DESCRIBE_PASSWORD">
<ph name="value">$1</ph>, <ph name="name">$2</ph>, password text box
</message>
<message desc="Describes an unnamed HTML password textbox with value 'value'." name="IDS_CHROMEVOX_DESCRIBE_UNNAMED_PASSWORD">
<ph name="value">$1</ph>, password text box
</message>
<message desc="Describes a HTML button named 'name'." name="IDS_CHROMEVOX_DESCRIBE_BUTTON">
<ph name="name">$1</ph>, button
</message>
<message desc="Describes a HTML combo box named 'name'." name="IDS_CHROMEVOX_DESCRIBE_COMBOBOX">
<ph name="value">$1</ph>, <ph name="name">$2</ph>, combo box
</message>
<message desc="Describes an unnamed HTML combo box." name="IDS_CHROMEVOX_DESCRIBE_UNNAMED_COMBOBOX">
<ph name="value">$1</ph>, combo box
</message>
<message desc="Describes a HTML listbox named 'name'." name="IDS_CHROMEVOX_DESCRIBE_LISTBOX">
<ph name="value">$1</ph>, <ph name="name">$2</ph>, list box
</message>
<message desc="Describes an unnamed HTML list box." name="IDS_CHROMEVOX_DESCRIBE_UNNAMED_LISTBOX">
<ph name="value">$1</ph>, list box
</message>
<message desc="Describes a HTML link named 'name'." name="IDS_CHROMEVOX_DESCRIBE_LINK">
<ph name="name">$1</ph>, link
</message>
<message desc="Describes a Chrome tab named 'name'." name="IDS_CHROMEVOX_DESCRIBE_TAB">
<ph name="name">$1</ph>, tab
</message>
<message desc="Describes a slider with name 'name' and value 'value'." name="IDS_CHROMEVOX_DESCRIBE_SLIDER">
<ph name="value">$1</ph>, <ph name="name">$2</ph>, slider
</message>
<message desc="Spoken through the a11y api after describing an element if it is selected." name="IDS_CHROMEVOX_DESCRIBE_SELECTED">
, selected
</message>
<message desc="Spoken through the a11y api after describing an element if it is unselected." name="IDS_CHROMEVOX_DESCRIBE_UNSELECTED">
, unselected
</message>
<message desc="Spoken through the a11y api after describing an element if it is part of a group." name="IDS_CHROMEVOX_DESCRIBE_INDEX">
''' <ph name="index">$1</ph> of <ph name="total">$2</ph> '''
</message>
<message desc="Spoken through the a11y api when moving between treeitems of differing depth." name="IDS_CHROMEVOX_DESCRIBE_DEPTH">
''' level <ph name="depth">$1</ph> '''
</message>
<message desc="Describes the rate of synthesized speech as a percentage of the normal speaking rate, like 50% for slow speech or 200% for fast speech." name="IDS_CHROMEVOX_ANNOUNCE_RATE">
Rate <ph name="percent">$1</ph> percent
</message>
<message desc="Describes the pitch of synthesized speech as a percentage of the normal pitch, like 50% for low pitch or 150% for high pitch." name="IDS_CHROMEVOX_ANNOUNCE_PITCH">
Pitch <ph name="percent">$1</ph> percent
</message>
<message desc="Describes the volume of synthesized speech as a percentage where 100% is full volume." name="IDS_CHROMEVOX_ANNOUNCE_VOLUME">
Volume <ph name="percent">$1</ph> percent
</message>
<message desc="Spoken when the user exits a dialog. For example an alert dialog." name="IDS_CHROMEVOX_EXITING_DIALOG">
Exited dialog.
</message>
<message desc="Spoken when the user exits a container." name="IDS_CHROMEVOX_EXITED_CONTAINER">
Exited <ph name="type">$1</ph>.
</message>
<message desc="Spoken when the user enters a dialog with the text 'text'." name="IDS_CHROMEVOX_ENTERING_DIALOG">
Entered dialog
</message>
<message desc="Spoken before the list of elements when a live region of a page is removed." name="IDS_CHROMEVOX_LIVE_REGIONS_REMOVED">
removed:
</message>
<message desc="Tells the user that sticky mode is enabled. Sticky mode allows the user to navigate without pressing the modifier keys." name="IDS_CHROMEVOX_STICKY_MODE_ENABLED">
Sticky mode enabled
</message>
<message desc="Tells the user that sticky mode is disabled. Sticky mode allows the user to navigate without pressing the modifier keys." name="IDS_CHROMEVOX_STICKY_MODE_DISABLED">
Sticky mode disabled
</message>
<message desc="Prompt spoken when the user first opens the Keyboard Help Widget." name="IDS_CHROMEVOX_KEYBOARD_HELP_INTRO">
Keyboard Help
</message>
<message desc="Prompt spoken when user opens the Context Menu Widget." name="IDS_CHROMEVOX_CONTEXT_MENU_INTRO">
Context Menu
</message>
<message desc="Prompt spoken as a generic name for any choice widget of some type." name="IDS_CHROMEVOX_CHOICE_WIDGET_NAME">
<ph name="type">$1</ph> list.
</message>
<message desc="Prompt spoken as a help message when any choice widget is opened." name="IDS_CHROMEVOX_CHOICE_WIDGET_HELP">
Use up and down arrow keys to browse, or type to search.
</message>
<message desc="Prompt spoken when any ChoiceWidget exits." name="IDS_CHROMEVOX_CHOICE_WIDGET_EXITED">
Exited
</message>
<message desc="Prompt spoken to describe items within the ChoiceWidget." name="IDS_CHROMEVOX_CHOICE_WIDGET_TYPE_GENERIC">
''' '''
</message>
<message desc="Spoken when table mode reachs the end of a cell." name="IDS_CHROMEVOX_END_OF_CELL">
End of cell.
</message>
<message desc="Spoken when the user reads a link without a URL." name="IDS_CHROMEVOX_NO_URL_FOUND">
No URL found
</message>
<message desc="Spoken, in table mode, when the user leaves an HTML table." name="IDS_CHROMEVOX_LEAVING_TABLE">
Leaving table.
</message>
<message desc="Spoken, in table mode, when the user leaves a grid." name="IDS_CHROMEVOX_LEAVING_GRID">
Leaving grid.
</message>
<message desc="Spoken, in table mode, when the user is inside an HTML table." name="IDS_CHROMEVOX_INSIDE_TABLE">
Inside table
</message>
<message desc="Spoken when the user attempts to enter table mode, but there is no HTML tables." name="IDS_CHROMEVOX_NO_TABLES">
No table found.
</message>
<message desc="Spoken when the user attempts a table mode command, but is not in a table." name="IDS_CHROMEVOX_NOT_INSIDE_TABLE">
Not inside table.
</message>
<message desc="Spoken when the user attempts to use a table command inside a table, but without using table mode." name="IDS_CHROMEVOX_NOT_IN_TABLE_MODE">
Not in table mode.
</message>
<message desc="Spoken, in table mode, when the user attempts to navigate to a non-existant next row." name="IDS_CHROMEVOX_NO_CELL_BELOW">
No cell below.
</message>
<message desc="Spoken, in table mode, when the user attempts to navigate to a non-existant previous row." name="IDS_CHROMEVOX_NO_CELL_ABOVE">
No cell above.
</message>
<message desc="Spoken, in table mode, when the user attempts to navigate to a non-existant row to the right." name="IDS_CHROMEVOX_NO_CELL_RIGHT">
No cell right.
</message>
<message desc="Spoken, in table mode, when the user attempts to navigate to a non-existant row to the left." name="IDS_CHROMEVOX_NO_CELL_LEFT">
No cell left.
</message>
<message desc="Spoken, in table mode, when the user moves to an empty cell." name="IDS_CHROMEVOX_EMPTY_CELL">
Empty cell.
</message>
<message desc="Spoken, in table mode, when the user moves to a cell that has rowspan or colspan > 1." name="IDS_CHROMEVOX_SPANNED">
Spanned.
</message>
<message desc="Describes a row header in an HTML table." name="IDS_CHROMEVOX_ROW_HEADER">
Row header:
</message>
<message desc="Describes an empty row header in an HTML table." name="IDS_CHROMEVOX_EMPTY_ROW_HEADER">
Empty row header
</message>
<message desc="Describes a column header in an HTML table." name="IDS_CHROMEVOX_COLUMN_HEADER">
Column header:
</message>
<message desc="Describes an empty column header in an HTML table." name="IDS_CHROMEVOX_EMPTY_COLUMN_HEADER">
Empty column header
</message>
<message desc="Describes the headers on a table with no headers." name="IDS_CHROMEVOX_NO_HEADERS">
No headers
</message>
<message desc="Describes the headers on a table with empty headers." name="IDS_CHROMEVOX_EMPTY_HEADERS">
Empty headers
</message>
<message desc="Descibes the user's location within a table." name="IDS_CHROMEVOX_TABLE_LOCATION">
Row <ph name="rowIndex">$1</ph> of <ph name="rowTotal">$2</ph>, Column <ph name="colIndex">$3</ph> of <ph name="colTotal">$4</ph>
</message>
<message desc="Spoken if the user attempts to jump to the next checkbox when none exists." name="IDS_CHROMEVOX_NO_NEXT_CHECKBOX">
No next checkbox.
</message>
<message desc="Spoken if the user attempts to jump to the previous checkbox when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_CHECKBOX">
No previous checkbox.
</message>
<message desc="Spoken if the user attempts to jump to the next editable text field when none exists." name="IDS_CHROMEVOX_NO_NEXT_EDIT_TEXT">
No next editable text field.
</message>
<message desc="Spoken if the user attempts to jump to the previous editable text field when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_EDIT_TEXT">
No previous editable text field.
</message>
<message desc="Spoken if the user attempts to jump to the next heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING">
No next heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING">
No previous heading.
</message>
<message desc="Spoken if the user attempts to jump to the next level 1 heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING_1">
No next level 1 heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous level 1 heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING_1">
No previous level 1 heading.
</message>
<message desc="Spoken if the user attempts to jump to the next level 2 heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING_2">
No next level 2 heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous level 2 heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING_2">
No previous level 2 heading.
</message>
<message desc="Spoken if the user attempts to jump to the next level 3 heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING_3">
No next level 3 heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous level 3 heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING_3">
No previous level 3 heading.
</message>
<message desc="Spoken if the user attempts to jump to the next level 4 heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING_4">
No next level 4 heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous level 4 heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING_4">
No previous level 4 heading.
</message>
<message desc="Spoken if the user attempts to jump to the next level 5 heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING_5">
No next level 5 heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous level 5 heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING_5">
No previous level 5 heading.
</message>
<message desc="Spoken if the user attempts to jump to the next level 6 heading when none exists." name="IDS_CHROMEVOX_NO_NEXT_HEADING_6">
No next level 6 heading.
</message>
<message desc="Spoken if the user attempts to jump to the previous level 6 heading when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_HEADING_6">
No previous level 6 heading.
</message>
<message desc="Spoken if the user attempts to jump to the next item that isn\'t a link when none exists." name="IDS_CHROMEVOX_NO_NEXT_NOT_LINK">
No next item that isn't a link.
</message>
<message desc="Spoken if the user attempts to jump to the previous item that isn\'t a link when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_NOT_LINK">
No previous item that isn't a link.
</message>
<message desc="Spoken if the user attempts to jump to the next anchor when none exists." name="IDS_CHROMEVOX_NO_NEXT_ANCHOR">
No next anchor.
</message>
<message desc="Spoken if the user attempts to jump to the previous anchor when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_ANCHOR">
No previous anchor.
</message>
<message desc="Spoken if the user attempts to jump to the next link when none exists." name="IDS_CHROMEVOX_NO_NEXT_LINK">
No next link.
</message>
<message desc="Spoken if the user attempts to jump to the previous link when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_LINK">
No previous link.
</message>
<message desc="Spoken if the user attempts to jump to the next table when none exists." name="IDS_CHROMEVOX_NO_NEXT_TABLE">
No next table.
</message>
<message desc="Spoken if the user attempts to jump to the previous table when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_TABLE">
No previous table.
</message>
<message desc="Spoken if the user attempts to jump to the next visited link when none exists." name="IDS_CHROMEVOX_NO_NEXT_VISITED_LINK">
No next visited link.
</message>
<message desc="Spoken if the user attempts to jump to the previous visited link when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_VISITED_LINK">
No previous visited link.
</message>
<message desc="Spoken if the user attempts to jump to the next math expression when none exists." name="IDS_CHROMEVOX_NO_NEXT_MATH">
No next math expression.
</message>
<message desc="Spoken if the user attempts to jump to the previous math expression when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_MATH">
No previous math expression.
</message>
<message desc="Spoken if the user attempts to jump to the next media widget (audio/video) when none exists." name="IDS_CHROMEVOX_NO_NEXT_MEDIA_WIDGET">
No next media widget.
</message>
<message desc="Spoken if the user attempts to jump to the previous media widget (audio/video) when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_MEDIA_WIDGET">
No previous media widget.
</message>
<message desc="Spoken if the user attempts to jump to the next list when none exists." name="IDS_CHROMEVOX_NO_NEXT_LIST">
No next list.
</message>
<message desc="Spoken if the user attempts to jump to the previous list when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_LIST">
No previous list.
</message>
<message desc="Spoken if the user attempts to jump to the next list item when none exists." name="IDS_CHROMEVOX_NO_NEXT_LIST_ITEM">
No next list item.
</message>
<message desc="Spoken if the user attempts to jump to the previous list item when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_LIST_ITEM">
No previous list item.
</message>
<message desc="Spoken if the user attempts to jump to the next blockquote when none exists." name="IDS_CHROMEVOX_NO_NEXT_BLOCKQUOTE">
No next blockquote.
</message>
<message desc="Spoken if the user attempts to jump to the previous blockquote when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_BLOCKQUOTE">
No previous blockquote.
</message>
<message desc="Spoken if the user attempts to jump to the next form field when none exists." name="IDS_CHROMEVOX_NO_NEXT_FORM_FIELD">
No next form field.
</message>
<message desc="Spoken if the user attempts to jump to the previous form field when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_FORM_FIELD">
No previous form field.
</message>
<message desc="Spoken if the user attempts to jump to the next jump point when none exists." name="IDS_CHROMEVOX_NO_NEXT_JUMP">
No next jump point.
</message>
<message desc="Spoken if the user attempts to jump to the previous jump point when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_JUMP">
No previous jump point.
</message>
<message desc="Spoken if the user attempts to jump to the next ARIA landmark when none exists." name="IDS_CHROMEVOX_NO_NEXT_LANDMARK">
No next ARIA landmark.
</message>
<message desc="Spoken if the user attempts to jump to the previous ARIA landmark when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_LANDMARK">
No previous ARIA landmark.
</message>
<message desc="Spoken if the user attempts to jump to the next combo box when none exists." name="IDS_CHROMEVOX_NO_NEXT_COMBO_BOX">
No next combo box.
</message>
<message desc="Spoken if the user attempts to jump to the previous combo box when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_COMBO_BOX">
No previous combo box.
</message>
<message desc="Spoken if the user attempts to jump to the next button when none exists." name="IDS_CHROMEVOX_NO_NEXT_BUTTON">
No next button.
</message>
<message desc="Spoken if the user attempts to jump to the previous button when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_BUTTON">
No previous button.
</message>
<message desc="Spoken if the user attempts to jump to the next graphic when none exists." name="IDS_CHROMEVOX_NO_NEXT_GRAPHIC">
No next graphic.
</message>
<message desc="Spoken if the user attempts to jump to the previous graphic when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_GRAPHIC">
No previous graphic.
</message>
<message desc="Spoken if the user attempts to jump to the next slider when none exists." name="IDS_CHROMEVOX_NO_NEXT_SLIDER">
No next slider.
</message>
<message desc="Spoken if the user attempts to jump to the previous slider when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_SLIDER">
No previous slider.
</message>
<message desc="Spoken if the user attempts to jump to the next radio button when none exists." name="IDS_CHROMEVOX_NO_NEXT_RADIO_BUTTON">
No next radio button.
</message>
<message desc="Spoken if the user attempts to jump to the previous radio button when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_RADIO_BUTTON">
No previous radio button.
</message>
<message desc="Spoken if the user attempts to jump to the next section when none exists." name="IDS_CHROMEVOX_NO_NEXT_SECTION">
No next section.
</message>
<message desc="Spoken if the user attempts to jump to the previous section when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_SECTION">
No previous section.
</message>
<message desc="Spoken if the user attempts to jump to the next control when none exists." name="IDS_CHROMEVOX_NO_NEXT_CONTROL">
No next control.
</message>
<message desc="Spoken if the user attempts to jump to the previous control when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_CONTROL">
No previous control.
</message>
<message desc="Spoken when the current HTML element is clicked." name="IDS_CHROMEVOX_ELEMENT_CLICKED">
Clicked
</message>
<message desc="Spoken when the current HTML element is double clicked." name="IDS_CHROMEVOX_ELEMENT_DOUBLE_CLICKED">
double clicked
</message>
<message desc="Spoken in PowerKey if there are no headings to display." name="IDS_CHROMEVOX_POWERKEY_NO_HEADINGS">
No headings.
</message>
<message desc="Spoken in PowerKey if there are no links to display." name="IDS_CHROMEVOX_POWERKEY_NO_LINKS">
No links.
</message>
<message desc="Spoken in PowerKey if there are no forms to display." name="IDS_CHROMEVOX_POWERKEY_NO_FORMS">
No forms.
</message>
<message desc="Spoken in PowerKey if there are no tables to display." name="IDS_CHROMEVOX_POWERKEY_NO_TABLES">
No tables.
</message>
<message desc="Spoken in PowerKey if there are no ARIA landmarks to display." name="IDS_CHROMEVOX_POWERKEY_NO_LANDMARKS">
No ARIA landmarks.
</message>
<message desc="Spoken in PowerKey if there are no jumps to display." name="IDS_CHROMEVOX_POWERKEY_NO_JUMPS">
No jumps.
</message>
<message desc="Describes the list position of a list item." name="IDS_CHROMEVOX_LIST_POSITION">
<ph name="index">$1</ph> of <ph name="total">$2</ph>
</message>
<message desc="Describes the list position of a list item in braille." name="IDS_CHROMEVOX_LIST_POSITION_BRL">
<ph name="index">$1</ph>/<ph name="total">$2</ph>
</message>
<message desc='Spoken after a menu is spoken if the menu has a submenu. For example "Menu Options has submenu"' name="IDS_CHROMEVOX_ARIA_HAS_SUBMENU">
has submenu
</message>
<message desc="Brailled after a menu if the menu has a submenu." name="IDS_CHROMEVOX_ARIA_HAS_SUBMENU_BRL">
->
</message>
<message desc='Spoken after an element is spoken if the element has a pop up. For example "Button Add friends has pop up"' name="IDS_CHROMEVOX_ARIA_HAS_POPUP">
has pop up
</message>
<message desc="Brailled after an element is spoken if the element has a pop up." name="IDS_CHROMEVOX_ARIA_HAS_POPUP_BRL">
+popup
</message>
<message desc='Spoken when describing an ARIA value minimun. For example "Distance, in meters textbox 6, min 2, max 10"' name="IDS_CHROMEVOX_ARIA_VALUE_MIN">
Min <ph name="x">$1</ph>
</message>
<message desc='Brailled when describing an ARIA value minimun. For example "Distance, in meters: 6 min:6 max:10"' name="IDS_CHROMEVOX_ARIA_VALUE_MIN_BRL">
min:<ph name="x">$1</ph>
</message>
<message desc='Spoken when describing an ARIA value maximum. For example "Distance, in meters textbox 6, min 2, max 10"' name="IDS_CHROMEVOX_ARIA_VALUE_MAX">
Max <ph name="x">$1</ph>
</message>
<message desc='Brailled when describing an ARIA value maximum. For example "Distance, in meters: 6 min:2 max:10".' name="IDS_CHROMEVOX_ARIA_VALUE_MAX_BRL">
max:<ph name="x">$1</ph>
</message>
<message desc='Spoken when describing an ARIA value. For example "Distance, in meters textbox 6, min 2, max 10".' name="IDS_CHROMEVOX_ARIA_VALUE_NOW">
<ph name="x">$1</ph>
</message>
<message desc='Brailled when describing an ARIA value. For example "Distance, in meters: 6 min:2 max:10".' name="IDS_CHROMEVOX_ARIA_VALUE_NOW_BRL">
<ph name="x">$1</ph>
</message>
<message desc='Spoken when describing an ARIA value text. For example "Distance, short distance set"' name="IDS_CHROMEVOX_ARIA_VALUE_TEXT">
<ph name="x">$1</ph>
</message>
<message desc='Brailled when describing an ARIA value text. For example "Distance, short distance set"' name="IDS_CHROMEVOX_ARIA_VALUE_TEXT_BRL">
<ph name="x">$1</ph>
</message>
<message desc="Describes an element with the ARIA role alert." name="IDS_CHROMEVOX_ARIA_ROLE_ALERT">
Alert
</message>
<message desc="Braille of element with the ARIA role alert." name="IDS_CHROMEVOX_ARIA_ROLE_ALERT_BRL">
alrt
</message>
<message desc="Describes an element with the ARIA role alertdialog." name="IDS_CHROMEVOX_ARIA_ROLE_ALERTDIALOG">
Alert dialog
</message>
<message desc="Braille of element with the ARIA role alertdialog." name="IDS_CHROMEVOX_ARIA_ROLE_ALERTDIALOG_BRL">
alrt dlg
</message>
<message desc="Describes an element with the ARIA role button." name="IDS_CHROMEVOX_ARIA_ROLE_BUTTON">
Button
</message>
<message desc="Braille of element with the ARIA role button." name="IDS_CHROMEVOX_ARIA_ROLE_BUTTON_BRL">
btn
</message>
<message desc="Describes an element with the ARIA role checkbox." name="IDS_CHROMEVOX_ARIA_ROLE_CHECKBOX">
Check box
</message>
<message desc="Braille of element with the ARIA role checkbox." name="IDS_CHROMEVOX_ARIA_ROLE_CHECKBOX_BRL">
chk
</message>
<message desc="Describes an element with the ARIA role combobox." name="IDS_CHROMEVOX_ARIA_ROLE_COMBOBOX">
Combo box
</message>
<message desc="Braille of element with the ARIA role combobox." name="IDS_CHROMEVOX_ARIA_ROLE_COMBOBOX_BRL">
cbo
</message>
<message desc="Describes an element with the ARIA role dialog." name="IDS_CHROMEVOX_ARIA_ROLE_DIALOG">
Dialog
</message>
<message desc="Braille of element with the ARIA role dialog." name="IDS_CHROMEVOX_ARIA_ROLE_DIALOG_BRL">
dlg
</message>
<message desc="Describes an element with the ARIA role grid." name="IDS_CHROMEVOX_ARIA_ROLE_GRID">
Grid
</message>
<message desc="Braille of element with the ARIA role grid." name="IDS_CHROMEVOX_ARIA_ROLE_GRID_BRL">
grd
</message>
<message desc="Describes an element with the ARIA role gridcell." name="IDS_CHROMEVOX_ARIA_ROLE_GRIDCELL">
Cell
</message>
<message desc="Braille of element with the ARIA role gridcell." name="IDS_CHROMEVOX_ARIA_ROLE_GRIDCELL_BRL">
cll
</message>
<message desc="Describes the position of an element with the ARIA role gridcell." name="IDS_CHROMEVOX_ARIA_ROLE_GRIDCELL_POS">
row <ph name="row">$1</ph> column <ph name="col">$2</ph>
</message>
<message desc="Describes an element with the ARIA role link." name="IDS_CHROMEVOX_ARIA_ROLE_LINK">
Link
</message>
<message desc="Braille of element with the ARIA role link." name="IDS_CHROMEVOX_ARIA_ROLE_LINK_BRL">
lnk
</message>
<message desc="Describes a single element with the ARIA role link with count." name="IDS_CHROMEVOX_ARIA_ROLE_LINK_SINGULAR">
1 link
</message>
<message desc="Describes multiple elements with the ARIA role link." name="IDS_CHROMEVOX_ARIA_ROLE_LINK_PLURAL">
<ph name="num">$1</ph> links
</message>
<message desc="Describes an element with the ARIA role listbox." name="IDS_CHROMEVOX_ARIA_ROLE_LISTBOX">
List box
</message>
<message desc="Braille of element with the ARIA role listbox." name="IDS_CHROMEVOX_ARIA_ROLE_LISTBOX_BRL">
lstbx
</message>
<message desc="Describes an element with the ARIA role log." name="IDS_CHROMEVOX_ARIA_ROLE_LOG">
Log
</message>
<message desc="Braille of element with the ARIA role log." name="IDS_CHROMEVOX_ARIA_ROLE_LOG_BRL">
log
</message>
<message desc="Describes an element with the ARIA role marquee." name="IDS_CHROMEVOX_ARIA_ROLE_MARQUEE">
Marquee
</message>
<message desc="Braille of element with the ARIA role marquee." name="IDS_CHROMEVOX_ARIA_ROLE_MARQUEE_BRL">
marquee
</message>
<message desc="Describes an element with the ARIA role menu." name="IDS_CHROMEVOX_ARIA_ROLE_MENU">
Menu
</message>
<message desc="Braille of element with the ARIA role menu." name="IDS_CHROMEVOX_ARIA_ROLE_MENU_BRL">
mnu
</message>
<message desc="Describes an element with the ARIA role menubar." name="IDS_CHROMEVOX_ARIA_ROLE_MENUBAR">
Menu bar
</message>
<message desc="Braille of element with the ARIA role menubar." name="IDS_CHROMEVOX_ARIA_ROLE_MENUBAR_BRL">
mnubr
</message>
<message desc="Describes an element with the ARIA role menuitem." name="IDS_CHROMEVOX_ARIA_ROLE_MENUITEM">
Menu item
</message>
<message desc="Braille of element with the ARIA role menuitem." name="IDS_CHROMEVOX_ARIA_ROLE_MENUITEM_BRL">
mnuitm
</message>
<message desc="Describes an element with the ARIA role menuitemcheckbox." name="IDS_CHROMEVOX_ARIA_ROLE_MENUITEMCHECKBOX">
Menu item check box
</message>
<message desc="Braille of element with the ARIA role menuitemcheckbox." name="IDS_CHROMEVOX_ARIA_ROLE_MENUITEMCHECKBOX_BRL">
chkmnuitm
</message>
<message desc="Describes an element with the ARIA role menuitemradio." name="IDS_CHROMEVOX_ARIA_ROLE_MENUITEMRADIO">
Menu item radio button
</message>
<message desc="Braille of element with the ARIA role menuitemradio." name="IDS_CHROMEVOX_ARIA_ROLE_MENUITEMRADIO_BRL">
rdmnuitm
</message>
<message desc="Describes an element with the ARIA role option." name="IDS_CHROMEVOX_ARIA_ROLE_OPTION">
''' '''
</message>
<message desc="Braille of element with the ARIA role option." name="IDS_CHROMEVOX_ARIA_ROLE_OPTION_BRL">
''' '''
</message>
<message desc="Describes an element with the ARIA role button, with a pop-up." name="IDS_CHROMEVOX_ARIA_ROLE_POPUP_BUTTON">
Pop-up button
</message>
<message desc="Braille of element with the ARIA role button, with a pop-up." name="IDS_CHROMEVOX_ARIA_ROLE_POPUP_BUTTON_BRL">
popbtn
</message>
<message desc="Describes an element with the ARIA role progressbar." name="IDS_CHROMEVOX_ARIA_ROLE_PROGRESSBAR">
Progress bar
</message>
<message desc="Braille of element with the ARIA role progressbar." name="IDS_CHROMEVOX_ARIA_ROLE_PROGRESSBAR_BRL">
pgbar
</message>
<message desc="Describes an element with the ARIA role radio." name="IDS_CHROMEVOX_ARIA_ROLE_RADIO">
Radio button
</message>
<message desc="Braille of element with the ARIA role radio." name="IDS_CHROMEVOX_ARIA_ROLE_RADIO_BRL">
rbtn
</message>
<message desc="Describes an element with the ARIA role radiogroup." name="IDS_CHROMEVOX_ARIA_ROLE_RADIOGROUP">
Radio button group
</message>
<message desc="Braille of element with the ARIA role radiogroup." name="IDS_CHROMEVOX_ARIA_ROLE_RADIOGROUP_BRL">
rdgrp
</message>
<message desc="Describes an element with the ARIA role scrollbar." name="IDS_CHROMEVOX_ARIA_ROLE_SCROLLBAR">
Scroll bar
</message>
<message desc="Braille of element with the ARIA role scrollbar." name="IDS_CHROMEVOX_ARIA_ROLE_SCROLLBAR_BRL">
scbr
</message>
<message desc="Describes an element with the ARIA role slider." name="IDS_CHROMEVOX_ARIA_ROLE_SLIDER">
Slider
</message>
<message desc="Braille of element with the ARIA role slider." name="IDS_CHROMEVOX_ARIA_ROLE_SLIDER_BRL">
sldr
</message>
<message desc="Describes an element with the ARIA role spinbutton." name="IDS_CHROMEVOX_ARIA_ROLE_SPINBUTTON">
Spin button
</message>
<message desc="Braille of element with the ARIA role spinbutton." name="IDS_CHROMEVOX_ARIA_ROLE_SPINBUTTON_BRL">
spnbtn
</message>
<message desc="Describes an element with the ARIA role status." name="IDS_CHROMEVOX_ARIA_ROLE_STATUS">
Status
</message>
<message desc="Braille of element with the ARIA role status." name="IDS_CHROMEVOX_ARIA_ROLE_STATUS_BRL">
sts
</message>
<message desc="Describes an element with the ARIA role tab." name="IDS_CHROMEVOX_ARIA_ROLE_TAB">
Tab
</message>
<message desc="Braille of element with the ARIA role tab." name="IDS_CHROMEVOX_ARIA_ROLE_TAB_BRL">
tab
</message>
<message desc="Describes an element with the ARIA role tablist." name="IDS_CHROMEVOX_ARIA_ROLE_TABLIST">
Tab list
</message>
<message desc="Brailles an element with the ARIA role tablist." name="IDS_CHROMEVOX_ARIA_ROLE_TABLIST_BRL">
tablst
</message>
<message desc="Describes an element with the ARIA role tabpanel." name="IDS_CHROMEVOX_ARIA_ROLE_TABPANEL">
Tab panel
</message>
<message desc="Braille of element with the ARIA role tabpanel." name="IDS_CHROMEVOX_ARIA_ROLE_TABPANEL_BRL">
tabpnl
</message>
<message desc="Describes an element with the ARIA role textbox." name="IDS_CHROMEVOX_ARIA_ROLE_TEXTBOX">
Text box
</message>
<message desc="Braille of element with the ARIA role textbox." name="IDS_CHROMEVOX_ARIA_ROLE_TEXTBOX_BRL">
ed
</message>
<message desc="Describes an element with the ARIA role timer." name="IDS_CHROMEVOX_ARIA_ROLE_TIMER">
Timer
</message>
<message desc="Braille of element with the ARIA role timer." name="IDS_CHROMEVOX_ARIA_ROLE_TIMER_BRL">
tmr
</message>
<message desc="Describes an element with the ARIA role toolbar." name="IDS_CHROMEVOX_ARIA_ROLE_TOOLBAR">
Tool bar
</message>
<message desc="Braille of element with the ARIA role toolbar." name="IDS_CHROMEVOX_ARIA_ROLE_TOOLBAR_BRL">
tlbar
</message>
<message desc="Describes an element with the ARIA role tooltip." name="IDS_CHROMEVOX_ARIA_ROLE_TOOLTIP">
Tool tip
</message>
<message desc="Braille of element with the ARIA role tooltip." name="IDS_CHROMEVOX_ARIA_ROLE_TOOLTIP_BRL">
tltip
</message>
<message desc="Describes an element with the ARIA role treeitem." name="IDS_CHROMEVOX_ARIA_ROLE_TREEITEM">
Tree item
</message>
<message desc="Braille of element with the ARIA role treeitem." name="IDS_CHROMEVOX_ARIA_ROLE_TREEITEM_BRL">
tritm
</message>
<message desc="Describes an element with the ARIA role article." name="IDS_CHROMEVOX_ARIA_ROLE_ARTICLE">
Article
</message>
<message desc="Braille of element with the ARIA role article." name="IDS_CHROMEVOX_ARIA_ROLE_ARTICLE_BRL">
article
</message>
<message desc="Describes an element with the ARIA role application." name="IDS_CHROMEVOX_ARIA_ROLE_APPLICATION">
Application
</message>
<message desc="Braille of element with the ARIA role application." name="IDS_CHROMEVOX_ARIA_ROLE_APPLICATION_BRL">
app
</message>
<message desc="Describes an element with the ARIA role banner." name="IDS_CHROMEVOX_ARIA_ROLE_BANNER">
Banner
</message>
<message desc="Braille of element with the ARIA role banner." name="IDS_CHROMEVOX_ARIA_ROLE_BANNER_BRL">
bnr
</message>
<message desc="Describes an element with the ARIA role columnheader." name="IDS_CHROMEVOX_ARIA_ROLE_COLUMNHEADER">
Column header
</message>
<message desc="Braille of element with the ARIA role columnheader." name="IDS_CHROMEVOX_ARIA_ROLE_COLUMNHEADER_BRL">
colhdr
</message>
<message desc="Describes an element with the ARIA role complementary." name="IDS_CHROMEVOX_ARIA_ROLE_COMPLEMENTARY">
Complementary
</message>
<message desc="Braille of element with the ARIA role complementary." name="IDS_CHROMEVOX_ARIA_ROLE_COMPLEMENTARY_BRL">
complementary
</message>
<message desc="Describes an element with the ARIA role contentinfo." name="IDS_CHROMEVOX_ARIA_ROLE_CONTENTINFO">
Content info
</message>
<message desc="Braille of element with the ARIA role contentinfo." name="IDS_CHROMEVOX_ARIA_ROLE_CONTENTINFO_BRL">
cntntinfo
</message>
<message desc="Describes an element with the ARIA role definition." name="IDS_CHROMEVOX_ARIA_ROLE_DEFINITION">
Definition
</message>
<message desc="Braille of element with the ARIA role definition." name="IDS_CHROMEVOX_ARIA_ROLE_DEFINITION_BRL">
def
</message>
<message desc="Describes an element with the ARIA role directory." name="IDS_CHROMEVOX_ARIA_ROLE_DIRECTORY">
Directory
</message>
<message desc="Braille of element with the ARIA role directory." name="IDS_CHROMEVOX_ARIA_ROLE_DIRECTORY_BRL">
dir
</message>
<message desc="Describes an element with the ARIA role document." name="IDS_CHROMEVOX_ARIA_ROLE_DOCUMENT">
Document
</message>
<message desc="Braille of element with the ARIA role document." name="IDS_CHROMEVOX_ARIA_ROLE_DOCUMENT_BRL">
doc
</message>
<message desc="Describes an element with the ARIA role form." name="IDS_CHROMEVOX_ARIA_ROLE_FORM">
Form
</message>
<message desc="Braille of element with the ARIA role form." name="IDS_CHROMEVOX_ARIA_ROLE_FORM_BRL">
form
</message>
<message desc="Describes a single element with the ARIA role form with count." name="IDS_CHROMEVOX_ARIA_ROLE_FORM_SINGULAR">
1 form
</message>
<message desc="Describes multiple elements with the ARIA role form." name="IDS_CHROMEVOX_ARIA_ROLE_FORM_PLURAL">
<ph name="num">$1</ph> forms
</message>
<message desc="Describes an element with the ARIA role group." name="IDS_CHROMEVOX_ARIA_ROLE_GROUP">
Group
</message>
<message desc="Braille of element with the ARIA role group." name="IDS_CHROMEVOX_ARIA_ROLE_GROUP_BRL">
grp
</message>
<message desc="Describes an element with the ARIA role heading." name="IDS_CHROMEVOX_ARIA_ROLE_HEADING">
Heading
</message>
<message desc="Braille of element with the ARIA role heading." name="IDS_CHROMEVOX_ARIA_ROLE_HEADING_BRL">
hdng
</message>
<message desc="Describes an element with the ARIA role img." name="IDS_CHROMEVOX_ARIA_ROLE_IMG">
Image
</message>
<message desc="Describes an element with the ARIA role img." name="IDS_CHROMEVOX_ARIA_ROLE_IMG_BRL">
img
</message>
<message desc="Describes an element with the ARIA role list." name="IDS_CHROMEVOX_ARIA_ROLE_LIST">
List
</message>
<message desc="Braille of element with the ARIA role list." name="IDS_CHROMEVOX_ARIA_ROLE_LIST_BRL">
lst
</message>
<message desc="Describes an element with the ARIA role listitem." name="IDS_CHROMEVOX_ARIA_ROLE_LISTITEM">
List item
</message>
<message desc="Braille of element with the ARIA role listitem." name="IDS_CHROMEVOX_ARIA_ROLE_LISTITEM_BRL">
lstitm
</message>
<message desc="Describes an element with the ARIA role main." name="IDS_CHROMEVOX_ARIA_ROLE_MAIN">
Main
</message>
<message desc="Braille of element with the ARIA role main." name="IDS_CHROMEVOX_ARIA_ROLE_MAIN_BRL">
main
</message>
<message desc="Describes an element with the ARIA role math." name="IDS_CHROMEVOX_ARIA_ROLE_MATH">
Math
</message>
<message desc="Braille of element with the ARIA role math." name="IDS_CHROMEVOX_ARIA_ROLE_MATH_BRL">
math
</message>
<message desc="Describes an element with the ARIA role navigation." name="IDS_CHROMEVOX_ARIA_ROLE_NAVIGATION">
Navigation
</message>
<message desc="Braille of element with the ARIA role navigation." name="IDS_CHROMEVOX_ARIA_ROLE_NAVIGATION_BRL">
nav
</message>
<message desc="Describes an element with the ARIA role note." name="IDS_CHROMEVOX_ARIA_ROLE_NOTE">
Note
</message>
<message desc="Braille of element with the ARIA role note." name="IDS_CHROMEVOX_ARIA_ROLE_NOTE_BRL">
note
</message>
<message desc="Describes an element with the ARIA role region." name="IDS_CHROMEVOX_ARIA_ROLE_REGION">
Region
</message>
<message desc="Braille of element with the ARIA role region." name="IDS_CHROMEVOX_ARIA_ROLE_REGION_BRL">
rgn
</message>
<message desc="Describes an element with the ARIA role rowheader." name="IDS_CHROMEVOX_ARIA_ROLE_ROWHEADER">
Row header
</message>
<message desc="Braille of element with the ARIA role rowheader." name="IDS_CHROMEVOX_ARIA_ROLE_ROWHEADER_BRL">
rwhdr
</message>
<message desc="Describes an element with the ARIA role search." name="IDS_CHROMEVOX_ARIA_ROLE_SEARCH">
Search
</message>
<message desc="Braille of element with the ARIA role search." name="IDS_CHROMEVOX_ARIA_ROLE_SEARCH_BRL">
srched
</message>
<message desc="Describes an element with the ARIA role separator." name="IDS_CHROMEVOX_ARIA_ROLE_SEPARATOR">
Separator
</message>
<message desc="Braille of element with the ARIA role separator." name="IDS_CHROMEVOX_ARIA_ROLE_SEPARATOR_BRL">
seprtr
</message>
<message desc="Describes an element with the ARIA attribute aria-autocomplete=inline." name="IDS_CHROMEVOX_ARIA_AUTOCOMPLETE_INLINE">
Autocompletion inline
</message>
<message desc="Braille of element with the ARIA attribute aria-autocomplete=inline." name="IDS_CHROMEVOX_ARIA_AUTOCOMPLETE_INLINE_BRL">
autoinl
</message>
<message desc="Describes an element with the ARIA attribute aria-autocomplete=list." name="IDS_CHROMEVOX_ARIA_AUTOCOMPLETE_LIST">
Autocompletion list
</message>
<message desc="Braille of element with the ARIA attribute aria-autocomplete=list." name="IDS_CHROMEVOX_ARIA_AUTOCOMPLETE_LIST_BRL">
autolst
</message>
<message desc="Describes an element with the ARIA attribute aria-autocomplete=both." name="IDS_CHROMEVOX_ARIA_AUTOCOMPLETE_BOTH">
Autocompletion inline and list
</message>
<message desc="Brailles an element with the ARIA attribute aria-autocomplete=both." name="IDS_CHROMEVOX_ARIA_AUTOCOMPLETE_BOTH_BRL">
autoinl+lst
</message>
<message desc="Describes an element with the ARIA attribute aria-checked=true." name="IDS_CHROMEVOX_ARIA_CHECKED_TRUE">
Checked
</message>
<message desc="Braille of element with the ARIA attribute aria-checked=true." name="IDS_CHROMEVOX_ARIA_CHECKED_TRUE_BRL">
x
</message>
<message desc="Describes an element with the ARIA attribute aria-checked=false." name="IDS_CHROMEVOX_ARIA_CHECKED_FALSE">
Not checked
</message>
<message desc="Braille of element with the ARIA attribute aria-checked=false." name="IDS_CHROMEVOX_ARIA_CHECKED_FALSE_BRL">
''' '''
</message>
<message desc="Describes an element with the ARIA attribute aria-checked=mixed." name="IDS_CHROMEVOX_ARIA_CHECKED_MIXED">
Partially checked
</message>
<message desc="Braille of element with the ARIA attribute aria-checked=mixed." name="IDS_CHROMEVOX_ARIA_CHECKED_MIXED_BRL">
-
</message>
<message desc="Describes an element with the ARIA attribute aria-disabled=true." name="IDS_CHROMEVOX_ARIA_DISABLED_TRUE">
Disabled
</message>
<message desc="Braille of element with the ARIA attribute aria-disabled=true." name="IDS_CHROMEVOX_ARIA_DISABLED_TRUE_BRL">
xx
</message>
<message desc="Describes an element with the ARIA attribute aria-expanded=true." name="IDS_CHROMEVOX_ARIA_EXPANDED_TRUE">
Expanded
</message>
<message desc="Braille of element with the ARIA attribute aria-expanded=true." name="IDS_CHROMEVOX_ARIA_EXPANDED_TRUE_BRL">
-
</message>
<message desc="Describes an element with the ARIA attribute aria-expanded=false." name="IDS_CHROMEVOX_ARIA_EXPANDED_FALSE">
Collapsed
</message>
<message desc="Braille of element with the ARIA attribute aria-expanded=false." name="IDS_CHROMEVOX_ARIA_EXPANDED_FALSE_BRL">
+
</message>
<message desc="Describes an element with the ARIA attribute aria-invalid=true." name="IDS_CHROMEVOX_ARIA_INVALID_TRUE">
Invalid input
</message>
<message desc="Braille of element with the ARIA attribute aria-invalid=true." name="IDS_CHROMEVOX_ARIA_INVALID_TRUE_BRL">
!
</message>
<message desc="Describes an element with the ARIA attribute aria-invalid=grammar." name="IDS_CHROMEVOX_ARIA_INVALID_GRAMMAR">
Grammatical mistake detected
</message>
<message desc="Braille of element with the ARIA attribute aria-invalid=grammar." name="IDS_CHROMEVOX_ARIA_INVALID_GRAMMAR_BRL">
grammatical mistake
</message>
<message desc="Describes an element with the ARIA attribute aria-invalid=spelling." name="IDS_CHROMEVOX_ARIA_INVALID_SPELLING">
Spelling mistake detected
</message>
<message desc="Braille of element with the ARIA attribute aria-invalid=spelling." name="IDS_CHROMEVOX_ARIA_INVALID_SPELLING_BRL">
misspelled
</message>
<message desc="Describes an element with the ARIA attribute aria-multiline=true." name="IDS_CHROMEVOX_ARIA_MULTILINE_TRUE">
Multi line
</message>
<message desc="Braille of element with the ARIA attribute aria-multiline=true." name="IDS_CHROMEVOX_ARIA_MULTILINE_TRUE_BRL">
multln
</message>
<message desc="Describes an element with the ARIA attribute aria-multiselectable=true." name="IDS_CHROMEVOX_ARIA_MULTISELECTABLE_TRUE">
Multi select
</message>
<message desc="Braille of element with the ARIA attribute aria-multiselectable=true." name="IDS_CHROMEVOX_ARIA_MULTISELECTABLE_TRUE_BRL">
multsel
</message>
<message desc="Describes an element with the ARIA attribute aria-pressed=true." name="IDS_CHROMEVOX_ARIA_PRESSED_TRUE">
Pressed
</message>
<message desc="Braille of element with the ARIA attribute aria-pressed=true." name="IDS_CHROMEVOX_ARIA_PRESSED_TRUE_BRL">
=
</message>
<message desc="Describes an element with the ARIA attribute aria-pressed=false." name="IDS_CHROMEVOX_ARIA_PRESSED_FALSE">
Not pressed
</message>
<message desc="Braille of element with the ARIA attribute aria-pressed=false." name="IDS_CHROMEVOX_ARIA_PRESSED_FALSE_BRL">
''' '''
</message>
<message desc="Describes an element with the ARIA attribute aria-pressed=mixed." name="IDS_CHROMEVOX_ARIA_PRESSED_MIXED">
Partially pressed
</message>
<message desc="Braille of element with the ARIA attribute aria-pressed=mixed." name="IDS_CHROMEVOX_ARIA_PRESSED_MIXED_BRL">
-
</message>
<message desc="Describes an element with the ARIA attribute aria-readonly=true." name="IDS_CHROMEVOX_ARIA_READONLY_TRUE">
Read only
</message>
<message desc="Braille of element with the ARIA attribute aria-readonly=true." name="IDS_CHROMEVOX_ARIA_READONLY_TRUE_BRL">
rdonly
</message>
<message desc="Describes an element with the ARIA attribute aria-required=true." name="IDS_CHROMEVOX_ARIA_REQUIRED_TRUE">
Required
</message>
<message desc="Braille of element with the ARIA attribute aria-required=true." name="IDS_CHROMEVOX_ARIA_REQUIRED_TRUE_BRL">
rq
</message>
<message desc="Describes an element with the ARIA attribute aria-selected=true." name="IDS_CHROMEVOX_ARIA_SELECTED_TRUE">
Selected
</message>
<message desc="Braille of element with the ARIA attribute aria-selected=true." name="IDS_CHROMEVOX_ARIA_SELECTED_TRUE_BRL">
x
</message>
<message desc="Describes an element with the ARIA attribute aria-selected=false." name="IDS_CHROMEVOX_ARIA_SELECTED_FALSE">
Not selected
</message>
<message desc="Braille of element with the ARIA attribute aria-selected=false." name="IDS_CHROMEVOX_ARIA_SELECTED_FALSE_BRL">
''' '''
</message>
<message desc="Spoken to describe an <a> tag." name="IDS_CHROMEVOX_TAG_LINK">
Link
</message>
<message desc="Spoken to describe a visited link." name="IDS_CHROMEVOX_VISITED_LINK">
Visited link
</message>
<message desc="Brailled to describe an <a> tag." name="IDS_CHROMEVOX_TAG_LINK_BRL">
lnk
</message>
<message desc="Brailled to describe a visited link." name="IDS_CHROMEVOX_VISITED_LINK_BRL">
vlnk
</message>
<message desc="Spoken to describe a <button> tag." name="IDS_CHROMEVOX_TAG_BUTTON">
Button
</message>
<message desc="Brailled to describe a <button> tag." name="IDS_CHROMEVOX_TAG_BUTTON_BRL">
btn
</message>
<message desc="Spoken to describe a <h1> tag." name="IDS_CHROMEVOX_TAG_H1">
Heading 1
</message>
<message desc="Brailled to describe a <h1> tag." name="IDS_CHROMEVOX_TAG_H1_BRL">
h1
</message>
<message desc="Spoken to describe a <h2> tag." name="IDS_CHROMEVOX_TAG_H2">
Heading 2
</message>
<message desc="Brailled to describe a <h2> tag." name="IDS_CHROMEVOX_TAG_H2_BRL">
h2
</message>
<message desc="Spoken to describe a <h3> tag." name="IDS_CHROMEVOX_TAG_H3">
Heading 3
</message>
<message desc="Brailled to describe a <h3> tag." name="IDS_CHROMEVOX_TAG_H3_BRL">
h3
</message>
<message desc="Spoken to describe a <h4> tag." name="IDS_CHROMEVOX_TAG_H4">
Heading 4
</message>
<message desc="Brailled to describe a <h4> tag." name="IDS_CHROMEVOX_TAG_H4_BRL">
h4
</message>
<message desc="Spoken to describe a <h5> tag." name="IDS_CHROMEVOX_TAG_H5">
Heading 5
</message>
<message desc="Brailled to describe a <h5> tag." name="IDS_CHROMEVOX_TAG_H5_BRL">
h5
</message>
<message desc="Spoken to describe a <h6> tag." name="IDS_CHROMEVOX_TAG_H6">
Heading 6
</message>
<message desc="Brailled to describe a <h6> tag." name="IDS_CHROMEVOX_TAG_H6_BRL">
h6
</message>
<message desc="Spoken to describe a <li> tag." name="IDS_CHROMEVOX_TAG_LI">
List item
</message>
<message desc="Brailled to describe a <li> tag." name="IDS_CHROMEVOX_TAG_LI_BRL">
lstitm
</message>
<message desc="Spoken to describe a <ol> tag." name="IDS_CHROMEVOX_TAG_OL">
Ordered List
</message>
<message desc="Brailled to describe a <ol> tag." name="IDS_CHROMEVOX_TAG_OL_BRL">
lst
</message>
<message desc="Spoken to describe a <select> tag." name="IDS_CHROMEVOX_TAG_SELECT">
Combo box
</message>
<message desc="Brailled to describe a <select> tag." name="IDS_CHROMEVOX_TAG_SELECT_BRL">
cbo
</message>
<message desc="Spoken to describe a <textarea> tag." name="IDS_CHROMEVOX_TAG_TEXTAREA">
Text area
</message>
<message desc="Brailled to describe a <textarea> tag." name="IDS_CHROMEVOX_TAG_TEXTAREA_BRL">
mled
</message>
<message desc="Spoken to describe a <table> tag." name="IDS_CHROMEVOX_TAG_TABLE">
table
</message>
<message desc="Brailled to describe a <table> tag." name="IDS_CHROMEVOX_TAG_TABLE_BRL">
tbl
</message>
<message desc="Spoken to describe a <ul> tag." name="IDS_CHROMEVOX_TAG_UL">
List
</message>
<message desc="Brailled to describe a <ul> tag." name="IDS_CHROMEVOX_TAG_UL_BRL">
lst
</message>
<message desc="Spoken to describe a <section> tag." name="IDS_CHROMEVOX_TAG_SECTION">
Section
</message>
<message desc="Brailled to describe a <section> tag." name="IDS_CHROMEVOX_TAG_SECTION_BRL">
sctn
</message>
<message desc="Spoken to describe a <nav> tag." name="IDS_CHROMEVOX_TAG_NAV">
Navigation
</message>
<message desc="Brailled to describe a <nav> tag." name="IDS_CHROMEVOX_TAG_NAV_BRL">
nav
</message>
<message desc="Spoken to describe a <article> tag." name="IDS_CHROMEVOX_TAG_ARTICLE">
Article
</message>
<message desc="Brailled to describe a <article> tag." name="IDS_CHROMEVOX_TAG_ARTICLE_BRL">
article
</message>
<message desc="Spoken to describe a <aside> tag." name="IDS_CHROMEVOX_TAG_ASIDE">
Aside
</message>
<message desc="Brailled to describe a <aside> tag." name="IDS_CHROMEVOX_TAG_ASIDE_BRL">
aside
</message>
<message desc="Spoken to describe a <hgroup> tag." name="IDS_CHROMEVOX_TAG_HGROUP">
Heading group
</message>
<message desc="Brailled to describe a <hgroup> tag." name="IDS_CHROMEVOX_TAG_HGROUP_BRL">
hdnggrp
</message>
<message desc="Spoken to describe a <header> tag." name="IDS_CHROMEVOX_TAG_HEADER">
Header
</message>
<message desc="Brailled to describe a <header> tag." name="IDS_CHROMEVOX_TAG_HEADER_BRL">
hdr
</message>
<message desc="Spoken to describe a <footer> tag." name="IDS_CHROMEVOX_TAG_FOOTER">
Footer
</message>
<message desc="Brailled to describe a <footer> tag." name="IDS_CHROMEVOX_TAG_FOOTER_BRL">
ftr
</message>
<message desc="Spoken to describe a <time> tag." name="IDS_CHROMEVOX_TAG_TIME">
Time
</message>
<message desc="Brailled to describe a <time> tag." name="IDS_CHROMEVOX_TAG_TIME_BRL">
''' '''
</message>
<message desc="Spoken to describe a <mark> tag." name="IDS_CHROMEVOX_TAG_MARK">
Mark
</message>
<message desc="Brailled to describe a <mark> tag." name="IDS_CHROMEVOX_TAG_MARK_BRL">
mark
</message>
<message desc="Spoken to describe a <video> tag." name="IDS_CHROMEVOX_TAG_VIDEO">
Video
</message>
<message desc="Brailled to describe a <video> tag." name="IDS_CHROMEVOX_TAG_VIDEO_BRL">
video
</message>
<message desc="Spoken to describe a <audio> tag." name="IDS_CHROMEVOX_TAG_AUDIO">
Audio
</message>
<message desc="Brailled to describe a <audio> tag." name="IDS_CHROMEVOX_TAG_AUDIO_BRL">
audio
</message>
<message desc="Describes an <input> element with type=button." name="IDS_CHROMEVOX_INPUT_TYPE_BUTTON">
Button
</message>
<message desc="Brailles an <input> element with type=button." name="IDS_CHROMEVOX_INPUT_TYPE_BUTTON_BRL">
btn
</message>
<message desc="Describes an <input> element with type=checkbox." name="IDS_CHROMEVOX_INPUT_TYPE_CHECKBOX">
Check box
</message>
<message desc="Brailles an <input> element with type=checkbox." name="IDS_CHROMEVOX_INPUT_TYPE_CHECKBOX_BRL">
chk
</message>
<message desc="Describes an <input> element with type=color." name="IDS_CHROMEVOX_INPUT_TYPE_COLOR">
Color picker
</message>
<message desc="Brailles an <input> element with type=color." name="IDS_CHROMEVOX_INPUT_TYPE_COLOR_BRL">
color picker
</message>
<message desc="Describes an <input> element with type=datetime." name="IDS_CHROMEVOX_INPUT_TYPE_DATETIME">
Date time control
</message>
<message desc="Brailles an <input> element with type=datetime." name="IDS_CHROMEVOX_INPUT_TYPE_DATETIME_BRL">
date time
</message>
<message desc="Describes an <input> element with type=datetime-local." name="IDS_CHROMEVOX_INPUT_TYPE_DATETIME_LOCAL">
Date time control
</message>
<message desc="Brailles an <input> element with type=datetime-local." name="IDS_CHROMEVOX_INPUT_TYPE_DATETIME_LOCAL_BRL">
date time
</message>
<message desc="Describes an <input> element with type=date." name="IDS_CHROMEVOX_INPUT_TYPE_DATE">
Date control
</message>
<message desc="Brailles an <input> element with type=date." name="IDS_CHROMEVOX_INPUT_TYPE_DATE_BRL">
date
</message>
<message desc="Describes an <input> element with type=email." name="IDS_CHROMEVOX_INPUT_TYPE_EMAIL">
Edit text, email entry
</message>
<message desc="Brailles an <input> element with type=email." name="IDS_CHROMEVOX_INPUT_TYPE_EMAIL_BRL">
@ed
</message>
<message desc="Describes an <input> element with type=file." name="IDS_CHROMEVOX_INPUT_TYPE_FILE">
File selection
</message>
<message desc="Brailles an <input> element with type=file." name="IDS_CHROMEVOX_INPUT_TYPE_FILE_BRL">
file
</message>
<message desc="Describes an <input> element with type=image." name="IDS_CHROMEVOX_INPUT_TYPE_IMAGE">
Button
</message>
<message desc="Brailles an <input> element with type=image." name="IDS_CHROMEVOX_INPUT_TYPE_IMAGE_BRL">
btn
</message>
<message desc="Describes an <input> element with type=month." name="IDS_CHROMEVOX_INPUT_TYPE_MONTH">
Month control
</message>
<message desc="Brailles an <input> element with type=month." name="IDS_CHROMEVOX_INPUT_TYPE_MONTH_BRL">
month
</message>
<message desc="Describes an <input> element with type=number." name="IDS_CHROMEVOX_INPUT_TYPE_NUMBER">
Edit text numeric only
</message>
<message desc="Brailles an <input> element with type=number." name="IDS_CHROMEVOX_INPUT_TYPE_NUMBER_BRL">
#ed
</message>
<message desc="Describes an <input> element with type=password." name="IDS_CHROMEVOX_INPUT_TYPE_PASSWORD">
Password edit text
</message>
<message desc="Brailles an <input> element with type=password." name="IDS_CHROMEVOX_INPUT_TYPE_PASSWORD_BRL">
pwded
</message>
<message desc="Describes an <input> element with type=radio." name="IDS_CHROMEVOX_INPUT_TYPE_RADIO">
Radio button
</message>
<message desc="Brailles an <input> element with type=radio." name="IDS_CHROMEVOX_INPUT_TYPE_RADIO_BRL">
rbtn
</message>
<message desc="Describes an <input> element with type=range." name="IDS_CHROMEVOX_INPUT_TYPE_RANGE">
Slider
</message>
<message desc="Brailles an <input> element with type=range." name="IDS_CHROMEVOX_INPUT_TYPE_RANGE_BRL">
sldr
</message>
<message desc="Describes an <input> element with type=reset." name="IDS_CHROMEVOX_INPUT_TYPE_RESET">
Reset
</message>
<message desc="Brailles an <input> element with type=reset." name="IDS_CHROMEVOX_INPUT_TYPE_RESET_BRL">
reset
</message>
<message desc="Describes an <input> element with type=search." name="IDS_CHROMEVOX_INPUT_TYPE_SEARCH">
Edit text, search entry
</message>
<message desc="Brailles an <input> element with type=search." name="IDS_CHROMEVOX_INPUT_TYPE_SEARCH_BRL">
srched
</message>
<message desc="Describes an <input> element with type=submit." name="IDS_CHROMEVOX_INPUT_TYPE_SUBMIT">
Button
</message>
<message desc="Brailles an <input> element with type=submit." name="IDS_CHROMEVOX_INPUT_TYPE_SUBMIT_BRL">
btn
</message>
<message desc="Describes an <input> element with type=tel." name="IDS_CHROMEVOX_INPUT_TYPE_TEL">
Edit text, number entry
</message>
<message desc="Brailles an <input> element with type=tel." name="IDS_CHROMEVOX_INPUT_TYPE_TEL_BRL">
#ed
</message>
<message desc="Describes an <input> element with type=text." name="IDS_CHROMEVOX_INPUT_TYPE_TEXT">
Edit text
</message>
<message desc="Brailles an <input> element with type=text." name="IDS_CHROMEVOX_INPUT_TYPE_TEXT_BRL">
ed
</message>
<message desc="Describes an <input> element with type=url." name="IDS_CHROMEVOX_INPUT_TYPE_URL">
Edit text, URL entry
</message>
<message desc="Brailles an <input> element with type=url." name="IDS_CHROMEVOX_INPUT_TYPE_URL_BRL">
urled
</message>
<message desc="Describes an <input> element with type=week." name="IDS_CHROMEVOX_INPUT_TYPE_WEEK">
Week of the year control
</message>
<message desc="Brailles an <input> element with type=week." name="IDS_CHROMEVOX_INPUT_TYPE_WEEK_BRL">
week
</message>
<message desc="Spoken to describe a <a> tag with a link to an internal anchor." name="IDS_CHROMEVOX_INTERNAL_LINK">
Internal link
</message>
<message desc="Brailles to describe a <a> tag with a link to an internal anchor." name="IDS_CHROMEVOX_INTERNAL_LINK_BRL">
intlnk
</message>
<message desc="In an editable text box, describes a blank line." name="IDS_CHROMEVOX_TEXT_BOX_BLANK">
Blank
</message>
<message desc="In an editable text box, describes a line with only whitespace." name="IDS_CHROMEVOX_TEXT_BOX_WHITESPACE">
Space
</message>
<message desc="Further describes a list-like element with a number of items. e.g. This will be combined with other messages to produce: List with 3 items. NOTE(deboer): This is questionable, it may be better to include 'List' in this message." name="IDS_CHROMEVOX_LIST_WITH_ITEMS">
with <ph name="num">$1</ph> items
</message>
<message desc="Further describes a list-like element with a number of items in braille." name="IDS_CHROMEVOX_LIST_WITH_ITEMS_BRL">
+<ph name="num">$1</ph>
</message>
<message desc="Describes the state of a progress bar, in percent." name="IDS_CHROMEVOX_STATE_PERCENT">
<ph name="num">$1</ph>%
</message>
<message desc="Brailles the state of a progress bar, in percent." name="IDS_CHROMEVOX_STATE_PERCENT_BRL">
<ph name="num">$1</ph>%
</message>
<message desc="Phrase indicating a menu item has a submenu." name="IDS_CHROMEVOX_HAS_SUBMENU">
with submenu
</message>
<message desc="Brailled after an menu is spoken if the menu has a submenu." name="IDS_CHROMEVOX_HAS_SUBMENU_BRL">
->
</message>
<message desc="Phrase indicating a control has a pop-up component to it." name="IDS_CHROMEVOX_HAS_POPUP">
has popup
</message>
<message desc="Brailled phrase indicating a control has a pop-up component to it." name="IDS_CHROMEVOX_HAS_POPUP_BRL">
has popup
</message>
<message desc="Describes a collection of tags. e.g. A 'link collection'." name="IDS_CHROMEVOX_COLLECTION">
<ph name="tag">$1</ph> collection with <ph name="num">$2</ph> items
</message>
<message desc='The "Enter" key on the keyboard.' name="IDS_CHROMEVOX_ENTER_KEY">
Enter
</message>
<message desc='The "Space" key on the keyboard.' name="IDS_CHROMEVOX_SPACE_KEY">
Space
</message>
<message desc='The "Backspace" key on the keyboard.' name="IDS_CHROMEVOX_BACKSPACE_KEY">
Backspace
</message>
<message desc='The "Tab" key on the keyboard.' name="IDS_CHROMEVOX_TAB_KEY">
Tab
</message>
<message desc='The "Left" key on the keyboard.' name="IDS_CHROMEVOX_LEFT_KEY">
Left
</message>
<message desc='The "Up" key on the keyboard.' name="IDS_CHROMEVOX_UP_KEY">
Up
</message>
<message desc='The "Right" key on the keyboard.' name="IDS_CHROMEVOX_RIGHT_KEY">
Right
</message>
<message desc='The "Down" key on the keyboard.' name="IDS_CHROMEVOX_DOWN_KEY">
Down
</message>
<message desc="Describes an element with a link that has no known URL." name="IDS_CHROMEVOX_UNKNOWN_LINK">
Unknown link
</message>
<message desc="The spoken feedback for the command to toggle ChromeVox between active and inactive states." name="IDS_CHROMEVOX_TOGGLE_CHROMEVOX_ACTIVE">
Toggle ChromeVox active or inactive.
</message>
<message desc="The spoken feedback when ChromeVox becomes inactive." name="IDS_CHROMEVOX_CHROMEVOX_INACTIVE">
ChromeVox is now inactive.
</message>
<message desc="The description of the command to toggle ChromeVox classic." name="IDS_CHROMEVOX_TOGGLE_CHROMEVOX">
Toggle ChromeVox classic.
</message>
<message desc="The indicator of a pause to tts." name="IDS_CHROMEVOX_PAUSE">
, '''
</message>
<message desc="The indicator of a end to tts." name="IDS_CHROMEVOX_END">
. '''
</message>
<message desc="Description of the previous different element command displayed in the options page." name="IDS_CHROMEVOX_PREVIOUS_DIFFERENT_ELEMENT">
Previous different element.
</message>
<message desc="Description of the next different element command displayed in the options page." name="IDS_CHROMEVOX_NEXT_DIFFERENT_ELEMENT">
Next different element.
</message>
<message desc="Description of the previous similar element command displayed in the options page." name="IDS_CHROMEVOX_PREVIOUS_SIMILAR_ELEMENT">
Previous similar element.
</message>
<message desc="Description of the next similar element command." name="IDS_CHROMEVOX_NEXT_SIMILAR_ELEMENT">
Next similar element.
</message>
<message desc="Verbal indication of no more similar elements." name="IDS_CHROMEVOX_NO_MORE_SIMILAR_ELEMENTS">
No more similar elements.
</message>
<message desc="Verbal indication of no more different elements." name="IDS_CHROMEVOX_NO_MORE_DIFFERENT_ELEMENTS">
No more different elements.
</message>
<message desc="Describes an element with the ARIA role link." name="IDS_CHROMEVOX_INDEX_TOTAL">
<ph name="index">$1</ph> of <ph name="total">$2</ph>
</message>
<message desc="Description of the enter group exploration user command. Displayed in the Options page." name="IDS_CHROMEVOX_ENTER_CSS_SPACE">
Enter group exploration
</message>
<message desc="Spoken when entering group exploration." name="IDS_CHROMEVOX_ENTER_GROUP_EXPLORATION">
Exploring groups
</message>
<message desc="A message displayed at the top of PDF files where text has been automatically extracted for accessibility." name="IDS_CHROMEVOX_PDF_HEADER">
This page contains the text automatically extracted from the PDF file <b><ph name="filename">$1</ph></b>. <a href="<ph name="url">$2</ph>">Click here for the original.</a>
</message>
<message desc="A message spoken when the user switches to the object granularity, which allows users to navigate the page by objects." name="IDS_CHROMEVOX_OBJECT_STRATEGY">
Object
</message>
<message desc="A message spoken when the user switches to the group granularity, which allows users to navigate the page by groups." name="IDS_CHROMEVOX_GROUP_STRATEGY">
Group
</message>
<message desc="A message spoken when the user switches to the table granularity, which allows users to navigate within a group." name="IDS_CHROMEVOX_TABLE_STRATEGY">
Table
</message>
<message desc="A message spoken when the user switches to the row granularity, which allows users to navigate within a table." name="IDS_CHROMEVOX_ROW_GRANULARITY">
Row
</message>
<message desc="A message spoken when the user switches to the column granularity, which allows users to navigate within a column." name="IDS_CHROMEVOX_COLUMN_GRANULARITY">
Column
</message>
<message desc="A message spoken when the user switches to the MathMl tree granularity, which allows users to navigate within a math expression." name="IDS_CHROMEVOX_MATHML_TREE_GRANULARITY">
Math ML Tree
</message>
<message desc="A message spoken when the user switches to the MathMl layout granularity, which allows users to navigate within a math expression." name="IDS_CHROMEVOX_MATHML_LAYOUT_GRANULARITY">
Math ML Layout
</message>
<message desc="A message spoken when the user switches to the MathMl token granularity, which allows users to navigate within a math expression." name="IDS_CHROMEVOX_MATHML_TOKEN_GRANULARITY">
Math ML Token
</message>
<message desc="A message spoken when the user switches to the MathMl leaf granularity, which allows users to navigate within a math expression." name="IDS_CHROMEVOX_MATHML_LEAF_GRANULARITY">
Math ML Leaf
</message>
<message desc="A message spoken when the user switches to the visual granularity, which allows users to navigate the page by visual regions." name="IDS_CHROMEVOX_VISUAL_STRATEGY">
Visual
</message>
<message desc="A message spoken when the user switches to a custom granularity, which allows users to navigate in a yet-to-be-defined manner." name="IDS_CHROMEVOX_CUSTOM_STRATEGY">
Custom
</message>
<message desc="A message spoken when the user switches to the line granularity, which allows users to navigate the page one line at a time." name="IDS_CHROMEVOX_LINE_GRANULARITY">
Line
</message>
<message desc="A message spoken when the user switches to the sentence granularity, which allows users to navigate the page one sentence at a time." name="IDS_CHROMEVOX_SENTENCE_GRANULARITY">
Sentence
</message>
<message desc="A message spoken when the user switches to the word granularity, which allows users to navigate the page one word at a time." name="IDS_CHROMEVOX_WORD_GRANULARITY">
Word
</message>
<message desc="A message spoken when the user switches to the character granularity, which allows users to navigate the page one character at a time." name="IDS_CHROMEVOX_CHARACTER_GRANULARITY">
Character
</message>
<message desc="Spoken when the search widget first shows." name="IDS_CHROMEVOX_SEARCH_WIDGET_INTRO">
Find in page.
</message>
<message desc="Spoken help message when the search widget shows." name="IDS_CHROMEVOX_SEARCH_WIDGET_INTRO_HELP">
Enter a search query.
</message>
<message desc="Spoken message when the search widget hides." name="IDS_CHROMEVOX_SEARCH_WIDGET_OUTRO">
Exited find in page.
</message>
<message desc="Spoken message when the search widget has no more search results." name="IDS_CHROMEVOX_SEARCH_WIDGET_NO_RESULTS">
No more results.
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_MODIFIER_KEYS">
Modifier Keys
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_NAVIGATION">
ChromeVox Navigation
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_INFORMATION">
Information
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_HELP_COMMANDS">
Help Commands
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_CONTROLLING_SPEECH">
Controlling Speech
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_OVERVIEW">
Overview
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_TABLES">
Tables
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_JUMP_COMMANDS">
Jump Commands
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_BRAILLE">
Braille
</message>
<message desc="Category displayed in the options page under keyboard commands." name="IDS_CHROMEVOX_DEVELOPER">
Developer
</message>
<message desc="Name of the classic key map." name="IDS_CHROMEVOX_KEYMAP_CLASSIC">
Classic keymap
</message>
<message desc="Name of the flat key map." name="IDS_CHROMEVOX_KEYMAP_FLAT">
Flat keymap
</message>
<message desc="Name of the experimental key map." name="IDS_CHROMEVOX_KEYMAP_EXPERIMENTAL">
Experimental keymap
</message>
<message desc="Description of the TTS console logging command. Displayed in the options page." name="IDS_CHROMEVOX_ENABLE_TTS_LOG">
Enable TTS logging
</message>
<message desc="Spoken when a user begins a selection on a webpage." name="IDS_CHROMEVOX_BEGIN_SELECTION">
Start selection
</message>
<message desc="Spoken when a user ends a selection on a webpage." name="IDS_CHROMEVOX_END_SELECTION">
End selection
</message>
<message desc="Spoken to describe the current selection." name="IDS_CHROMEVOX_SELECTION_IS">
Selection is '''
</message>
<message desc="Describes the toggle selection command. Displayed in the options page." name="IDS_CHROMEVOX_TOGGLE_SELECTION">
Start or end selection.
</message>
<message desc="Spoken when the browser's copy command is invoked." name="IDS_CHROMEVOX_COPY">
copy.
</message>
<message desc="Spoken when the browser's cut command is invoked." name="IDS_CHROMEVOX_CUT">
cut.
</message>
<message desc="Spoken when the browser's paste command is invoked." name="IDS_CHROMEVOX_PASTE">
paste.
</message>
<message desc="Spoken when additional characters are selected in editable text." name="IDS_CHROMEVOX_SELECTED">
selected
</message>
<message desc="Spoken in editable text when text is unselected." name="IDS_CHROMEVOX_UNSELECTED">
unselected
</message>
<message desc="Spoken when more than one character gets added to selection in editable text." name="IDS_CHROMEVOX_ADDED_TO_SELECTION">
added to selection
</message>
<message desc="Spoken when more than one character gets removed from selection in editable text." name="IDS_CHROMEVOX_REMOVED_FROM_SELECTION">
removed from selection
</message>
<message desc="Spoken as the conjunction between hotkey combinations like ctrl then alt followed by a." name="IDS_CHROMEVOX_THEN">
then
</message>
<message desc="Spoken as the conjunction between hotkey combinations like ctrl then alt followed by a." name="IDS_CHROMEVOX_FOLLOWED_BY">
followed by
</message>
<message desc="Spoken to describe the ChromeVox modifier keys when describing a key combination." name="IDS_CHROMEVOX_MODIFIER_KEY">
ChromeVox modifier
</message>
<message desc="Spoken when a key conflict occurs in the options page." name="IDS_CHROMEVOX_KEY_CONFLICT">
<ph name="key">$1</ph> is already assigned to a command.
</message>
<message desc="Spoken to describe the current selection is a Math object." name="IDS_CHROMEVOX_MATH_EXPR">
Math
</message>
<message desc="Brailled phrase indicating the current selection is a Math object." name="IDS_CHROMEVOX_MATH_EXPR_BRL">
math
</message>
<message desc="Describes an element with the ARIA role math." name="IDS_CHROMEVOX_NOT_INSIDE_MATH">
Not inside math
</message>
<message desc="Time widget. Indicates the user is on the AM/PM field." name="IDS_CHROMEVOX_TIMEWIDGET_AMPM">
AM PM
</message>
<message desc="Time widget. Indicates the user is on the hours field." name="IDS_CHROMEVOX_TIMEWIDGET_HOURS">
hours
</message>
<message desc="Time widget. Indicates the user is on the minutes field." name="IDS_CHROMEVOX_TIMEWIDGET_MINUTES">
minutes
</message>
<message desc="Time widget. Indicates the user is on the seconds field." name="IDS_CHROMEVOX_TIMEWIDGET_SECONDS">
seconds
</message>
<message desc="Time widget. Indicates the user is on the milliseconds field." name="IDS_CHROMEVOX_TIMEWIDGET_MILLISECONDS">
milliseconds
</message>
<message desc="Time widget. Indicates the AM/PM is set to AM." name="IDS_CHROMEVOX_TIMEWIDGET_AM">
AM
</message>
<message desc="Time widget. Indicates the AM/PM is set to PM." name="IDS_CHROMEVOX_TIMEWIDGET_PM">
PM
</message>
<message desc="Date widget. Indicates the user is on the week field." name="IDS_CHROMEVOX_DATEWIDGET_WEEK">
week
</message>
<message desc="Date widget. Indicates that the month is January." name="IDS_CHROMEVOX_DATEWIDGET_JANUARY">
January
</message>
<message desc="Date widget. Indicates that the month is February." name="IDS_CHROMEVOX_DATEWIDGET_FEBRUARY">
February
</message>
<message desc="Date widget. Indicates that the month is March." name="IDS_CHROMEVOX_DATEWIDGET_MARCH">
March
</message>
<message desc="Date widget. Indicates that the month is April." name="IDS_CHROMEVOX_DATEWIDGET_APRIL">
April
</message>
<message desc="Date widget. Indicates that the month is May." name="IDS_CHROMEVOX_DATEWIDGET_MAY">
May
</message>
<message desc="Date widget. Indicates that the month is June." name="IDS_CHROMEVOX_DATEWIDGET_JUNE">
June
</message>
<message desc="Date widget. Indicates that the month is July." name="IDS_CHROMEVOX_DATEWIDGET_JULY">
July
</message>
<message desc="Date widget. Indicates that the month is August." name="IDS_CHROMEVOX_DATEWIDGET_AUGUST">
August
</message>
<message desc="Date widget. Indicates that the month is September." name="IDS_CHROMEVOX_DATEWIDGET_SEPTEMBER">
September
</message>
<message desc="Date widget. Indicates that the month is October." name="IDS_CHROMEVOX_DATEWIDGET_OCTOBER">
October
</message>
<message desc="Date widget. Indicates that the month is November." name="IDS_CHROMEVOX_DATEWIDGET_NOVEMBER">
November
</message>
<message desc="Date widget. Indicates that the month is December." name="IDS_CHROMEVOX_DATEWIDGET_DECEMBER">
December
</message>
<message desc="Spoken when a user switches to a mode announcing no punctuation." name="IDS_CHROMEVOX_NO_PUNCTUATION">
No punctuation
</message>
<message desc="Spoken when a user switches to a mode announcing some punctuation." name="IDS_CHROMEVOX_SOME_PUNCTUATION">
Some punctuation
</message>
<message desc="Spoken when a user switches to a mode announcing all punctuation." name="IDS_CHROMEVOX_ALL_PUNCTUATION">
All punctuation
</message>
<message desc="Spoken as help after every search result in search widget." name="IDS_CHROMEVOX_SEARCH_HELP_ITEM">
Press enter to accept or escape to cancel, down for next and up for previous.
</message>
<message desc="Spoken to describe a clickable element." name="IDS_CHROMEVOX_CLICKABLE">
clickable
</message>
<message desc="Brailled to describe a clickable element." name="IDS_CHROMEVOX_CLICKABLE_BRL">
clk
</message>
<message desc="The description of the previous character command. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_CHARACTER">
Previous Character
</message>
<message desc="The description of the next character command. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_CHARACTER">
Next Character
</message>
<message desc="The description of the previous word command. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_WORD">
Previous Word
</message>
<message desc="The description of the next word command. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_WORD">
Next Word
</message>
<message desc="The description of the previous sentence command. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_SENTENCE">
Previous Sentence
</message>
<message desc="The description of the next sentence command. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_SENTENCE">
Next Sentence
</message>
<message desc="The description of the previous line command. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_LINE">
Previous Line
</message>
<message desc="The description of the next line command. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_LINE">
Next Line
</message>
<message desc="The description of the previous object command. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_OBJECT">
Previous Object
</message>
<message desc="The description of the next object command. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_OBJECT">
Next Object
</message>
<message desc="The description of the previous group command. Displayed in the Options page." name="IDS_CHROMEVOX_PREVIOUS_GROUP">
Previous Group
</message>
<message desc="The description of the next group command. Displayed in the Options page." name="IDS_CHROMEVOX_NEXT_GROUP">
Next Group
</message>
<message desc="Describes nodes or anything describing them as a landmark." name="IDS_CHROMEVOX_ROLE_LANDMARK">
Landmark
</message>
<message desc="Spoken when user types invalid keys into the modifier selection field." name="IDS_CHROMEVOX_MODIFIER_ENTRY_ERROR">
No modifier pressed; please press and hold one or more modifiers; lift your fingers once done and you will hear the keys set. Tab to exit.
</message>
<message desc="Spoken when a modifier key becomes successfully set." name="IDS_CHROMEVOX_MODIFIER_ENTRY_SET">
<ph name="key">$1</ph> is now the new ChromeVox modifier.
</message>
<message desc="Spoken when resetting the current keymap to defaults." name="IDS_CHROMEVOX_KEYMAP_RESET">
<ph name="key">$1</ph> has been reset.
</message>
<message desc="Spoken when switched to a keymap different from the current one." name="IDS_CHROMEVOX_KEYMAP_SWITCH">
Switched to <ph name="key">$1</ph>.
</message>
<message desc="The description of the key to move to the beginning of the page. Displayed in the Options page." name="IDS_CHROMEVOX_JUMP_TO_TOP">
Jump to the top of the page
</message>
<message desc="The description of the key to move to the end of the page. Displayed in the Options page." name="IDS_CHROMEVOX_JUMP_TO_BOTTOM">
Jump to the bottom of the page
</message>
<message desc="Message telling the user that they will wrap to the top of the page." name="IDS_CHROMEVOX_WRAPPED_TO_TOP">
Wrapped to top
</message>
<message desc="Message telling the user that they will wrap to the bottom of the page." name="IDS_CHROMEVOX_WRAPPED_TO_BOTTOM">
Wrapped to bottom
</message>
<message desc="Description of the cycle punctuation echo key. Shown in options page." name="IDS_CHROMEVOX_CYCLE_PUNCTUATION_ECHO">
Cycle punctuation echo
</message>
<message desc="Description of the cycle typing echo key. Shown in options page." name="IDS_CHROMEVOX_CYCLE_TYPING_ECHO">
Cycle typing echo
</message>
<message desc="The description of the pauseAllMedia key. Shown in options page." name="IDS_CHROMEVOX_PAUSE_ALL_MEDIA">
Pauses all currently playing media widgets
</message>
<message desc="The description of the openLongDesc key. Shown in options page." name="IDS_CHROMEVOX_OPEN_LONG_DESC">
Open long description in a new tab
</message>
<message desc="Message telling the user that there is no long description if they try to open the long description for an element which does not have one." name="IDS_CHROMEVOX_NO_LONG_DESC">
No long description
</message>
<message desc="Message telling the user that the current image has a long description." name="IDS_CHROMEVOX_IMAGE_WITH_LONG_DESC">
Image with long description
</message>
<message desc="Describes the value of a selection of items within a listbox. For example, 'Mercury to Jupiter, selected 5 items'." name="IDS_CHROMEVOX_SELECTED_OPTIONS_VALUE">
<ph name="v1">$1</ph> to <ph name="v2">$2</ph>
</message>
<message desc="Brailles the value of a selection of items within a listbox. For example, 'Mercury-Jupiter, sld 5'." name="IDS_CHROMEVOX_SELECTED_OPTIONS_VALUE_BRL">
<ph name="v1">$1</ph>-<ph name="v2">$2</ph>
</message>
<message desc="Describes the count of a selection of items within a listbox. For example, 'Mercury to Jupiter, selected 5 items'." name="IDS_CHROMEVOX_SELECTED_OPTIONS_STATE">
selected <ph name="count">$1</ph> items
</message>
<message desc="Brailles the count of a selection of items within a listbox. For example, 'Mercury-Jupiter, sld 5'." name="IDS_CHROMEVOX_SELECTED_OPTIONS_STATE_BRL">
sld <ph name="count">$1</ph>
</message>
<message desc="Spoken when a selection on a page is cleared." name="IDS_CHROMEVOX_CLEAR_PAGE_SELECTION">
cleared selection
</message>
<message desc="Spoken to describe character echo (a setting to speak characters while typing into editable text fields)." name="IDS_CHROMEVOX_CHARACTER_ECHO">
character echo
</message>
<message desc="Spoken to describe word echo (a setting to speak words while typing into editable text fields)." name="IDS_CHROMEVOX_WORD_ECHO">
word echo
</message>
<message desc="Spoken to describe character and word echo (a setting to speak characters and words while typing into editable text fields)." name="IDS_CHROMEVOX_CHARACTER_AND_WORD_ECHO">
character and word echo
</message>
<message desc="Spoken to describe no echo (a setting to not speak characters or words while typing into editable text fields)." name="IDS_CHROMEVOX_NONE_ECHO">
no typing echo
</message>
<message desc="Describes the enter content command in the options page. Content refers to any special structure on the page such as tables or math." name="IDS_CHROMEVOX_ENTER_CONTENT">
enter structured content, such as tables
</message>
<message desc="Describes the exit content command in the options page. Content refers to any special structure on the page such as tables or math." name="IDS_CHROMEVOX_EXIT_CONTENT">
exit structured content, such as tables
</message>
<message desc="Announced when user enters special content such as tables." name="IDS_CHROMEVOX_ENTER_CONTENT_SAY">
entered <ph name="type">$1</ph>
</message>
<message desc="Spoken to describe structural lines." name="IDS_CHROMEVOX_STRUCTURAL_LINE">
structural line
</message>
<message desc="Spoken to describe layout lines." name="IDS_CHROMEVOX_LAYOUT_LINE">
line
</message>
<message desc="Displayed to describe the toggle line type (structural or layout). Shown in the options page." name="IDS_CHROMEVOX_TOGGLE_LINE_TYPE">
Toggle line type between structural or layout
</message>
<message desc="Describes the collection of navigation strategies for a table." name="IDS_CHROMEVOX_TABLE_SHIFTER">
table
</message>
<message desc="Describes the defaultset of navigation strategies." name="IDS_CHROMEVOX_NAVIGATION_SHIFTER">
default navigation
</message>
<message desc="Describes the collection of navigation strategies for math." name="IDS_CHROMEVOX_MATH_SHIFTER">
math
</message>
<message desc="Displayed to describes the key that toggles semantic interpretation of mathematical formulas." name="IDS_CHROMEVOX_TOGGLE_SEMANTICS">
Toggle interpretation of math expressions between structural and semantic
</message>
<message desc="Spoken when semantics interpretation is switched on." name="IDS_CHROMEVOX_SEMANTICS_ON">
Semantics on
</message>
<message desc="Spoken when semantics interpretation is switched off." name="IDS_CHROMEVOX_SEMANTICS_OFF">
Semantics off
</message>
<message desc='Used as a phonetic word hint for a particular letter. The word is used to clarify similarly sounding letters like m and n. This mapping is taken directly from the NATO phonetic standard: https://en.wikipedia.org/wiki/NATO_phonetic_alphabet Please retain the structure of this string. The structure is of the form {"letter": "phonetic word equivalent", ..., "letter": "phonetic word equivalent"}. The first part of the mapping (letter) should be all letters of the localization in lower case. The second part (phonetic word equivalent) should be the word that describes the letter.' name="IDS_CHROMEVOX_PHONETIC_MAP">
{"a": "alpha", "b": "bravo", "c": "charlie", "d": "delta", "e": "echo", "f": "foxtrot", "g": "golf", "h": "hotel", "i": "india", "j": "juliet","k": "kilo", "l": "lima", "m": "mike", "n": "november", "o": "oscar","p": "papa", "q": "quebec", "r": "romeo", "s": "sierra", "t": "tango", "u": "uniform", "v": "victor", "w": "whiskey","x": "xray", "y": "yankee", "z": "zulu"}
</message>
<message desc="Announces that the current page has 1 alert." name="IDS_CHROMEVOX_PAGE_HAS_ONE_ALERT_SINGULAR">
This page has 1 alert
</message>
<message desc="Announces that the current page has multiple alerts." name="IDS_CHROMEVOX_PAGE_HAS_ALERTS_PLURAL">
This page has <ph name="num">$1</ph> alerts
</message>
<message desc="Describes a key sequence that will let the user review (examine and make a decision on) all of the alerts on the page." name="IDS_CHROMEVOX_REVIEW_ALERTS">
Press Alt+Shift+A to review alerts
</message>
<message desc="Spoken if the user attempts to jump to the next article when none exists." name="IDS_CHROMEVOX_NO_NEXT_ARTICLE">
No next article.
</message>
<message desc="Spoken if the user attempts to jump to the previous article when none exists." name="IDS_CHROMEVOX_NO_PREVIOUS_ARTICLE">
No previous article.
</message>
<message desc="Spoken when the browser first starts and ChromeVox is active." name="IDS_CHROMEVOX_CHROMEVOX_INTRO">
ChromeVox spoken feedback is ready
</message>
<message desc="Brailled when ChromeVox is connected to a braille display." name="IDS_CHROMEVOX_INTRO_BRL">
ChromeVox ready
</message>
<message desc="Spoken when earcons are on." name="IDS_CHROMEVOX_EARCONS_ON">
Earcons on
</message>
<message desc="Spoken when earcons are off." name="IDS_CHROMEVOX_EARCONS_OFF">
Earcons off
</message>
<message desc="Description of the toggle earcons key. Shown in options page." name="IDS_CHROMEVOX_TOGGLE_EARCONS">
Turn sound feedback (earcons) on or off.
</message>
<message desc="Description of the speak time and date key. Shown in options page." name="IDS_CHROMEVOX_SPEAK_TIME_AND_DATE">
Speak the current time and date.
</message>
<message desc="Abbreviation indicating following text is an incremental search result. For example, in English, the abbreviation might be 'S:' for 'Search'." name="IDS_CHROMEVOX_MARK_AS_SEARCH_RESULT_BRL">
S:<ph name="result">$1</ph>
</message>
<message desc="Announced when text within an editable text field gets deleted." name="IDS_CHROMEVOX_TEXT_DELETED">
Deleted
</message>
<message desc="Describes the perform default action command. This is usually triggered by hitting the enter key over a control. Shown in options page." name="IDS_CHROMEVOX_PERFORM_DEFAULT_ACTION">
Perform default action
</message>
<message desc="Exclamation (!) character description." name="IDS_CHROMEVOX_EXCLAMATION">
{COUNT, plural, =1 {exclamation point}other {# exclamation points}}
</message>
<message desc="Space ( ) character description." name="IDS_CHROMEVOX_SPACE">
{COUNT, plural, =1 {space}other {# spaces}}
</message>
<message desc="Backtcik (`) character description." name="IDS_CHROMEVOX_BACKTICK">
{COUNT, plural, =1 {backtick}other {# backticks}}
</message>
<message desc="Tilde (~) character description." name="IDS_CHROMEVOX_TILDE">
{COUNT, plural, =1 {TILDE}other {# tildes}}
</message>
<message desc="At (@) character description." name="IDS_CHROMEVOX_AT">
{COUNT, plural, =1 {at}other {# at signs}}
</message>
<message desc="Pound (#) character description." name="IDS_CHROMEVOX_POUND">
{COUNT, plural, =1 {pound}other {# pound signs}}
</message>
<message desc="Dollar ($) character description." name="IDS_CHROMEVOX_DOLLAR">
{COUNT, plural, =1 {dollar}other {# dollar signs}}
</message>
<message desc="Percent (%) character description." name="IDS_CHROMEVOX_PERCENT">
{COUNT, plural, =1 {percent}other {# percent signs}}
</message>
<message desc="Caret (^) character description." name="IDS_CHROMEVOX_CARET">
{COUNT, plural, =1 {caret}other {# carets}}
</message>
<message desc="Ampersand (&) character description." name="IDS_CHROMEVOX_AMPERSAND">
{COUNT, plural, =1 {ampersand}other {# ampersands}}
</message>
<message desc="Asterisk (*) character description." name="IDS_CHROMEVOX_ASTERISK">
{COUNT, plural, =1 {asterisk}other {# asterisks}}
</message>
<message desc="Left parenthesis (() character description." name="IDS_CHROMEVOX_OPEN_PAREN">
{COUNT, plural, =1 {open paren}other {# open parens}}
</message>
<message desc="Right parenthesis ()) character description." name="IDS_CHROMEVOX_CLOSE_PAREN">
{COUNT, plural, =1 {close paren}other {# close parens}}
</message>
<message desc="Dash (-) character description." name="IDS_CHROMEVOX_DASH">
{COUNT, plural, =1 {dash}other {# dashes}}
</message>
<message desc="Underscore (_) character description." name="IDS_CHROMEVOX_UNDERSCORE">
{COUNT, plural, =1 {underscore}other {# underscores}}
</message>
<message desc="Equals (=) character description." name="IDS_CHROMEVOX_EQUALS">
{COUNT, plural, =1 {equal}other {# equal signs}}
</message>
<message desc="Plus (+) character description." name="IDS_CHROMEVOX_PLUS">
{COUNT, plural, =1 {plus}other {# plus signs}}
</message>
<message desc="Left bracket ([) character description." name="IDS_CHROMEVOX_LEFT_BRACKET">
{COUNT, plural, =1 {left bracket}other {# left brackets}}
</message>
<message desc="Right bracket (]) character description." name="IDS_CHROMEVOX_RIGHT_BRACKET">
{COUNT, plural, =1 {right bracket}other {# right brackets}}
</message>
<message desc="Left brace ({) character description." name="IDS_CHROMEVOX_LEFT_BRACE">
{COUNT, plural, =1 {left brace}other {# left braces}}
</message>
<message desc="Right brace (}) character description." name="IDS_CHROMEVOX_RIGHT_BRACE">
{COUNT, plural, =1 {right brace}other {# right braces}}
</message>
<message desc="Pipe (|) character description." name="IDS_CHROMEVOX_PIPE">
{COUNT, plural, =1 {pipe}other {# vertical pipes}}
</message>
<message desc="Semicolon (;) character description." name="IDS_CHROMEVOX_SEMICOLON">
{COUNT, plural, =1 {semicolon}other {# semicolons}}
</message>
<message desc="Colon (:) character description." name="IDS_CHROMEVOX_COLON">
{COUNT, plural, =1 {colon}other {# colons}}
</message>
<message desc="Comma (,) character description." name="IDS_CHROMEVOX_COMMA">
{COUNT, plural, =1 {comma}other {# commas}}
</message>
<message desc="Dot (.) character description." name="IDS_CHROMEVOX_DOT">
{COUNT, plural, =1 {dot}=3 {ellipsis}other {# dots}}
</message>
<message desc="Less than (<) character description." name="IDS_CHROMEVOX_LESS_THAN">
{COUNT, plural, =1 {less than}other {# less than signs}}
</message>
<message desc="Greater than (>) character description." name="IDS_CHROMEVOX_GREATER_THAN">
{COUNT, plural, =1 {greater than}other {# greater than signs}}
</message>
<message desc="Slash (/) character description." name="IDS_CHROMEVOX_SLASH">
{COUNT, plural, =1 {slash}other {# slashes}}
</message>
<message desc="Question mark (?) character description." name="IDS_CHROMEVOX_QUESTION_MARK">
{COUNT, plural, =1 {question mark}other {# question marks}}
</message>
<message desc='Quote (") character description.' name="IDS_CHROMEVOX_QUOTE">
{COUNT, plural, =1 {quote}other {# quotes}}
</message>
<message desc="Apostrophe (') character description." name="IDS_CHROMEVOX_APOSTROPHE">
{COUNT, plural, =1 {apostrophe}other {# apostrophes}}
</message>
<message desc="Tab (\t) character description." name="IDS_CHROMEVOX_TAB">
{COUNT, plural, =1 {tab}other {# tabs}}
</message>
<message desc="Backslash (\) character description." name="IDS_CHROMEVOX_BACKSLASH">
{COUNT, plural, =1 {backslash}other {# backslashes}}
</message>
<message desc="Describes the braille click command. Displayed in the options page." name="IDS_CHROMEVOX_BRAILLE_ROUTING">
Click the item under a routing key
</message>
<message desc="Describes the braille pan backward command. Displayed in the options page." name="IDS_CHROMEVOX_BRAILLE_PAN_LEFT">
Pan backward
</message>
<message desc="Describes the braille pan forward command. Displayed in the options page." name="IDS_CHROMEVOX_BRAILLE_PAN_RIGHT">
Pan forward
</message>
<message desc="The description of the braille previous line command. Displayed in the Options page." name="IDS_CHROMEVOX_BRAILLE_LINE_UP">
Braille previous Line
</message>
<message desc="The description of the braille next line command. Displayed in the Options page." name="IDS_CHROMEVOX_BRAILLE_LINE_DOWN">
Braille next Line
</message>
<message desc="The description of the braille top command. Displayed in the Options page." name="IDS_CHROMEVOX_BRAILLE_TOP">
Move braille display to top of page
</message>
<message desc="The description of the braille bottom command. Displayed in the Options page." name="IDS_CHROMEVOX_BRAILLE_BOTTOM">
Move braille display to bottom of page
</message>
<message desc="Spoken to describe an access key. An access key consists of a single letter. When pressed along with a modifier (usually alt, but depends on platform), a targetted node will be activated." name="IDS_CHROMEVOX_ACCESS_KEY">
has access key, <ph name="key">$1</ph>
</message>
<message desc="Brailled to describe an access key. An access key consists of a single letter. When pressed along with a modifier (usually alt, but depends on platform), a targetted node will be activated." name="IDS_CHROMEVOX_ACCESS_KEY_BRL">
access key:<ph name="key">$1</ph>
</message>
<message desc="A dictionary mapping locale identifiers to their corresponding language names. The format is the following: { ..., 'en_US': 'English (United States)', ...}. Translation only needed for the language and country names (e.g. English (United States)). All other strings must be kept as is." name="IDS_CHROMEVOX_LOCALE_DICT">
{"ar": "Arabic",
"bg": "Bulgarian",
"ca": "Catalan",
"cs": "Czech",
"da": "Danish",
"de": "German",
"de_CH": "German (Switzerland)",
"de_DE": "German (Germany)",
"el": "Greek",
"en": "English",
"en_CA": "English (Canada)",
"en_GB": "English (United Kingdom)",
"en_US": "English (United States)",
"es": "Spanish",
"et": "Estonian",
"fr": "French",
"fr_CA": "French (Canada)",
"fr_FR": "French (France)",
"fi": "Finnish",
"he": "Hebrew",
"hi": "Hindi",
"hr": "Croatian",
"hu": "Hungarian",
"is": "Icelandic",
"it": "Italian",
"ko": "Korean",
"lt": "Lithuanian",
"lv": "Latvian",
"nb": "Norwegian Bokmål",
"nl": "Dutch",
"pl": "Polish",
"pt": "Portuguese",
"ro": "Romanian",
"ru": "Russian",
"sk": "Slovak",
"sl": "Slovenian",
"sr": "Serbian",
"sv": "Swedish",
"tr": "Turkish",
"vi": "Vietnamese",
"zh": "Chinese",
"zh_TW": "Chinese (Traditional Han)"}
</message>
<message desc="The text to speak when the user moves their cursor to the end of a block of editable text, in verbose mode." name="IDS_CHROMEVOX_END_OF_TEXT_VERBOSE">
End of text
</message>
<message desc="The text to speak when the user moves their cursor to the end of a block of editable text, in brief mode." name="IDS_CHROMEVOX_END_OF_TEXT_BRIEF">
End
</message>
<message desc="Spoken to describe a new line ('\n')." name="IDS_CHROMEVOX_NEW_LINE">
new line
</message>
<message desc="Spoken to describe a carriage return ('\r')." name="IDS_CHROMEVOX_RETURN">
return
</message>
<message desc="Spoken after pressing the pass through key command." name="IDS_CHROMEVOX_PASS_THROUGH_KEY">
Ignoring next key press
</message>
<message desc="Describes the pass through key command. Shown in options page." name="IDS_CHROMEVOX_PASS_THROUGH_KEY_DESCRIPTION">
Pass through key
</message>
<message desc="Describes the braille caption feature. Braille captioning provides an overlay showing both text and braille of what ChromeVox would show on a refreshable braille display. Shown in the options page as a label." name="IDS_CHROMEVOX_BRAILLE_CAPTIONS">
Toggle braille captions
</message>
<message desc="Spoken and brailled when the braille captions feature is enabled. This feature shows the braille output in a small overlay on the screen for development and demonstration purposes." name="IDS_CHROMEVOX_BRAILLE_CAPTIONS_ENABLED">
Braille captions enabled.
</message>
<message desc="Spoken and brailled when the braille captions feature is disabled. This feature shows the braille output in a small overlay on the screen for development and demonstration purposes." name="IDS_CHROMEVOX_BRAILLE_CAPTIONS_DISABLED">
Braille captions disabled.
</message>
<message desc="Message displayed and spoken to user if they open a copy-protected PDF and the browser is unable to offer accessible text." name="IDS_CHROMEVOX_COPY_PROTECTED_PDF">
Unable to access accessible text from copy-protected PDF.
</message>
<message desc="Message spoken to user when switching to a mode where searching is not case-sensitive." name="IDS_CHROMEVOX_IGNORING_CASE">
Ignoring case.
</message>
<message desc="Message spoken to user when switching to a mode where searching is case-sensitive." name="IDS_CHROMEVOX_CASE_SENSITIVE">
Case sensitive.
</message>
</messages>
</release>
</grit>
|