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
|
var localizedStrings = new Object;
localizedStrings[" (Prototype)"] = " (Prototype)";
localizedStrings[" (line %s)"] = " (line %s)";
localizedStrings["${expr} = expression"] = "${expr} = expression";
localizedStrings["% Progress"] = "% Progress";
localizedStrings["%.0f B"] = "%.0f B";
localizedStrings["%.0fms"] = "%.0fms";
localizedStrings["%.1f GB"] = "%.1f GB";
localizedStrings["%.1f KB"] = "%.1f KB";
localizedStrings["%.1f MB"] = "%.1f MB";
localizedStrings["%.1f days"] = "%.1f days";
localizedStrings["%.1fB"] = "%.1fB";
localizedStrings["%.1fK"] = "%.1fK";
localizedStrings["%.1fM"] = "%.1fM";
localizedStrings["%.1fhrs"] = "%.1fhrs";
localizedStrings["%.1fmin"] = "%.1fmin";
localizedStrings["%.1fms"] = "%.1fms";
localizedStrings["%.2f GB"] = "%.2f GB";
localizedStrings["%.2f KB"] = "%.2f KB";
localizedStrings["%.2f MB"] = "%.2f MB";
localizedStrings["%.2f\u00d7"] = "%.2f\u00d7";
localizedStrings["%.2fms"] = "%.2fms";
localizedStrings["%.2fs"] = "%.2fs";
localizedStrings["%.3fms"] = "%.3fms";
localizedStrings["%d Error"] = "%d Error";
localizedStrings["%d Errors"] = "%d Errors";
localizedStrings["%d Errors, %d Warnings"] = "%d Errors, %d Warnings";
localizedStrings["%d FPS"] = "%d FPS";
localizedStrings["%d Failed (plural)"] = "%d Failed";
localizedStrings["%d Failed (singular)"] = "%d Failed";
localizedStrings["%d Frame"] = "%d Frame";
localizedStrings["%d Frames"] = "%d Frames";
localizedStrings["%d Hz"] = "%d Hz";
localizedStrings["%d More\u2026"] = "%d More\u2026";
localizedStrings["%d Passed (plural)"] = "%d Passed";
localizedStrings["%d Passed (singular)"] = "%d Passed";
localizedStrings["%d Threads"] = "%d Threads";
localizedStrings["%d Unsupported (plural)"] = "%d Unsupported";
localizedStrings["%d Unsupported (singular)"] = "%d Unsupported";
localizedStrings["%d Warning"] = "%d Warning";
localizedStrings["%d Warnings"] = "%d Warnings";
/* Label for JavaScript heap snapshot identifier and user provided name. */
localizedStrings["%d \u2014 \u201C%s\u201D"] = "%d \u2014 \u201C%s\u201D";
localizedStrings["%d \xd7 %d pixels"] = "%d \xd7 %d pixels";
localizedStrings["%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)"] = "%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)";
localizedStrings["%d domain"] = "%d domain";
localizedStrings["%d domains"] = "%d domains";
localizedStrings["%d matches"] = "%d matches";
localizedStrings["%d of %d"] = "%d of %d";
localizedStrings["%d redirect"] = "%d redirect";
localizedStrings["%d redirects"] = "%d redirects";
localizedStrings["%d resource"] = "%d resource";
localizedStrings["%d resources"] = "%d resources";
localizedStrings["%dpx"] = "%dpx";
localizedStrings["%dpx\u00B2"] = "%dpx\u00B2";
localizedStrings["%dx%d (%dfps)"] = "%dx%d (%dfps)";
localizedStrings["%dx%d (%dx)"] = "%dx%d (%dx)";
localizedStrings["%s (%s)"] = "%s (%s)";
localizedStrings["%s (%s, %s)"] = "%s (%s, %s)";
/* Label for case-insensitive match pattern of an event breakpoint. */
localizedStrings["%s (Case Insensitive) @ EventBreakpoint"] = "%s (Case Insensitive)";
/* Label for case-insensitive URL match pattern of a local override. */
localizedStrings["%s (Case Insensitive) @ Local Override"] = "%s (Case Insensitive)";
/* Label for case-insensitive match pattern of a symbolic breakpoint. */
localizedStrings["%s (Case Insensitive) @ Symbolic Breakpoint"] = "%s (Case Insensitive)";
/* Label for the IP address of a proxy server used to retrieve a network resource. */
localizedStrings["%s (Proxy) @ Resource Remote Address"] = "%s (Proxy)";
localizedStrings["%s (default)"] = "%s (default)";
/* Label modifier indicating that the local override maps to a directory on disk. */
localizedStrings["%s (directory) @ Local Override Type"] = "%s (directory)";
/* Label modifier indicating that the local override maps to a file on disk. */
localizedStrings["%s (file) @ Local Override Type"] = "%s (file)";
localizedStrings["%s (hidden)"] = "%s (hidden)";
localizedStrings["%s Callback"] = "%s Callback";
localizedStrings["%s Event Dispatched"] = "%s Event Dispatched";
localizedStrings["%s Prototype"] = "%s Prototype";
/* Format string for the suggested filename when saving the content for a request local override. */
localizedStrings["%s Request Data @ Local Override Request Content View"] = "%s Request Data";
/* Label for JavaScript heap snapshot context name and identifier. */
localizedStrings["%s Snapshot %s"] = "%s Snapshot %s";
localizedStrings["%s \u2013 %s"] = "%s \u2013 %s";
localizedStrings["%s \u2013 %s (%s)"] = "%s \u2013 %s (%s)";
localizedStrings["%s \u2014 %s"] = "%s \u2014 %s";
localizedStrings["%s cannot be modified"] = "%s cannot be modified";
localizedStrings["%s delay"] = "%s delay";
localizedStrings["%s eval\n%s async"] = "%s eval\n%s async";
localizedStrings["%s interval"] = "%s interval";
localizedStrings["%s requests do not have a body"] = "%s requests do not have a body";
localizedStrings["%s total"] = "%s total";
localizedStrings["%s transferred"] = "%s transferred";
/* Scope bar button that filter for dynamic resource loads, like from the 'fetch' method. */
localizedStrings["%s/Fetch @ Network Tab Table Filter"] = "%s/Fetch";
localizedStrings["(%s)"] = "(%s)";
localizedStrings["(Action %s)"] = "(Action %s)";
localizedStrings["(Disk)"] = "(Disk)";
localizedStrings["(Index)"] = "(Index)";
localizedStrings["(Memory)"] = "(Memory)";
localizedStrings["(Tail Call)"] = "(Tail Call)";
localizedStrings["(anonymous function)"] = "(anonymous function)";
localizedStrings["(async)"] = "(async)";
localizedStrings["(call frames truncated)"] = "(call frames truncated)";
localizedStrings["(disk)"] = "(disk)";
localizedStrings["(local override)"] = "(local override)";
localizedStrings["(many)"] = "(many)";
localizedStrings["(memory)"] = "(memory)";
localizedStrings["(multiple)"] = "(multiple)";
localizedStrings["(passthrough)"] = "(passthrough)";
localizedStrings["(program)"] = "(program)";
localizedStrings["(service worker)"] = "(service worker)";
localizedStrings["(uninitialized)"] = "(uninitialized)";
localizedStrings[", "] = ", ";
localizedStrings["0 Console errors"] = "0 Console errors";
localizedStrings["0 Console warnings"] = "0 Console warnings";
localizedStrings["1 match"] = "1 match";
localizedStrings["1080p"] = "1080p";
/* 2D is a type of rendering context associated with a <canvas> element. */
localizedStrings["2D @ Canvas Context Type"] = "2D";
/* 2D is a type of rendering context associated with a OffscreenCanvas. */
localizedStrings["2D @ Offscreen Canvas Context Type"] = "Offscreen2D";
/* Label indicating that network activity is being simulated with 3G connectivity. */
localizedStrings["3G"] = "3G";
localizedStrings["720p"] = "720p";
/* Text indicating that the local override will block the network activity with an access error. */
localizedStrings["Access Control @ Local Override Type"] = "Access Control";
localizedStrings["Accessibility"] = "Accessibility";
/* Header for section with accessibility user preferences. */
localizedStrings["Accessibility @ User Preferences Overrides"] = "Accessibility";
localizedStrings["Action"] = "Action";
/* Tooltip for a time range bar that represents when a CSS animation/transition is running */
localizedStrings["Active"] = "Active";
localizedStrings["Ad Click Attribution debug mode"] = "Ad Click Attribution debug mode";
localizedStrings["Add"] = "Add";
localizedStrings["Add %s Rule"] = "Add %s Rule";
localizedStrings["Add Action"] = "Add Action";
localizedStrings["Add Breakpoint"] = "Add Breakpoint";
localizedStrings["Add Breakpoints"] = "Add Breakpoints";
localizedStrings["Add Cookie"] = "Add Cookie";
localizedStrings["Add Header"] = "Add Header";
localizedStrings["Add JavaScript Breakpoint"] = "Add JavaScript Breakpoint";
localizedStrings["Add New"] = "Add New";
localizedStrings["Add New Class"] = "Add New Class";
localizedStrings["Add New Probe Expression"] = "Add New Probe Expression";
localizedStrings["Add New Watch Expression"] = "Add New Watch Expression";
localizedStrings["Add Pattern"] = "Add Pattern";
/* Text of button to add a new audit test case to the currently shown audit group. */
localizedStrings["Add Test Case @ Audit Tab - Group"] = "Add Test Case";
localizedStrings["Add URL Breakpoint"] = "Add URL Breakpoint";
localizedStrings["Add a Class"] = "Add a Class";
localizedStrings["Add new breakpoint action after this action"] = "Add new breakpoint action after this action";
localizedStrings["Add new rule"] = "Add new rule";
localizedStrings["Add probe expression"] = "Add probe expression";
localizedStrings["Add watch expression"] = "Add watch expression";
localizedStrings["Additions"] = "Additions";
localizedStrings["Address"] = "Address";
localizedStrings["All"] = "All";
/* Break (pause) on All animation frames */
localizedStrings["All Animation Frames @ Event Breakpoint"] = "All Animation Frames";
localizedStrings["All Changes"] = "All Changes";
/* Break (pause) on all events */
localizedStrings["All Events @ Event Breakpoint"] = "All Events";
/* Break (pause) on all exceptions */
localizedStrings["All Exceptions @ JavaScript Breakpoint"] = "All Exceptions";
/* Break (pause) on all intervals */
localizedStrings["All Intervals @ Event Breakpoint"] = "All Intervals";
localizedStrings["All Layers"] = "All Layers";
/* Break (pause) on all microtasks */
localizedStrings["All Microtasks @ JavaScript Breakpoint"] = "All Microtasks";
/* Property value for `font-variant-capitals: all-petite-caps`. */
localizedStrings["All Petite Capitals @ Font Details Sidebar Property Value"] = "All Petite Capitals";
/* A submenu item of 'Break on' that breaks (pauses) before all network requests */
localizedStrings["All Requests"] = "All Requests";
/* Property value for `font-variant-capitals: all-small-caps`. */
localizedStrings["All Small Capitals @ Font Details Sidebar Property Value"] = "All Small Capitals";
localizedStrings["All Sources"] = "All Sources";
localizedStrings["All Storage"] = "All Storage";
/* Break (pause) on all timeouts */
localizedStrings["All Timeouts @ Event Breakpoint"] = "All Timeouts";
localizedStrings["All items in \u0022%s\u0022 must be error objects"] = "All items in \u0022%s\u0022 must be error objects";
localizedStrings["All items in \u0022%s\u0022 must be non-empty strings"] = "All items in \u0022%s\u0022 must be non-empty strings";
localizedStrings["All items in \u0022%s\u0022 must be valid DOM nodes"] = "All items in \u0022%s\u0022 must be valid DOM nodes";
/* Label for setting that allows the user to inspect the Web Inspector user interface. */
localizedStrings["Allow Inspecting Web Inspector @ Experimental Settings"] = "Allow Inspecting Web Inspector";
localizedStrings["Allow media capture on insecure sites"] = "Allow media capture on insecure sites";
localizedStrings["Allow page to clear Console"] = "Allow page to clear Console";
/* Label for checkbox that controls whether network throttling functionality is enabled. */
localizedStrings["Allow throttling"] = "Allow throttling";
localizedStrings["Also defer evaluating breakpoint conditions, ignore counts, and actions until execution has continued outside of the related script instead of at the breakpoint\u2019s location."] = "Also defer evaluating breakpoint conditions, ignore counts, and actions until execution has continued outside of the related script instead of at the breakpoint\u2019s location.";
/* Property title for `font-variant-alternates`. */
localizedStrings["Alternate Glyphs @ Font Details Sidebar Property"] = "Alternate Glyphs";
localizedStrings["An error occurred trying to load the resource."] = "An error occurred trying to load the resource.";
localizedStrings["Angle"] = "Angle";
localizedStrings["Animation"] = "Animation";
localizedStrings["Animation %d"] = "Animation %d";
localizedStrings["Animation Frame %d Canceled"] = "Animation Frame %d Canceled";
localizedStrings["Animation Frame %d Fired"] = "Animation Frame %d Fired";
localizedStrings["Animation Frame %d Requested"] = "Animation Frame %d Requested";
localizedStrings["Animation Frame Canceled"] = "Animation Frame Canceled";
localizedStrings["Animation Frame Fired"] = "Animation Frame Fired";
localizedStrings["Animation Frame Requested"] = "Animation Frame Requested";
localizedStrings["Animation Target"] = "Animation Target";
localizedStrings["Anonymous Script %d"] = "Anonymous Script %d";
localizedStrings["Anonymous Scripts"] = "Anonymous Scripts";
localizedStrings["Anonymous Style Sheet %d"] = "Anonymous Style Sheet %d";
localizedStrings["Anonymous Style Sheets"] = "Anonymous Style Sheets";
/* Header for section with appearance user preferences. */
localizedStrings["Appearance @ User Preferences Overrides"] = "Appearance";
localizedStrings["Appearance:"] = "Appearance:";
/* Approximate count of events */
localizedStrings["Approximate Number"] = "~%s";
localizedStrings["Area"] = "Area";
/* Label for option to toggle the area names setting for CSS grid overlays */
localizedStrings["Area names @ Layout Panel Overlay Options"] = "Area Names";
localizedStrings["As such, the contents will be run as though it was typed into the Console."] = "As such, the contents will be run as though it was typed into the Console.";
localizedStrings["Assertion"] = "Assertion";
localizedStrings["Assertion Failed"] = "Assertion Failed";
localizedStrings["Assertion Failed: %s"] = "Assertion Failed: %s";
/* Break (pause) when console.assert() fails */
localizedStrings["Assertion Failures @ JavaScript Breakpoint"] = "Assertion Failures";
localizedStrings["Assertive"] = "Assertive";
localizedStrings["Associated Data"] = "Associated Data";
localizedStrings["Attribute"] = "Attribute";
/* A submenu item of 'Break On' that breaks (pauses) before DOM attribute is modified */
localizedStrings["Attribute Modified @ DOM Breakpoint"] = "Attribute Modified";
localizedStrings["Attributes"] = "Attributes";
/* Title for Audio Codec row in Media Sidebar */
localizedStrings["Audio Codec @ Media Sidebar"] = "Audio Codec";
/* Title for Audio Details section in Media Sidebar */
localizedStrings["Audio Details @ Media Sidebar"] = "Audio Details";
/* Title for Audio Format row in Media Sidebar */
localizedStrings["Audio Format @ Media Sidebar"] = "Audio Format";
localizedStrings["Audit"] = "Audit";
localizedStrings["Audit Error: %s"] = "Audit Error: %s";
/* Name of Audit Tab */
localizedStrings["Audit Tab Name"] = "Audit";
localizedStrings["Audit Warning: %s"] = "Audit Warning: %s";
localizedStrings["Audit version: %s"] = "Audit version: %s";
localizedStrings["Audits"] = "Audits";
localizedStrings["Author Style Sheet"] = "Author Style Sheet";
localizedStrings["Auto Increment"] = "Auto Increment";
localizedStrings["Auto \u2014 %s"] = "Auto \u2014 %s";
localizedStrings["Auto-expand"] = "Auto-expand";
localizedStrings["Automatically continue after evaluating"] = "Automatically continue after evaluating";
localizedStrings["Available Style Sheets"] = "Available Style Sheets";
localizedStrings["Average CPU: %s"] = "Average CPU: %s";
localizedStrings["Average Time"] = "Average Time";
localizedStrings["Average: %s"] = "Average: %s";
/* A warning that is shown in the Font Details Sidebar when the value for a variation axis is outside of the supported range of values */
localizedStrings["Axis value outside of supported range: %s – %s"] = "Axis value outside of supported range: %s – %s";
localizedStrings["BMP"] = "BMP";
localizedStrings["Back (%s)"] = "Back (%s)";
localizedStrings["Backtrace"] = "Backtrace";
/* Label for navigation item that controls what badges are shown in the main DOM tree. */
localizedStrings["Badges @ Elements Tab"] = "Badges";
localizedStrings["Basic"] = "Basic";
/* Section title for basic font properties. */
localizedStrings["Basic Properties @ Font Details Sidebar Section"] = "Basic Properties";
localizedStrings["Beacon"] = "Beacon";
localizedStrings["Beacons"] = "Beacons";
localizedStrings["Binary Frame"] = "Binary Frame";
localizedStrings["Binding"] = "Binding";
/* Bitmap Renderer is a type of rendering context associated with a <canvas> element. */
localizedStrings["Bitmap Renderer @ Canvas Context Type"] = "Bitmap Renderer";
/* Bitmap Renderer is a type of rendering context associated with a OffscreenCanvas. */
localizedStrings["Bitmap Renderer @ Offscreen Canvas Context Type"] = "Bitmap Renderer (Offscreen)";
localizedStrings["Blackbox"] = "Blackbox";
localizedStrings["Blackbox Script"] = "Blackbox Script";
localizedStrings["Blackbox script to ignore it when debugging"] = "Blackbox script to ignore it when debugging";
/* Part of the 'Blackboxed - %d call frames' label shown in the debugger call stack when paused instead of subsequent call frames that have been blackboxed. */
localizedStrings["Blackboxed @ Debugger Call Stack"] = "Blackboxed";
/* Text indicating that the local override will always block the network activity. */
localizedStrings["Block @ Local Override Type"] = "Block";
localizedStrings["Block Request URL"] = "Block Request URL";
localizedStrings["Block URL with %s error"] = "Block URL with %s error";
localizedStrings["Block Variables"] = "Block Variables";
/* Input label for the blur radius of a CSS box shadow */
localizedStrings["Blur @ Box Shadow Editor"] = "Blur";
localizedStrings["Body:"] = "Body:";
localizedStrings["Boundary"] = "Boundary";
localizedStrings["Box Model"] = "Box Model";
localizedStrings["Break on"] = "Break on";
localizedStrings["Breakdown"] = "Breakdown";
localizedStrings["Breakdown of each memory category at the end of the selected time range"] = "Breakdown of each memory category at the end of the selected time range";
localizedStrings["Breakdown of time spent on the main thread"] = "Breakdown of time spent on the main thread";
localizedStrings["Breakpoint"] = "Breakpoint";
localizedStrings["Breakpoints"] = "Breakpoints";
localizedStrings["Breakpoints disabled"] = "Breakpoints disabled";
localizedStrings["Bubbling"] = "Bubbling";
localizedStrings["Busy"] = "Busy";
localizedStrings["By Path"] = "By Path";
localizedStrings["By Type"] = "By Type";
/* Label for button to show CSS variables grouped by type */
localizedStrings["By Type @ Computed Style variables grouping mode"] = "By Type";
localizedStrings["Byte Range %s\u2013%s"] = "Byte Range %s\u2013%s";
localizedStrings["Bytes Received"] = "Bytes Received";
localizedStrings["Bytes Sent"] = "Bytes Sent";
localizedStrings["CPU"] = "CPU";
localizedStrings["CPU Usage"] = "CPU Usage";
localizedStrings["CSP Hash"] = "CSP Hash";
localizedStrings["CSS Animation"] = "CSS Animation";
localizedStrings["CSS Animations"] = "CSS Animations";
localizedStrings["CSS Canvas"] = "CSS Canvas";
localizedStrings["CSS Transition"] = "CSS Transition";
localizedStrings["CSS Transitions"] = "CSS Transitions";
localizedStrings["CSS canvas \u201C%s\u201D"] = "CSS canvas \u201C%s\u201D";
localizedStrings["CSS:"] = "CSS:";
localizedStrings["Cached"] = "Cached";
localizedStrings["Call Stack"] = "Call Stack";
localizedStrings["Call Stack Unavailable"] = "Call Stack Unavailable";
localizedStrings["Call Trees"] = "Call Trees";
/* Label shown when JavaScript execution is paused due to a symbolic breakpoint. */
localizedStrings["Calling Function \u201C%s\u201D @ Sources Navigation Sidebar Panel"] = "Calling Function \u201C%s\u201D";
localizedStrings["Cancel Automatic Continue"] = "Cancel Automatic Continue";
localizedStrings["Cancel comparison"] = "Cancel comparison";
/* Tooltip for a timestamp marker that represents when a CSS animation/transition is canceled */
localizedStrings["Canceled"] = "Canceled";
/* Text indicating that the local override will block the network activity with a cancellation error. */
localizedStrings["Cancellation @ Local Override Type"] = "Cancellation";
localizedStrings["Canvas"] = "Canvas";
localizedStrings["Canvas %d"] = "Canvas %d";
localizedStrings["Canvas %s"] = "Canvas %s";
localizedStrings["Canvas Element"] = "Canvas Element";
localizedStrings["Canvases"] = "Canvases";
/* Property title for `font-variant-caps`. */
localizedStrings["Capitals @ Font Details Sidebar Property"] = "Capitals";
/* Capture screenshot of the selected DOM node */
localizedStrings["Capture Screenshot"] = "Capture Screenshot";
localizedStrings["Capturing"] = "Capturing";
localizedStrings["Case Sensitive"] = "Case Sensitive";
/* Context menu label for whether searches should be case sensitive. */
localizedStrings["Case Sensitive @ Context Menu"] = "Case Sensitive";
/* Settings tab checkbox label for whether searches should be case sensitive. */
localizedStrings["Case Sensitive @ Settings"] = "Case Sensitive";
localizedStrings["Catch Variables"] = "Catch Variables";
localizedStrings["Categories"] = "Categories";
localizedStrings["Certificate"] = "Certificate";
localizedStrings["Changes"] = "Changes";
/* Title for Channels row in Media Sidebar */
localizedStrings["Channels @ Media Sidebar"] = "Channels";
localizedStrings["Character Data"] = "Character Data";
localizedStrings["Charge \u201C%s\u201D to Callers"] = "Charge \u201C%s\u201D to Callers";
localizedStrings["Checked"] = "Checked";
/* A submenu item of 'Add' to append DOM nodes to the selected DOM node */
localizedStrings["Child"] = "Child";
localizedStrings["Child Layers"] = "Child Layers";
localizedStrings["Child added to "] = "Child added to ";
localizedStrings["Children"] = "Children";
/* Text of button that shows native UI to pick a directory on disk. */
localizedStrings["Choose Directory @ Local Override Popover"] = "Choose Directory";
/* Text of button that shows native UI to pick a file on disk. */
localizedStrings["Choose File @ Local Override Popover"] = "Choose File";
localizedStrings["Choose which badges are shown in the DOM tree"] = "Choose which badges are shown in the DOM tree";
localizedStrings["Cipher"] = "Cipher";
localizedStrings["Clamp to sRGB"] = "Clamp to sRGB";
localizedStrings["Classes"] = "Classes";
localizedStrings["Clear Cookies"] = "Clear Cookies";
localizedStrings["Clear Filters"] = "Clear Filters";
/* Text for button that will clear both text filters and time range filters. */
localizedStrings["Clear Filters @ Heap Allocations Timeline View"] = "Clear Filters";
localizedStrings["Clear Local Storage"] = "Clear Local Storage";
localizedStrings["Clear Log"] = "Clear Log";
localizedStrings["Clear Network Items (%s)"] = "Clear Network Items (%s)";
localizedStrings["Clear Session Storage"] = "Clear Session Storage";
localizedStrings["Clear Timeline (%s)"] = "Clear Timeline (%s)";
localizedStrings["Clear focus"] = "Clear focus";
localizedStrings["Clear log (%s or %s)"] = "Clear log (%s or %s)";
localizedStrings["Clear object store"] = "Clear object store";
localizedStrings["Clear samples"] = "Clear samples";
localizedStrings["Clear watch expressions"] = "Clear watch expressions";
localizedStrings["Clear:"] = "Clear:";
localizedStrings["Click Listener"] = "Click Listener";
localizedStrings["Click to create a Local Override from this content"] = "Click to create a Local Override from this content";
localizedStrings["Click to import a file and create a Local Override\nShift-click to create a Local Override from this content"] = "Click to import a file and create a Local Override\nShift-click to create a Local Override from this content";
/* Title of text button that resets the gesture controls in the image resource content view. */
localizedStrings["Click to reset @ Image Resource Content View Gesture Controls"] = "Click to reset";
localizedStrings["Click to select a color."] = "Click to select a color.";
localizedStrings["Click to show %d error in the Console"] = "Click to show %d error in the Console";
localizedStrings["Click to show %d errors in the Console"] = "Click to show %d errors in the Console";
localizedStrings["Click to show %d warning in the Console"] = "Click to show %d warning in the Console";
localizedStrings["Click to show %d warnings in the Console"] = "Click to show %d warnings in the Console";
/* Tooltip for the 'Blackboxed - %d call frame' label shown in the debugger call stack when paused instead of subsequent call frames that have been blackboxed. */
localizedStrings["Click to show blackboxed call frame @ Debugger Call Stack"] = "Click to show %d blackboxed call frame";
/* Tooltip for the 'Blackboxed - %d call frames' label shown in the debugger call stack when paused instead of subsequent call frames that have been blackboxed. */
localizedStrings["Click to show blackboxed call frames @ Debugger Call Stack"] = "Click to show %d blackboxed call frames";
/* Tooltip to show purpose of the CSS documentation button */
localizedStrings["Click to show documentation @ CSS Documentation Button"] = "Click to show documentation";
localizedStrings["Click to view variable value"] = "Click to view variable value";
localizedStrings["Click to view variable value\nShift-click to replace variable with value"] = "Click to view variable value\nShift-click to replace variable with value";
localizedStrings["Clickable"] = "Clickable";
localizedStrings["Clients"] = "Clients";
localizedStrings["Close"] = "Close";
localizedStrings["Close %s timeline view"] = "Close %s timeline view";
localizedStrings["Close detail view"] = "Close detail view";
localizedStrings["Closed"] = "Closed";
localizedStrings["Closure Variables"] = "Closure Variables";
localizedStrings["Closure Variables (%s)"] = "Closure Variables (%s)";
localizedStrings["Code"] = "Code";
localizedStrings["Collapse All"] = "Collapse All";
localizedStrings["Collapse columns"] = "Collapse columns";
localizedStrings["Collect garbage"] = "Collect garbage";
/* Title for Color Primaries row in Media Sidebar */
localizedStrings["Color Primaries @ Media Sidebar"] = "Color Primaries";
/* Title for Color Range row in Media Sidebar */
localizedStrings["Color Range @ Media Sidebar"] = "Color Range";
/* Label for input to override the preference for color scheme. */
localizedStrings["Color scheme @ User Preferences Overrides"] = "Color scheme";
/* Section header for the group of CSS variables with colors as values */
localizedStrings["Colors @ Computed Style variables section"] = "Colors";
localizedStrings["Comment"] = "Comment";
/* Property value for `font-variant-ligatures: common-ligatures`. */
localizedStrings["Common @ Font Details Sidebar Property Value"] = "Common";
localizedStrings["Compare snapshots"] = "Compare snapshots";
localizedStrings["Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording"] = "Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording";
localizedStrings["Compatibility"] = "Compatibility";
/* Composite phase timeline records, where graphic layers are combined */
localizedStrings["Composite @ Timeline record"] = "Composite";
localizedStrings["Composited"] = "Composited";
localizedStrings["Compressed"] = "Compressed";
localizedStrings["Compression"] = "Compression";
localizedStrings["Compression:"] = "Compression:";
localizedStrings["Compute"] = "Compute";
localizedStrings["Compute Pipeline %d"] = "Compute Pipeline %d";
localizedStrings["Compute Shader"] = "Compute Shader";
localizedStrings["Computed"] = "Computed";
localizedStrings["Condition"] = "Condition";
localizedStrings["Conditional expression"] = "Conditional expression";
/* Part of the tooltip indicating that the hovered property is configurable. */
localizedStrings["Configurable @ Object Tree Property"] = "Configurable";
localizedStrings["Conic Gradient"] = "Conic Gradient";
localizedStrings["Connecting"] = "Connecting";
localizedStrings["Connection"] = "Connection";
localizedStrings["Connection Close Frame"] = "Connection Close Frame";
localizedStrings["Connection Closed"] = "Connection Closed";
localizedStrings["Connection ID"] = "Connection ID";
localizedStrings["Connection:"] = "Connection:";
localizedStrings["Console"] = "Console";
localizedStrings["Console Evaluation"] = "Console Evaluation";
localizedStrings["Console Evaluation %d"] = "Console Evaluation %d";
localizedStrings["Console Profile Recorded"] = "Console Profile Recorded";
localizedStrings["Console Snippet\u2026"] = "Console Snippet\u2026";
localizedStrings["Console Snippets"] = "Console Snippets";
localizedStrings["Console Snippets are an easy way to save and evaluate JavaScript in the Console."] = "Console Snippets are an easy way to save and evaluate JavaScript in the Console.";
/* Name of Console Tab */
localizedStrings["Console Tab Name"] = "Console";
localizedStrings["Console cleared at %s"] = "Console cleared at %s";
localizedStrings["Console opened at %s"] = "Console opened at %s";
localizedStrings["Console prompt"] = "Console prompt";
localizedStrings["Console:"] = "Console:";
localizedStrings["Containing"] = "Containing";
localizedStrings["Content Security Policy violation of directive: %s"] = "Content Security Policy violation of directive: %s";
/* Property value for `font-variant-ligatures: contextual`. */
localizedStrings["Contextual Alternates @ Font Details Sidebar Property Value"] = "Contextual Alternates";
localizedStrings["Continuation Frame"] = "Continuation Frame";
localizedStrings["Continue script execution (%s or %s)"] = "Continue script execution (%s or %s)";
localizedStrings["Continue to Here"] = "Continue to Here";
localizedStrings["Continue without automatically stopping"] = "Continue without automatically stopping";
localizedStrings["Controls"] = "Controls";
localizedStrings["Convert to Display-P3"] = "Convert to Display-P3";
localizedStrings["Convert to sRGB"] = "Convert to sRGB";
localizedStrings["Cookies"] = "Cookies";
localizedStrings["Copy"] = "Copy";
localizedStrings["Copy Action"] = "Copy Action";
localizedStrings["Copy HTTP Request"] = "Copy HTTP Request";
localizedStrings["Copy HTTP Response"] = "Copy HTTP Response";
localizedStrings["Copy Link"] = "Copy Link";
localizedStrings["Copy Path to Property"] = "Copy Path to Property";
localizedStrings["Copy Row"] = "Copy Row";
localizedStrings["Copy Rule"] = "Copy Rule";
localizedStrings["Copy Selected"] = "Copy Selected";
localizedStrings["Copy Table"] = "Copy Table";
localizedStrings["Copy as cURL"] = "Copy as cURL";
/* Copy the URL, method, headers, etc. of the given network request in the format of a JS fetch expression. */
localizedStrings["Copy as fetch"] = "Copy as fetch";
localizedStrings["Core Features"] = "Core Features";
localizedStrings["Could not capture screenshot"] = "Could not capture screenshot";
localizedStrings["Could not fetch properties. Object may no longer exist."] = "Could not fetch properties. Object may no longer exist.";
localizedStrings["Count"] = "Count";
localizedStrings["Create %s Rule"] = "Create %s Rule";
/* Title of button that creates a new audit. */
localizedStrings["Create @ Audit Tab Navigation Sidebar"] = "Create";
localizedStrings["Create Breakpoint"] = "Create Breakpoint";
localizedStrings["Create Console Snippet"] = "Create Console Snippet";
localizedStrings["Create Console Snippet\u2026"] = "Create Console Snippet\u2026";
localizedStrings["Create Local Override"] = "Create Local Override";
localizedStrings["Create Request Local Override"] = "Create Request Local Override";
localizedStrings["Create Resource"] = "Create Resource";
localizedStrings["Create Response Local Override"] = "Create Response Local Override";
localizedStrings["Create audit:"] = "Create audit:";
localizedStrings["Current"] = "Current";
localizedStrings["Current State"] = "Current State";
localizedStrings["Custom"] = "Custom";
localizedStrings["DNS"] = "DNS";
localizedStrings["DOM"] = "DOM";
localizedStrings["DOM Content Loaded \u2014 %s"] = "DOM Content Loaded \u2014 %s";
localizedStrings["DOM Event \u201C%s\u201D"] = "DOM Event \u201C%s\u201D";
localizedStrings["DOM Events"] = "DOM Events";
localizedStrings["DOM Nodes:"] = "DOM Nodes:";
localizedStrings["DOM Tree:"] = "DOM Tree:";
/* Label indicating that network activity is being simulated with DSL connectivity. */
localizedStrings["DSL"] = "DSL";
localizedStrings["Damping"] = "Damping";
/* Label of dropdown item used for forcing Web Inspector to be shown using a dark theme */
localizedStrings["Dark @ Settings General Appearance"] = "Dark";
/* Label for the dark color scheme preference. */
localizedStrings["Dark @ User Preferences Overrides"] = "Dark";
localizedStrings["Data"] = "Data";
localizedStrings["Data Bindings"] = "Data Bindings";
localizedStrings["Database"] = "Database";
localizedStrings["Date"] = "Date";
localizedStrings["De-emphasize nodes that are not rendered"] = "De-emphasize nodes that are not rendered";
localizedStrings["Debug: "] = "Debug: ";
localizedStrings["Debugger Statement"] = "Debugger Statement";
/* Break (pause) on debugger statements */
localizedStrings["Debugger Statements @ JavaScript Breakpoint"] = "Debugger Statements";
localizedStrings["Debugger disabled during Audit"] = "Debugger disabled during Audit";
localizedStrings["Debugger disabled during Timeline recording"] = "Debugger disabled during Timeline recording";
localizedStrings["Debugging:"] = "Debugging:";
localizedStrings["Debugs"] = "Debugs";
localizedStrings["Decoded"] = "Decoded";
localizedStrings["Default"] = "Default";
localizedStrings["Deferred pause from blackboxed script"] = "Deferred pause from blackboxed script";
/* Tooltip for a time range bar that represents when a CSS animation/transition is delayed */
localizedStrings["Delay"] = "Delay";
localizedStrings["Delete"] = "Delete";
localizedStrings["Delete Audit"] = "Delete Audit";
localizedStrings["Delete Blackbox"] = "Delete Blackbox";
localizedStrings["Delete Breakpoint"] = "Delete Breakpoint";
localizedStrings["Delete Breakpoints"] = "Delete Breakpoints";
localizedStrings["Delete Console Snippet"] = "Delete Console Snippet";
localizedStrings["Delete Descendant Breakpoints"] = "Delete Descendant Breakpoints";
localizedStrings["Delete Inspector Bootstrap Script"] = "Delete Inspector Bootstrap Script";
localizedStrings["Delete JavaScript Breakpoint"] = "Delete JavaScript Breakpoint";
localizedStrings["Delete Local Override"] = "Delete Local Override";
localizedStrings["Delete URL Breakpoint"] = "Delete URL Breakpoint";
localizedStrings["Delete URL Breakpoints"] = "Delete URL Breakpoints";
localizedStrings["Delete Watch Expression"] = "Delete Watch Expression";
localizedStrings["Delete probe"] = "Delete probe";
localizedStrings["Delete this breakpoint action"] = "Delete this breakpoint action";
localizedStrings["Demo Audit"] = "Demo Audit";
localizedStrings["Detach into separate window"] = "Detach into separate window";
localizedStrings["Detached"] = "Detached";
localizedStrings["Details"] = "Details";
/* Label for the details sidebar. */
localizedStrings["Details @ Sidebar"] = "Details";
/* Category label for detail sidebar settings. */
localizedStrings["Details Sidebars: @ Settings Elements Pane"] = "Details Sidebars:";
/* Category label for detail sidebar settings. */
localizedStrings["Details Sidebars: @ Settings General Pane"] = "Details Sidebars:";
localizedStrings["Device %d"] = "Device %d";
localizedStrings["Device Settings"] = "Device Settings";
localizedStrings["Diagnoses common accessibility problems affecting screen readers and other assistive technology."] = "Diagnoses common accessibility problems affecting screen readers and other assistive technology.";
/* Category label for experimental settings related to Web Inspector diagnostics. */
localizedStrings["Diagnostics: @ Experimental Settings"] = "Diagnostics:";
/* Property value for `font-variant-numeric: diagonal-fractions`. */
localizedStrings["Diagonal Fractions @ Font Details Sidebar Property Value"] = "Diagonal Fractions";
localizedStrings["Dimensions"] = "Dimensions";
/* Section header for the group of CSS variables with dimensions as values */
localizedStrings["Dimensions @ Computed style variables section"] = "Dimensions";
/* Label for the input used for mapping the local override to a directory on disk. */
localizedStrings["Directory @ Local Override Popopver"] = "Directory";
/* Option for creating a local override for an entire directory. */
localizedStrings["Directory @ Local Override Type"] = "Directory";
localizedStrings["Disable All"] = "Disable All";
localizedStrings["Disable Audit"] = "Disable Audit";
localizedStrings["Disable Breakpoint"] = "Disable Breakpoint";
localizedStrings["Disable Breakpoints"] = "Disable Breakpoints";
localizedStrings["Disable CSS"] = "Disable CSS";
localizedStrings["Disable Caches"] = "Disable Caches";
localizedStrings["Disable Descendant Breakpoints"] = "Disable Descendant Breakpoints";
localizedStrings["Disable Event Listener"] = "Disable Event Listener";
localizedStrings["Disable Event Listeners"] = "Disable Event Listeners";
localizedStrings["Disable ICE candidate restrictions"] = "Disable ICE candidate restrictions";
localizedStrings["Disable Images"] = "Disable Images";
localizedStrings["Disable Inspector Bootstrap Script"] = "Disable Inspector Bootstrap Script";
localizedStrings["Disable JavaScript"] = "Disable JavaScript";
localizedStrings["Disable Local Override"] = "Disable Local Override";
localizedStrings["Disable Program"] = "Disable Program";
localizedStrings["Disable Rule"] = "Disable Rule";
localizedStrings["Disable all breakpoints (%s)"] = "Disable all breakpoints (%s)";
localizedStrings["Disable cross-origin restrictions"] = "Disable cross-origin restrictions";
localizedStrings["Disable paint flashing"] = "Disable paint flashing";
localizedStrings["Disable site-specific quirks"] = "Disable site-specific quirks";
localizedStrings["Disabled"] = "Disabled";
/* Property value for `font-variant-ligatures: no-common-ligatures`. */
localizedStrings["Disabled Common @ Font Details Sidebar Property Value"] = "Disabled Common";
/* Property value for `font-variant-ligatures: discretionary-ligatures`. */
localizedStrings["Discretionary @ Font Details Sidebar Property Value"] = "Discretionary";
localizedStrings["Disk Cache"] = "Disk Cache";
localizedStrings["Dismiss"] = "Dismiss";
/* Tooltip for the dismiss button in banner views. */
localizedStrings["Dismiss @ Banner View"] = "Dismiss";
/* Label for a canvas that uses the Display P3 color space. */
localizedStrings["Display P3 @ Color Space"] = "Display P3";
localizedStrings["Displayed Columns"] = "Displayed Columns";
localizedStrings["Do not fade unexecuted code"] = "Do not fade unexecuted code";
localizedStrings["Dock to bottom of window"] = "Dock to bottom of window";
localizedStrings["Dock to left of window"] = "Dock to left of window";
localizedStrings["Dock to right of window"] = "Dock to right of window";
localizedStrings["Document"] = "Document";
localizedStrings["Document Fragment"] = "Document Fragment";
localizedStrings["Document Type"] = "Document Type";
localizedStrings["Documents"] = "Documents";
localizedStrings["Domain"] = "Domain";
localizedStrings["Done"] = "Done";
localizedStrings["Download"] = "Download";
localizedStrings["Download Web Archive"] = "Download Web Archive";
localizedStrings["Dropped Element"] = "Dropped Element";
/* Format string for Dropped Frame count in Media Sidebar */
localizedStrings["Dropped Frame Format @ Media Sidebar"] = "%d dropped of %d";
localizedStrings["Dropped Node"] = "Dropped Node";
localizedStrings["Duplicate Audit"] = "Duplicate Audit";
localizedStrings["Duplicate Selector"] = "Duplicate Selector";
localizedStrings["Duplicate property"] = "Duplicate property";
localizedStrings["Duration"] = "Duration";
/* The duration of the Timeline recording in seconds (s). */
localizedStrings["Duration: %ss"] = "Duration: %ss";
localizedStrings["Duration: Short"] = "Duration: Short";
localizedStrings["Dynamically calculated for the parent element"] = "Dynamically calculated for the parent element";
localizedStrings["Dynamically calculated for the selected element"] = "Dynamically calculated for the selected element";
localizedStrings["Dynamically calculated for the selected element and did not match"] = "Dynamically calculated for the selected element and did not match";
/* Property title for `font-variant-east-asian`. */
localizedStrings["East Asian @ Font Details Sidebar Property"] = "East Asian";
/* Label indicating that network activity is being simulated with Edge connectivity. */
localizedStrings["Edge"] = "Edge";
/* Label for a guide within the color picker */
localizedStrings["Edge of sRGB color space"] = "Edge of sRGB color space";
localizedStrings["Edit"] = "Edit";
localizedStrings["Edit %s"] = "Edit %s";
localizedStrings["Edit Audit"] = "Edit Audit";
localizedStrings["Edit Breakpoint\u2026"] = "Edit Breakpoint\u2026";
localizedStrings["Edit Local Override\u2026"] = "Edit Local Override\u2026";
localizedStrings["Edit \u201Cbox-shadow\u201D"] = "Edit \u201Cbox-shadow\u201D";
localizedStrings["Edit \u201Ccubic-bezier\u201D function"] = "Edit \u201Ccubic-bezier\u201D function";
localizedStrings["Edit \u201Clinear\u201D function"] = "Edit \u201Clinear\u201D function";
localizedStrings["Edit \u201Cspring\u201D function"] = "Edit \u201Cspring\u201D function";
localizedStrings["Edit \u201Csteps\u201D function"] = "Edit \u201Csteps\u201D function";
localizedStrings["Edit configuration"] = "Edit configuration";
localizedStrings["Edit custom gradient"] = "Edit custom gradient";
/* Title of icon indiciating that the selected audit is being edited. */
localizedStrings["Editing Audit @ Audit Tab - Test Case"] = "Editing audit";
localizedStrings["Editing audits"] = "Editing audits";
localizedStrings["Element"] = "Element";
localizedStrings["Element Selection:"] = "Element Selection:";
localizedStrings["Element clips compositing descendants"] = "Element clips compositing descendants";
localizedStrings["Element has CSS blending applied and composited descendants"] = "Element has CSS blending applied and composited descendants";
localizedStrings["Element has CSS filters applied"] = "Element has CSS filters applied";
localizedStrings["Element has CSS filters applied and composited descendants"] = "Element has CSS filters applied and composited descendants";
localizedStrings["Element has \u201C-webkit-overflow-scrolling: touch\u201D style"] = "Element has \u201C-webkit-overflow-scrolling: touch\u201D style";
localizedStrings["Element has \u201Cbackface-visibility: hidden\u201D style"] = "Element has \u201Cbackface-visibility: hidden\u201D style";
localizedStrings["Element has \u201Cblend-mode\u201D style"] = "Element has \u201Cblend-mode\u201D style";
localizedStrings["Element has \u201Cposition: fixed\u201D style"] = "Element has \u201Cposition: fixed\u201D style";
localizedStrings["Element has \u201Cposition: sticky\u201D style"] = "Element has \u201Cposition: sticky\u201D style";
localizedStrings["Element has \u201Ctransform-style: preserve-3d\u201D style"] = "Element has \u201Ctransform-style: preserve-3d\u201D style";
localizedStrings["Element has \u201Cwill-change\u201D style which includes opacity, transform, transform-style, perspective, filter or backdrop-filter"] = "Element has \u201Cwill-change\u201D style which includes opacity, transform, transform-style, perspective, filter or backdrop-filter";
localizedStrings["Element has a 2D transform and composited descendants"] = "Element has a 2D transform and composited descendants";
localizedStrings["Element has a 3D transform"] = "Element has a 3D transform";
localizedStrings["Element has a reflection and composited descendants"] = "Element has a reflection and composited descendants";
localizedStrings["Element has children with a negative z-index"] = "Element has children with a negative z-index";
localizedStrings["Element has opacity applied and composited descendants"] = "Element has opacity applied and composited descendants";
localizedStrings["Element has perspective applied"] = "Element has perspective applied";
localizedStrings["Element is <canvas>"] = "Element is <canvas>";
localizedStrings["Element is <iframe>"] = "Element is <iframe>";
localizedStrings["Element is <model>"] = "Element is <model>";
localizedStrings["Element is <video>"] = "Element is <video>";
localizedStrings["Element is a backdrop root"] = "Element is a backdrop root";
localizedStrings["Element is a plug-in"] = "Element is a plug-in";
localizedStrings["Element is a stacking context and has composited descendants with CSS blending applied"] = "Element is a stacking context and has composited descendants with CSS blending applied";
localizedStrings["Element is animated"] = "Element is animated";
localizedStrings["Element is masked and has composited descendants"] = "Element is masked and has composited descendants";
localizedStrings["Element is the root element"] = "Element is the root element";
localizedStrings["Element may overlap another compositing element"] = "Element may overlap another compositing element";
localizedStrings["Element overlaps other compositing element"] = "Element overlaps other compositing element";
localizedStrings["Elements"] = "Elements";
/* Name of Elements Tab */
localizedStrings["Elements Tab Name"] = "Elements";
/* Checkbox shown in the Console to cause future evaluations as though they are in response to user interaction. */
localizedStrings["Emulate User Gesture @ Console"] = "Emulate User Gesture";
/* Checkbox shown when configuring log/evaluate/probe breakpoint actions to cause it to be evaluated as though it was in response to user interaction. */
localizedStrings["Emulate User Gesture @ breakpoint action configuration"] = "Emulate User Gesture";
localizedStrings["Enable All"] = "Enable All";
localizedStrings["Enable Audit"] = "Enable Audit";
localizedStrings["Enable Breakpoint"] = "Enable Breakpoint";
localizedStrings["Enable Breakpoints"] = "Enable Breakpoints";
localizedStrings["Enable Descendant Breakpoints"] = "Enable Descendant Breakpoints";
localizedStrings["Enable Event Listener"] = "Enable Event Listener";
localizedStrings["Enable Event Listeners"] = "Enable Event Listeners";
localizedStrings["Enable Inspector Bootstrap Script"] = "Enable Inspector Bootstrap Script";
localizedStrings["Enable Intelligent Tracking Prevention debug mode"] = "Enable Intelligent Tracking Prevention debug mode";
localizedStrings["Enable Local Override"] = "Enable Local Override";
localizedStrings["Enable Private Click Measurement debug mode"] = "Enable Private Click Measurement debug mode";
localizedStrings["Enable Program"] = "Enable Program";
localizedStrings["Enable Rule"] = "Enable Rule";
localizedStrings["Enable all breakpoints (%s)"] = "Enable all breakpoints (%s)";
localizedStrings["Enable paint flashing"] = "Enable paint flashing";
/* Label for checkbox that controls whether timeline recordings can capture activity in Worker contexts. */
localizedStrings["Enable recording in Workers"] = "Enable recording in Workers";
localizedStrings["Enable source maps"] = "Enable source maps";
localizedStrings["Enabled"] = "Enabled";
/* Label for column showing the list of enabled timelines. */
localizedStrings["Enabled Timelines @ Timelines Tab"] = "Enabled Timelines";
localizedStrings["Encoded"] = "Encoded";
localizedStrings["Encoding"] = "Encoding";
localizedStrings["Energy Impact"] = "Energy Impact";
localizedStrings["Ensure aria-hidden=\u0022%s\u0022 is not used."] = "Ensure aria-hidden=\u0022%s\u0022 is not used.";
localizedStrings["Ensure that \u201C%s\u201D is spelled correctly."] = "Ensure that \u201C%s\u201D is spelled correctly.";
localizedStrings["Ensure that buttons have accessible labels for assistive technology."] = "Ensure that buttons have accessible labels for assistive technology.";
localizedStrings["Ensure that dialogs have accessible labels for assistive technology."] = "Ensure that dialogs have accessible labels for assistive technology.";
localizedStrings["Ensure that elements of role \u201C%s\u201D and \u201C%s\u201D have required owned elements in accordance with WAI-ARIA."] = "Ensure that elements of role \u201C%s\u201D and \u201C%s\u201D have required owned elements in accordance with WAI-ARIA.";
localizedStrings["Ensure that elements of role \u201C%s\u201D have accessible labels for assistive technology."] = "Ensure that elements of role \u201C%s\u201D have accessible labels for assistive technology.";
localizedStrings["Ensure that elements of role \u201C%s\u201D have required owned elements in accordance with WAI-ARIA."] = "Ensure that elements of role \u201C%s\u201D have required owned elements in accordance with WAI-ARIA.";
localizedStrings["Ensure that links have accessible labels for assistive technology."] = "Ensure that links have accessible labels for assistive technology.";
localizedStrings["Ensure that only one banner is used on the page."] = "Ensure that only one banner is used on the page.";
localizedStrings["Ensure that only one live region is used on the page."] = "Ensure that only one live region is used on the page.";
localizedStrings["Ensure that only one main content section is used on the page."] = "Ensure that only one main content section is used on the page.";
localizedStrings["Ensure that values for \u201C%s\u201D are valid."] = "Ensure that values for \u201C%s\u201D are valid.";
localizedStrings["Entire Recording"] = "Entire Recording";
/* Part of the tooltip indicating that the hovered property is enumerable. */
localizedStrings["Enumerable @ Object Tree Property"] = "Enumerable";
localizedStrings["Error"] = "Error";
/* Title of icon indicating that the selected audit threw an error. */
localizedStrings["Error @ Audit Tab - Test Case"] = "Error";
localizedStrings["Error: "] = "Error: ";
localizedStrings["Errors"] = "Errors";
localizedStrings["Errors:"] = "Errors:";
localizedStrings["Estimated energy impact."] = "Estimated energy impact.";
localizedStrings["Eval Code"] = "Eval Code";
localizedStrings["Evaluate JavaScript"] = "Evaluate JavaScript";
localizedStrings["Evaluations"] = "Evaluations";
localizedStrings["Event"] = "Event";
localizedStrings["Event Breakpoint\u2026"] = "Event Breakpoint\u2026";
localizedStrings["Event Dispatched"] = "Event Dispatched";
localizedStrings["Event Handlers:"] = "Event Handlers:";
localizedStrings["Event Listeners"] = "Event Listeners";
/* Display name for the type of network requests sent via EventSource API (https://developer.mozilla.org/en-US/docs/Web/API/EventSource) */
localizedStrings["EventSource"] = "EventSource";
/* Display name for the type of network requests sent via EventSource(s) API (https://developer.mozilla.org/en-US/docs/Web/API/EventSource) */
localizedStrings["EventSources"] = "EventSources";
localizedStrings["Events"] = "Events";
localizedStrings["Events:"] = "Events:";
localizedStrings["Exception with thrown value: %s"] = "Exception with thrown value: %s";
localizedStrings["Execution context for %s"] = "Execution context for %s";
localizedStrings["Expand All"] = "Expand All";
localizedStrings["Expand columns"] = "Expand columns";
localizedStrings["Expanded"] = "Expanded";
localizedStrings["Experimental"] = "Experimental";
localizedStrings["Export"] = "Export";
localizedStrings["Export (%s)"] = "Export (%s)";
localizedStrings["Export Audit"] = "Export Audit";
localizedStrings["Export HAR"] = "Export HAR";
localizedStrings["Export Result"] = "Export Result";
localizedStrings["Export recording (%s)"] = "Export recording (%s)";
localizedStrings["Export recording (%s)\nShift-click to export a HTML reduction"] = "Export recording (%s)\nShift-click to export a HTML reduction";
/* Tooltip for button that exports the most recent result after running an audit. */
localizedStrings["Export result (%s) @ Audit Tab"] = "Export result (%s)";
localizedStrings["Expression"] = "Expression";
localizedStrings["Extension Scripts"] = "Extension Scripts";
localizedStrings["Extension Style Sheets"] = "Extension Style Sheets";
localizedStrings["Extensions"] = "Extensions";
localizedStrings["Extra Scripts"] = "Extra Scripts";
localizedStrings["Extra Style Sheets"] = "Extra Style Sheets";
localizedStrings["Fade unexecuted code"] = "Fade unexecuted code";
/* Title of icon indicating that the selected audit failed. */
localizedStrings["Fail @ Audit Tab - Test Case"] = "Fail";
localizedStrings["Failed to upgrade"] = "Failed to upgrade";
localizedStrings["Failure status code"] = "Failure status code";
/* Section title for font feature properties. */
localizedStrings["Feature Properties @ Font Details Sidebar Section"] = "Feature Properties";
/* Resource loaded via 'fetch' method */
localizedStrings["Fetch"] = "Fetch";
/* Resources loaded via 'fetch' method */
localizedStrings["Fetches"] = "Fetches";
/* Label for the input used for mapping the local override to a file on disk. */
localizedStrings["File @ Local Override Popopver"] = "File";
/* Option for creating a local override for a single file. */
localizedStrings["File @ Local Override Type"] = "File";
localizedStrings["File or Resource"] = "File or Resource";
localizedStrings["Filename"] = "Filename";
localizedStrings["Filter"] = "Filter";
localizedStrings["Filter Full URL"] = "Filter Full URL";
localizedStrings["Filter:"] = "Filter:";
localizedStrings["Find Next (%s)"] = "Find Next (%s)";
localizedStrings["Find Previous (%s)"] = "Find Previous (%s)";
/* Flexbox layout section name */
localizedStrings["Flexbox @ Elements details sidebar"] = "Flexbox";
localizedStrings["Flows"] = "Flows";
localizedStrings["Focus on Subtree"] = "Focus on Subtree";
localizedStrings["Focused"] = "Focused";
localizedStrings["Font"] = "Font";
/* Title for the Font details sidebar. */
localizedStrings["Font @ Font Details Sidebar Title"] = "Font";
/* A warning that is shown in the Font Details Sidebar when the font had to be synthesized to support the provided weight. */
localizedStrings["Font was synthesized to be bold because no bold font is available."] = "Font was synthesized to be bold because no bold font is available.";
/* A warning that is shown in the Font Details Sidebar when the font had to be synthesized to support the provided style. */
localizedStrings["Font was synthesized to be oblique because no italic font is available."] = "Font was synthesized to be oblique because no italic font is available.";
/* A warning that is shown in the Font Details Sidebar when the font had to be synthesized to support the provided style. */
localizedStrings["Font was synthesized to be oblique because no oblique font is available."] = "Font was synthesized to be oblique because no oblique font is available.";
localizedStrings["Fonts"] = "Fonts";
localizedStrings["Force print media styles"] = "Force print media styles";
/* Layout phase records that were imperative (forced) */
localizedStrings["Forced Layout"] = "Forced Layout";
/* A context menu item to force (override) a DOM node's pseudo-classes */
localizedStrings["Forced Pseudo-Classes"] = "Forced Pseudo-Classes";
localizedStrings["Format: Color Function"] = "Format: Color Function";
localizedStrings["Format: HSL"] = "Format: HSL";
localizedStrings["Format: HSLA"] = "Format: HSLA";
localizedStrings["Format: Hex"] = "Format: Hex";
localizedStrings["Format: Hex with Alpha"] = "Format: Hex with Alpha";
localizedStrings["Format: Keyword"] = "Format: Keyword";
localizedStrings["Format: RGB"] = "Format: RGB";
localizedStrings["Format: RGBA"] = "Format: RGBA";
localizedStrings["Format: Short Hex"] = "Format: Short Hex";
localizedStrings["Format: Short Hex with Alpha"] = "Format: Short Hex with Alpha";
localizedStrings["Forward (%s)"] = "Forward (%s)";
localizedStrings["Fragment"] = "Fragment";
localizedStrings["Fragment Shader"] = "Fragment Shader";
localizedStrings["Frame %d"] = "Frame %d";
localizedStrings["Frame %d \u2014 %s"] = "Frame %d \u2014 %s";
localizedStrings["Frames"] = "Frames";
localizedStrings["Frames %d \u2013 %d"] = "Frames %d \u2013 %d";
/* Title for list of HTML subframe JavaScript execution contexts */
localizedStrings["Frames @ Execution Context Picker"] = "Frames";
/* Title for Frames row in Media Sidebar */
localizedStrings["Frames @ Media Sidebar Frame Count"] = "Frames";
localizedStrings["Full Garbage Collection"] = "Full Garbage Collection";
localizedStrings["Full URL"] = "Full URL";
/* Value string for Full Range color in the Media Sidebar */
localizedStrings["Full range @ Media Sidebar"] = "Full range";
localizedStrings["Full-Screen"] = "Full-Screen";
localizedStrings["Full-Screen from \u201C%s\u201D"] = "Full-Screen from \u201C%s\u201D";
/* Property value for `font-variant-alternates: full-width`. */
localizedStrings["Full-Width Variants @ Font Details Sidebar Property Value"] = "Full-Width Variants";
localizedStrings["Function"] = "Function";
localizedStrings["Function Name Variable"] = "Function Name Variable";
localizedStrings["GIF"] = "GIF";
localizedStrings["Garbage Collection"] = "Garbage Collection";
localizedStrings["General"] = "General";
/* Text indicating that the local override will block the network activity with a general error. */
localizedStrings["General @ Local Override Type"] = "General";
/* Title for General Section in Media Sidebar */
localizedStrings["General @ Media Sidebar"] = "General";
localizedStrings["Getter"] = "Getter";
localizedStrings["Global Code"] = "Global Code";
localizedStrings["Global Lexical Environment"] = "Global Lexical Environment";
/* Settings tab checkbox label for whether the global search should populate from the current selection. */
localizedStrings["Global Search From Selection @ Settings"] = "%s from selection";
localizedStrings["Global Variables"] = "Global Variables";
localizedStrings["Go to variable"] = "Go to variable";
localizedStrings["Grammar"] = "Grammar";
/* Name of Graphics Tab */
localizedStrings["Graphics Tab Name"] = "Graphics";
/* CSS Grid layout section name */
localizedStrings["Grid @ Elements details sidebar"] = "Grid";
localizedStrings["Group"] = "Group";
/* Dropdown option inside the popover used to creating an audit group. */
localizedStrings["Group @ Audit Tab Navigation Sidebar"] = "Group";
localizedStrings["Group By Resource"] = "Group By Resource";
localizedStrings["Group Media Requests"] = "Group Media Requests";
/* Group DOM event listeners by DOM event */
localizedStrings["Group by Event @ Node Event Listeners"] = "Group by Event";
/* Group DOM event listeners by DOM node */
localizedStrings["Group by Target @ Node Event Listeners"] = "Group by Target";
localizedStrings["Group source map network errors"] = "Group source map network errors";
localizedStrings["Grouping Method"] = "Grouping Method";
localizedStrings["HAR Export (%s)"] = "HAR Export (%s)";
localizedStrings["HAR Import"] = "HAR Import";
localizedStrings["HAR Import Error: %s"] = "HAR Import Error: %s";
localizedStrings["HTML"] = "HTML";
localizedStrings["HTML Attributes"] = "HTML Attributes";
/* Placeholder text in an editable field for the name of a HTTP header */
localizedStrings["Header @ Local Override Popover New Headers Data Grid Item"] = "Header";
localizedStrings["Headers"] = "Headers";
localizedStrings["Headers:"] = "Headers:";
localizedStrings["Heading Level"] = "Heading Level";
localizedStrings["Heap Snapshot %s-%s-%s at %s.%s.%s"] = "Heap Snapshot %s-%s-%s at %s.%s.%s";
localizedStrings["Heap Snapshot Object (%s)"] = "Heap Snapshot Object (%s)";
localizedStrings["Height"] = "Height";
localizedStrings["Hide Console"] = "Hide Console";
localizedStrings["Hide Console (%s)"] = "Hide Console (%s)";
localizedStrings["Hide Elements"] = "Hide Elements";
localizedStrings["Hide Path"] = "Hide Path";
localizedStrings["Hide compositing borders"] = "Hide compositing borders";
localizedStrings["Hide rulers"] = "Hide rulers";
localizedStrings["Hide the details sidebar (%s)"] = "Hide the details sidebar (%s)";
localizedStrings["Hide the navigation sidebar (%s)"] = "Hide the navigation sidebar (%s)";
localizedStrings["Hide transparency grid"] = "Hide transparency grid";
localizedStrings["Hide type information"] = "Hide type information";
localizedStrings["Hierarchy Level"] = "Hierarchy Level";
/* High network request priority */
localizedStrings["High @ Network Priority"] = "High";
/* Energy Impact: High */
localizedStrings["High @ Timeline Energy Impact"] = "High";
localizedStrings["Highest: %s"] = "Highest: %s";
/* Property value for `font-variant-ligatures: historical-ligatures`. */
localizedStrings["Historical @ Font Details Sidebar Property Value"] = "Historical";
/* Property value for `font-variant-alternates: historical-forms`. */
localizedStrings["Historical Forms @ Font Details Sidebar Property Value"] = "Historical Forms";
localizedStrings["Host"] = "Host";
localizedStrings["ICO"] = "ICO";
localizedStrings["IP"] = "IP";
localizedStrings["IP Address"] = "IP Address";
localizedStrings["ITML Context"] = "ITML Context";
localizedStrings["Identifier"] = "Identifier";
localizedStrings["Identity"] = "Identity";
/* Section title for font identity information. */
localizedStrings["Identity @ Font Details Sidebar Section"] = "Identity";
localizedStrings["Idle"] = "Idle";
localizedStrings["If the URL of any script matches one of the regular expression patterns below, any pauses that would have happened in that script will be deferred until execution has continued to outside of that script."] = "If the URL of any script matches one of the regular expression patterns below, any pauses that would have happened in that script will be deferred until execution has continued to outside of that script.";
localizedStrings["Ignore"] = "Ignore";
localizedStrings["Ignore script when debugging"] = "Ignore script when debugging";
localizedStrings["Ignored"] = "Ignored";
localizedStrings["Image"] = "Image";
localizedStrings["Image Size"] = "Image Size";
localizedStrings["Images"] = "Images";
localizedStrings["Images:"] = "Images:";
localizedStrings["Immediate Pause Requested"] = "Immediate Pause Requested";
localizedStrings["Import"] = "Import";
localizedStrings["Import Audit or Result"] = "Import Audit or Result";
localizedStrings["Import HAR"] = "Import HAR";
localizedStrings["Import Recording"] = "Import Recording";
localizedStrings["Import audit or result"] = "Import audit or result";
localizedStrings["Imported"] = "Imported";
localizedStrings["Imported - %s"] = "Imported - %s";
localizedStrings["Imported Snapshot \u2014 %s"] = "Imported Snapshot \u2014 %s";
localizedStrings["Include original request data"] = "Include original request data";
localizedStrings["Include original response data"] = "Include original response data";
localizedStrings["Incomplete"] = "Incomplete";
/* Label for input to override the preference for high contrast. */
localizedStrings["Increase contrast @ User Preferences Overrides"] = "Increase contrast";
localizedStrings["Indent width:"] = "Indent width:";
localizedStrings["Index"] = "Index";
localizedStrings["Index Key \u2014 %s"] = "Index Key \u2014 %s";
localizedStrings["Indexed Databases"] = "Indexed Databases";
localizedStrings["Info: "] = "Info: ";
localizedStrings["Infos"] = "Infos";
/* A section of CSS rules matching an ancestor DOM node */
localizedStrings["Inherited From"] = "Inherited From";
localizedStrings["Initial State"] = "Initial State";
localizedStrings["Initial Velocity"] = "Initial Velocity";
localizedStrings["Initiated"] = "Initiated";
localizedStrings["Initiator"] = "Initiator";
localizedStrings["Input: "] = "Input: ";
/* Checkbox label for the inset of a CSS box shadow. */
localizedStrings["Inset @ Box Shadow Editor"] = "Inset";
localizedStrings["Inspector Bootstrap Script"] = "Inspector Bootstrap Script";
localizedStrings["Inspector Style Sheet"] = "Inspector Style Sheet";
localizedStrings["Instances"] = "Instances";
localizedStrings["Invalid"] = "Invalid";
localizedStrings["Inverted"] = "Inverted";
localizedStrings["Invisible characters"] = "Invisible characters";
localizedStrings["Invoke getter"] = "Invoke getter";
localizedStrings["It is evaluated immediately after the global object is created, before any other content has loaded."] = "It is evaluated immediately after the global object is created, before any other content has loaded.";
/* Property title for `font-style` italic and `ital` variation axis. */
localizedStrings["Italic @ Font Details Sidebar Property Value"] = "Italic";
/* Tooltip for a timestamp marker that represents when a CSS animation/transition iterates */
localizedStrings["Iteration"] = "Iteration";
/* Property value for `font-variant-alternates: jis04`. */
localizedStrings["JIS2004 Forms @ Font Details Sidebar Property Value"] = "JIS2004 Forms";
/* Property value for `font-variant-alternates: jis78`. */
localizedStrings["JIS78 Forms @ Font Details Sidebar Property Value"] = "JIS78 Forms";
/* Property value for `font-variant-alternates: jis83`. */
localizedStrings["JIS83 Forms @ Font Details Sidebar Property Value"] = "JIS83 Forms";
/* Property value for `font-variant-alternates: jis90`. */
localizedStrings["JIS90 Forms @ Font Details Sidebar Property Value"] = "JIS90 Forms";
localizedStrings["JP2"] = "JP2";
localizedStrings["JPEG"] = "JPEG";
localizedStrings["JavaScript"] = "JavaScript";
localizedStrings["JavaScript & Events"] = "JavaScript & Events";
localizedStrings["JavaScript Allocations"] = "JavaScript Allocations";
localizedStrings["JavaScript Context"] = "JavaScript Context";
localizedStrings["JavaScript execution is paused"] = "JavaScript execution is paused";
localizedStrings["Jump to Definition"] = "Jump to Definition";
localizedStrings["Key"] = "Key";
localizedStrings["Key Path"] = "Key Path";
/* Label indicating that network activity is being simulated with LTE connectivity */
localizedStrings["LTE"] = "LTE";
localizedStrings["Label"] = "Label";
localizedStrings["Latency"] = "Latency";
localizedStrings["Layer Count: %d"] = "Layer Count: %d";
localizedStrings["Layer Info"] = "Layer Info";
localizedStrings["Layers"] = "Layers";
/* Name of Layers Tab */
localizedStrings["Layers Tab Name"] = "Layers";
localizedStrings["Layout & Rendering"] = "Layout & Rendering";
/* Title of the CSS style panel. */
localizedStrings["Layout @ Styles Sidebar"] = "Layout";
/* Layout phase timeline records */
localizedStrings["Layout @ Timeline record"] = "Layout";
localizedStrings["Layout Invalidated"] = "Layout Invalidated";
/* Property title for `font-variant-ligatures`. */
localizedStrings["Ligatures @ Font Details Sidebar Property"] = "Ligatures";
/* Label of dropdown item used for forcing Web Inspector to be shown using a light theme */
localizedStrings["Light @ Settings General Appearance"] = "Light";
/* Label for the light color scheme preference. */
localizedStrings["Light @ User Preferences Overrides"] = "Light";
localizedStrings["Limit syntax highlighting on long lines of code"] = "Limit syntax highlighting on long lines of code";
localizedStrings["Line %d"] = "Line %d";
localizedStrings["Line %d:%d"] = "Line %d:%d";
localizedStrings["Line Number"] = "Line Number";
/* Label for option to toggle the line names setting for CSS grid overlays */
localizedStrings["Line names @ Layout Panel Overlay Options"] = "Line Names";
/* Label for option to toggle the line numbers setting for CSS grid overlays */
localizedStrings["Line numbers @ Layout Panel Overlay Options"] = "Line Numbers";
localizedStrings["Line wrapping:"] = "Line wrapping:";
localizedStrings["Linear Gradient"] = "Linear Gradient";
/* Property value for `font-variant-numeric: lining-nums`. */
localizedStrings["Lining Numerals @ Font Details Sidebar Property Value"] = "Lining Numerals";
localizedStrings["Live"] = "Live";
localizedStrings["Live Activity"] = "Live Activity";
localizedStrings["Live Size"] = "Live Size";
localizedStrings["Load \u2014 %s"] = "Load \u2014 %s";
localizedStrings["Load cancelled"] = "Load cancelled";
localizedStrings["Loaded in %s"] = "Loaded in %s";
localizedStrings["Loading for %s"] = "Loading for %s";
localizedStrings["Local Override"] = "Local Override";
localizedStrings["Local Override: could not load \u201C%s\u201D"] = "Local Override: could not load \u201C%s\u201D";
localizedStrings["Local Override\u2026"] = "Local Override\u2026";
localizedStrings["Local Overrides"] = "Local Overrides";
localizedStrings["Local Storage"] = "Local Storage";
localizedStrings["Local Variables"] = "Local Variables";
localizedStrings["Located at %s"] = "Located at %s";
localizedStrings["Location"] = "Location";
localizedStrings["Log Animation"] = "Log Animation";
localizedStrings["Log Canvas Context"] = "Log Canvas Context";
/* Log (print) DOM element to Console */
localizedStrings["Log Element"] = "Log Element";
localizedStrings["Log Frame Text"] = "Log Frame Text";
localizedStrings["Log Frame Value"] = "Log Frame Value";
localizedStrings["Log Message"] = "Log Message";
/* Log (print) DOM node to Console */
localizedStrings["Log Node"] = "Log Node";
localizedStrings["Log Symbol"] = "Log Symbol";
localizedStrings["Log Value"] = "Log Value";
localizedStrings["Log WebSocket"] = "Log WebSocket";
localizedStrings["Log: "] = "Log: ";
localizedStrings["Logs"] = "Logs";
/* Low network request priority */
localizedStrings["Low @ Network Priority"] = "Low";
/* Energy Impact: Low */
localizedStrings["Low @ Timeline Energy Impact"] = "Low";
localizedStrings["Lowest: %s"] = "Lowest: %s";
localizedStrings["MIME Type"] = "MIME Type";
/* Label for MIME type input for the local override currently being edited. */
localizedStrings["MIME Type @ Local Override Popover"] = "MIME Type";
localizedStrings["MIME Type:"] = "MIME Type:";
localizedStrings["MSE Logging:"] = "MSE Logging:";
localizedStrings["Main Thread"] = "Main Thread";
localizedStrings["Main: %s"] = "Main: %s";
/* Navigation item that changes the local override to fetch its content from a directory on disk. */
localizedStrings["Map to Directory @ Resource Preview"] = "Map to Directory";
/* Navigation item that changes the local override to fetch its content from a file on disk. */
localizedStrings["Map to File @ Resource Preview"] = "Map to File";
localizedStrings["Mapped to \u201C%s\u201D"] = "Mapped to \u201C%s\u201D";
localizedStrings["Mass"] = "Mass";
localizedStrings["Matching"] = "Matching";
/* Title for Matrix Coefficients row in Media Sidebar */
localizedStrings["Matrix Coefficients @ Media Sidebar"] = "Matrix Coefficients";
localizedStrings["Max Comparison"] = "Max Comparison";
localizedStrings["Maximum"] = "Maximum";
localizedStrings["Maximum CPU Usage: %s"] = "Maximum CPU Usage: %s";
localizedStrings["Maximum Size: %s"] = "Maximum Size: %s";
localizedStrings["Maximum maximum memory size in this recording"] = "Maximum maximum memory size in this recording";
/* Max axis value @ Font Details Sidebar */
localizedStrings["Maximum value of variation axis"] = "Maximum value of variation axis";
localizedStrings["Media"] = "Media";
localizedStrings["Media & Animations"] = "Media & Animations";
localizedStrings["Media Element"] = "Media Element";
localizedStrings["Media Event"] = "Media Event";
localizedStrings["Media Logging:"] = "Media Logging:";
localizedStrings["MediaSource"] = "MediaSource";
/* Medium network request priority */
localizedStrings["Medium @ Network Priority"] = "Medium";
/* Energy Impact: Medium */
localizedStrings["Medium @ Timeline Energy Impact"] = "Medium";
localizedStrings["Memory"] = "Memory";
localizedStrings["Memory Cache"] = "Memory Cache";
localizedStrings["Memory usage of this canvas"] = "Memory usage of this canvas";
localizedStrings["Memory: %s"] = "Memory: %s";
localizedStrings["Message"] = "Message";
localizedStrings["Method"] = "Method";
localizedStrings["Microtask Dispatched"] = "Microtask Dispatched";
localizedStrings["Microtask Fired"] = "Microtask Fired";
/* Min axis value @ Font Details Sidebar */
localizedStrings["Minimum value of variation axis"] = "Minimum value of variation axis";
localizedStrings["Missing result level"] = "Missing result level";
localizedStrings["Mixed"] = "Mixed";
localizedStrings["Modifications are saved automatically and will apply the next time the Console Snippet is run."] = "Modifications are saved automatically and will apply the next time the Console Snippet is run.";
localizedStrings["Modifications made here will take effect on the next load of any page or sub-frame."] = "Modifications made here will take effect on the next load of any page or sub-frame.";
localizedStrings["Module Code"] = "Module Code";
localizedStrings["Mono"] = "Mono";
localizedStrings["More information is available at <https://webkit.org/web-inspector/console-snippets/>."] = "More information is available at <https://webkit.org/web-inspector/console-snippets/>.";
localizedStrings["More information is available at <https://webkit.org/web-inspector/inspector-bootstrap-script/>."] = "More information is available at <https://webkit.org/web-inspector/inspector-bootstrap-script/>.";
localizedStrings["Multi-Entry"] = "Multi-Entry";
localizedStrings["Name"] = "Name";
/* Property title for the family name of the font. */
localizedStrings["Name @ Font Details Sidebar Property"] = "Name";
/* Label for the navigation sidebar. */
localizedStrings["Navigation @ Sidebar"] = "Navigation";
localizedStrings["Network"] = "Network";
localizedStrings["Network Issue"] = "Network Issue";
localizedStrings["Network Requests"] = "Network Requests";
localizedStrings["Network Requests:"] = "Network Requests:";
/* Name of Network Tab */
localizedStrings["Network Tab Name"] = "Network";
localizedStrings["Network throttling is enabled"] = "Network throttling is enabled";
localizedStrings["Network:"] = "Network:";
/* A submenu item of 'Add' to add DOM nodes after the selected DOM node */
localizedStrings["Next Sibling"] = "Next Sibling";
localizedStrings["No"] = "No";
localizedStrings["No Accessibility Information"] = "No Accessibility Information";
localizedStrings["No Associated Data"] = "No Associated Data";
localizedStrings["No Attributes"] = "No Attributes";
localizedStrings["No Box Model Information"] = "No Box Model Information";
localizedStrings["No CSS Changes"] = "No CSS Changes";
/* Message shown when there are no CSS Flex containers on the inspected page. */
localizedStrings["No CSS Flex Containers @ Layout Details Sidebar Panel"] = "No CSS Flex Containers";
/* Message shown when there are no CSS Grid containers on the inspected page. */
localizedStrings["No CSS Grid Containers @ Layout Details Sidebar Panel"] = "No CSS Grid Containers";
localizedStrings["No Canvas Contexts"] = "No Canvas Contexts";
localizedStrings["No Canvas Selected"] = "No Canvas Selected";
localizedStrings["No Chart Available"] = "No Chart Available";
localizedStrings["No Child Layers"] = "No Child Layers";
localizedStrings["No Console Snippets"] = "No Console Snippets";
localizedStrings["No Data Bindings"] = "No Data Bindings";
localizedStrings["No Enabled Audits"] = "No Enabled Audits";
localizedStrings["No Entries"] = "No Entries";
localizedStrings["No Event Listeners"] = "No Event Listeners";
localizedStrings["No Filter Results"] = "No Filter Results";
localizedStrings["No Keyframes"] = "No Keyframes";
localizedStrings["No Layer Available"] = "No Layer Available";
localizedStrings["No Overrides"] = "No Overrides";
localizedStrings["No Parameters"] = "No Parameters";
localizedStrings["No Preview Available"] = "No Preview Available";
localizedStrings["No Properties"] = "No Properties";
localizedStrings["No Query Parameters"] = "No Query Parameters";
localizedStrings["No Request Headers"] = "No Request Headers";
localizedStrings["No Response Headers"] = "No Response Headers";
localizedStrings["No Result"] = "No Result";
localizedStrings["No Results Found"] = "No Results Found";
localizedStrings["No Search Results"] = "No Search Results";
localizedStrings["No Styles"] = "No Styles";
localizedStrings["No Watch Expressions"] = "No Watch Expressions";
/* Message shown when there are no additional variation axes to show. */
localizedStrings["No additional variation axes. @ Font Details Sidebar"] = "No additional variation axes.";
localizedStrings["No audit selected"] = "No audit selected";
localizedStrings["No certificate security information."] = "No certificate security information.";
localizedStrings["No connection security information."] = "No connection security information.";
localizedStrings["No matching ARIA role"] = "No matching ARIA role";
localizedStrings["No preview available"] = "No preview available";
localizedStrings["No request cookies."] = "No request cookies.";
localizedStrings["No request headers"] = "No request headers";
localizedStrings["No request, served from the disk cache."] = "No request, served from the disk cache.";
localizedStrings["No request, served from the memory cache."] = "No request, served from the memory cache.";
localizedStrings["No response cookies."] = "No response cookies.";
localizedStrings["No response headers"] = "No response headers";
/* Placeholder text shown when there are no images to display in the Screenshots timeline. */
localizedStrings["No screenshots @ Screenshots Timeline"] = "No screenshots";
localizedStrings["No search results"] = "No search results";
localizedStrings["No search string"] = "No search string";
/* Label indicating that network throttling is inactive. */
localizedStrings["No throttling"] = "No throttling";
localizedStrings["Node"] = "Node";
/* A submenu item of 'Break On' that breaks (pauses) before DOM node is removed */
localizedStrings["Node Removed @ DOM Breakpoint"] = "Node Removed";
localizedStrings["Nodes"] = "Nodes";
localizedStrings["None"] = "None";
/* Property value for any `normal` CSS value. */
localizedStrings["Normal @ Font Details Sidebar Property Value"] = "Normal";
/* Part of the tooltip indicating that the hovered property is not configurable. */
localizedStrings["Not configurable @ Object Tree Property"] = "Not configurable";
/* Part of the tooltip indicating that the hovered property is not enumerable. */
localizedStrings["Not enumerable @ Object Tree Property"] = "Not enumerable";
localizedStrings["Not found"] = "Not found";
/* Part of the tooltip indicating that the hovered property is not writable. */
localizedStrings["Not writable @ Object Tree Property"] = "Not writable";
/* Title of icon indicating that the selected audit has not been run yet. */
localizedStrings["Not yet run @ Audit Tab - Test Case"] = "Not yet run";
/* Section header for the group of CSS variables with numbers as values */
localizedStrings["Numbers @ Computed Style variables section"] = "Numbers";
/* Property title for `font-variant-numeric`. */
localizedStrings["Numeric @ Font Details Sidebar Property"] = "Numeric";
localizedStrings["Object Graph"] = "Object Graph";
localizedStrings["Object Store"] = "Object Store";
/* Property title for `font-style` oblique and `slnt` variation axis. */
localizedStrings["Oblique @ Font Details Sidebar Property Value"] = "Oblique";
localizedStrings["Observer Callback"] = "Observer Callback";
localizedStrings["Observer Handlers:"] = "Observer Handlers:";
localizedStrings["Observers:"] = "Observers:";
localizedStrings["Off"] = "Off";
/* Label indicating that an input of type switch is off. */
localizedStrings["Off @ Switch State"] = "Off";
/* Label for a preference that is turned off. */
localizedStrings["Off @ User Preferences Overrides"] = "Off";
/* Input label for the x-axis of the offset of a CSS box shadow */
localizedStrings["Offset X @ Box Shadow Editor"] = "Offset X";
/* Input label for the y-axis of the offset of a CSS box shadow */
localizedStrings["Offset Y @ Box Shadow Editor"] = "Offset Y";
/* Property value for `font-variant-numeric: oldstyle-nums`. */
localizedStrings["Old-Style Numerals @ Font Details Sidebar Property Value"] = "Old-Style Numerals";
/* Label indicating that an input of type switch is on. */
localizedStrings["On @ Switch State"] = "On";
/* Label for a preference that is turned on. */
localizedStrings["On @ User Preferences Overrides"] = "On";
localizedStrings["Once"] = "Once";
localizedStrings["Only show resources with issues"] = "Only show resources with issues";
localizedStrings["Only show visual actions"] = "Only show visual actions";
localizedStrings["Open"] = "Open";
localizedStrings["Open closed tabs\u2026"] = "Open closed tabs\u2026";
/* Context menu item for opening the target item in a new window. */
localizedStrings["Open in New Window @ Context Menu Item"] = "Open in New Window";
/* Property title for `font-optical-sizing` and `opzs` variation axis. */
localizedStrings["Optical Sizing @ Font Details Sidebar Property Value"] = "Optical Sizing";
localizedStrings["Option-click to pick color from screen."] = "Option-click to pick color from screen.";
localizedStrings["Option-click to show source"] = "Option-click to show source";
/* Tooltip with instructions on how to show all hidden CSS variables */
localizedStrings["Option-click to show unused CSS variables from all rules @ Styles Sidebar Panel Tooltip"] = "Option-click to show unused CSS variables from all rules";
localizedStrings["Options"] = "Options";
/* Label for option to toggle the order numbers setting for CSS flex overlays */
localizedStrings["Order Numbers @ Layout Panel Overlay Options"] = "Order Numbers";
/* Property value for `font-variant-numeric: ordinal`. */
localizedStrings["Ordinal Letter Forms @ Font Details Sidebar Property Value"] = "Ordinal Letter Forms";
localizedStrings["Original formatting"] = "Original formatting";
localizedStrings["Originally %s"] = "Originally %s";
localizedStrings["Originator"] = "Originator";
localizedStrings["Other"] = "Other";
/* Section header for the generic group of CSS variables */
localizedStrings["Other @ Computed Style variables section"] = "Other";
localizedStrings["Other Issue"] = "Other Issue";
localizedStrings["Other Threads"] = "Other Threads";
localizedStrings["Other filter options\u2026"] = "Other filter options\u2026";
localizedStrings["Other: %s"] = "Other: %s";
localizedStrings["Other\u2026"] = "Other\u2026";
localizedStrings["Outgoing message"] = "Outgoing message";
localizedStrings["Output: "] = "Output: ";
localizedStrings["Over 1 ms"] = "Over 1 ms";
localizedStrings["Over 15 ms"] = "Over 15 ms";
localizedStrings["Override user preferences"] = "Override user preferences";
localizedStrings["Overview"] = "Overview";
localizedStrings["Owns"] = "Owns";
localizedStrings["PDF"] = "PDF";
localizedStrings["PNG"] = "PNG";
localizedStrings["Page"] = "Page";
localizedStrings["Page Issue"] = "Page Issue";
/* Heading for list of flex overlay options */
localizedStrings["Page Overlay Options @ Layout Panel Flex Section Header"] = "Page Overlay Options";
/* Heading for list of grid overlay options */
localizedStrings["Page Overlay Options @ Layout Panel Grid Section Header"] = "Page Overlay Options";
/* Heading for list of grid nodes */
localizedStrings["Page Overlays @ Layout Sidebar Section Header"] = "Grid Overlays";
/* Heading for list of flex container nodes */
localizedStrings["Page Overlays for Flex containers @ Layout Sidebar Section Header"] = "Flexbox Overlays";
localizedStrings["Page navigated at %s"] = "Page navigated at %s";
localizedStrings["Page reloaded at %s"] = "Page reloaded at %s";
/* Paint (render) phase timeline records */
localizedStrings["Paint @ Timeline record"] = "Paint";
localizedStrings["Paints"] = "Paints";
/* A count of how many times an element was painted (rendered) */
localizedStrings["Paints @ Column title"] = "Paints";
localizedStrings["Parent"] = "Parent";
localizedStrings["Partial Garbage Collection"] = "Partial Garbage Collection";
localizedStrings["Partition Key"] = "Partition Key";
/* Title of icon indicating that the selected audit passed with no issues. */
localizedStrings["Pass @ Audit Tab - Test Case"] = "Pass";
localizedStrings["Passive"] = "Passive";
localizedStrings["Path"] = "Path";
localizedStrings["Pause Processing"] = "Pause Processing";
localizedStrings["Pause Reason"] = "Pause Reason";
localizedStrings["Pause script execution (%s or %s)"] = "Pause script execution (%s or %s)";
/* Tooltip for a time range bar that represents when the playback of a audio/video element is paused */
localizedStrings["Paused"] = "Paused";
/* The number of tests that passed expressed as a percentage, followed by a literal %. */
localizedStrings["Percentage (of audits)"] = "%s%%";
localizedStrings["Periods of high CPU utilization will rapidly drain battery. Strive to keep idle pages under %s average CPU utilization."] = "Periods of high CPU utilization will rapidly drain battery. Strive to keep idle pages under %s average CPU utilization.";
/* Property value for `font-variant-capitals: petite-caps`. */
localizedStrings["Petite Capitals @ Font Details Sidebar Property Value"] = "Petite Capitals";
/* Color picker view tooltip for picking a color from the screen. */
localizedStrings["Pick color from screen"] = "Pick color from screen";
localizedStrings["Ping"] = "Ping";
localizedStrings["Ping Frame"] = "Ping Frame";
localizedStrings["Pings"] = "Pings";
localizedStrings["Play Sound"] = "Play Sound";
/* Tooltip for a time range bar that represents when the playback of a audio/video element is running */
localizedStrings["Playing"] = "Playing";
localizedStrings["Polite"] = "Polite";
localizedStrings["Pong Frame"] = "Pong Frame";
localizedStrings["Port"] = "Port";
/* Property title for `font-variant-position`. */
localizedStrings["Position @ Font Details Sidebar Property"] = "Position";
localizedStrings["Power Efficient Playback"] = "Power Efficient Playback";
localizedStrings["Prefer Shorthands"] = "Prefer Shorthands";
localizedStrings["Prefer indent using:"] = "Prefer indent using:";
localizedStrings["Preserve Log"] = "Preserve Log";
localizedStrings["Press %s to create a new audit."] = "Press %s to create a new audit.";
localizedStrings["Press %s to enable audits."] = "Press %s to enable audits.";
localizedStrings["Press %s to import an audit or a result."] = "Press %s to import an audit or a result.";
localizedStrings["Press %s to load a recording from file."] = "Press %s to load a recording from file.";
localizedStrings["Press %s to see recent searches."] = "Press %s to see recent searches.";
localizedStrings["Press %s to start editing audits."] = "Press %s to start editing audits.";
localizedStrings["Press %s to start running the audit."] = "Press %s to start running the audit.";
localizedStrings["Press %s to stop editing audits."] = "Press %s to stop editing audits.";
localizedStrings["Press %s to stop running."] = "Press %s to stop running.";
localizedStrings["Pressed"] = "Pressed";
localizedStrings["Pretty print"] = "Pretty print";
localizedStrings["Preview"] = "Preview";
/* A submenu item of 'Add' to add DOM nodes before the selected DOM node */
localizedStrings["Previous Sibling"] = "Previous Sibling";
localizedStrings["Primary Key"] = "Primary Key";
localizedStrings["Primary Key \u2014 %s"] = "Primary Key \u2014 %s";
localizedStrings["Priority"] = "Priority";
localizedStrings["Privacy"] = "Privacy";
localizedStrings["Probe Expression"] = "Probe Expression";
localizedStrings["Probe Sample Recorded"] = "Probe Sample Recorded";
localizedStrings["Probes"] = "Probes";
localizedStrings["Processing Instruction"] = "Processing Instruction";
localizedStrings["Program %d"] = "Program %d";
localizedStrings["Properties"] = "Properties";
localizedStrings["Property"] = "Property";
/* Property value for `font-variant-numeric: proportional-nums`. */
localizedStrings["Proportional Numerals @ Font Details Sidebar Property Value"] = "Proportional Numerals";
/* Property value for `font-variant-alternates: proportional-width`. */
localizedStrings["Proportional-Width Variants @ Font Details Sidebar Property Value"] = "Proportional-Width Variants";
localizedStrings["Protocol"] = "Protocol";
/* Label for button that shows controls for toggling CSS pseudo-classes on the selected element. */
localizedStrings["Pseudo @ Styles details sidebar panel"] = "Pseudo";
localizedStrings["Pseudo-Element"] = "Pseudo-Element";
localizedStrings["Query Parameters"] = "Query Parameters";
localizedStrings["Query String"] = "Query String";
localizedStrings["Query String Parameters"] = "Query String Parameters";
localizedStrings["Queued"] = "Queued";
localizedStrings["Radial Gradient"] = "Radial Gradient";
localizedStrings["Range Issue"] = "Range Issue";
localizedStrings["Readonly"] = "Readonly";
/* Tooltip for a time range bar that represents when a CSS animation/transition exists but has not started processing */
localizedStrings["Ready"] = "Ready";
localizedStrings["Reasons for compositing"] = "Reasons for compositing";
localizedStrings["Reasons for compositing:"] = "Reasons for compositing:";
localizedStrings["Record first %s frame"] = "Record first %s frame";
localizedStrings["Record first %s frames"] = "Record first %s frames";
localizedStrings["Recording"] = "Recording";
localizedStrings["Recording %d"] = "Recording %d";
localizedStrings["Recording Error: %s"] = "Recording Error: %s";
/* Message for progress of a timeline recording. */
localizedStrings["Recording Timeline Data @ Timeline Recording Progress"] = "Recording Timeline Data";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Canvas 2D"] = "2D";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Canvas Bitmap Renderer"] = "Bitmap Renderer";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Canvas WebGL"] = "WebGL";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Canvas WebGL2"] = "WebGL2";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Offscreen Canvas 2D"] = "Offscreen2D";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Offscreen Canvas Bitmap Renderer"] = "Bitmap Renderer (Offscreen)";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Offscreen Canvas WebGL"] = "WebGL (Offscreen)";
/* A type of canvas recording in the Graphics Tab. */
localizedStrings["Recording Type Offscreen Canvas WebGL2"] = "WebGL2 (Offscreen)";
localizedStrings["Recording Warning: %s"] = "Recording Warning: %s";
localizedStrings["Recordings"] = "Recordings";
localizedStrings["Redirect"] = "Redirect";
localizedStrings["Redirect Response"] = "Redirect Response";
localizedStrings["Redirects"] = "Redirects";
/* Label for input to override the preference for reduced motion. */
localizedStrings["Reduce motion @ User Preferences Overrides"] = "Reduce motion";
localizedStrings["Reduction"] = "Reduction";
localizedStrings["Reference Issue"] = "Reference Issue";
localizedStrings["Reflection"] = "Reflection";
localizedStrings["Refresh"] = "Refresh";
localizedStrings["Refresh watch expressions"] = "Refresh watch expressions";
localizedStrings["Region announced in its entirety."] = "Region announced in its entirety.";
localizedStrings["Regular Expression"] = "Regular Expression";
/* Context menu label for whether searches should be treated as regular expressions. */
localizedStrings["Regular Expression @ Context Menu"] = "Regular Expression";
/* Settings tab checkbox label for whether searches should be treated as regular expressions. */
localizedStrings["Regular Expression @ Settings"] = "Regular Expression";
localizedStrings["Reload Web Inspector"] = "Reload Web Inspector";
localizedStrings["Reload page (%s)\nReload page ignoring cache (%s)"] = "Reload page (%s)\nReload page ignoring cache (%s)";
localizedStrings["Removals"] = "Removals";
localizedStrings["Removed ancestor "] = "Removed ancestor ";
localizedStrings["Removed descendant "] = "Removed descendant ";
localizedStrings["Render Pipeline %d"] = "Render Pipeline %d";
localizedStrings["Rendering Frames"] = "Rendering Frames";
localizedStrings["Repeating Conic Gradient"] = "Repeating Conic Gradient";
localizedStrings["Repeating Linear Gradient"] = "Repeating Linear Gradient";
localizedStrings["Repeating Radial Gradient"] = "Repeating Radial Gradient";
localizedStrings["Request"] = "Request";
localizedStrings["Request & Response"] = "Request & Response";
localizedStrings["Request (DOM Tree)"] = "Request (DOM Tree)";
localizedStrings["Request (Object Tree)"] = "Request (Object Tree)";
/* Text indicating that the local override intercepts the request phase of network activity. */
localizedStrings["Request @ Local Override Type"] = "Request";
localizedStrings["Request Cookies"] = "Request Cookies";
localizedStrings["Request Data"] = "Request Data";
localizedStrings["Request Headers"] = "Request Headers";
/* Text indicating that the local override replaces the request of the network activity. */
localizedStrings["Request Override @ Local Override Network Stage"] = "Request Override";
localizedStrings["Requesting \u201C%s\u201D"] = "Requesting \u201C%s\u201D";
localizedStrings["Required"] = "Required";
/* Context menu action for resetting the breakpoint to its initial configuration. */
localizedStrings["Reset Breakpoint @ Breakpoint Context Menu"] = "Reset Breakpoint";
/* Title for Resolution row in Media Sidebar */
localizedStrings["Resolution @ Media Sidebar"] = "Resolution";
localizedStrings["Resource"] = "Resource";
localizedStrings["Resource Size"] = "Resource Size";
localizedStrings["Resource Type"] = "Resource Type";
localizedStrings["Resource does not have timing data"] = "Resource does not have timing data";
localizedStrings["Resource failed to load."] = "Resource failed to load.";
/* An error message shown when there is no cached content for a HTTP 304 Not Modified resource response. */
localizedStrings["Resource has no cached content. @ Resource Preview"] = "Resource has no cached content.";
localizedStrings["Resource has no content."] = "Resource has no content.";
localizedStrings["Resource has no timing data"] = "Resource has no timing data";
localizedStrings["Resource was loaded with the \u201Cdata\u201D scheme."] = "Resource was loaded with the \u201Cdata\u201D scheme.";
localizedStrings["Resource was served from the cache."] = "Resource was served from the cache.";
localizedStrings["Resources"] = "Resources";
localizedStrings["Response"] = "Response";
localizedStrings["Response (DOM Tree)"] = "Response (DOM Tree)";
localizedStrings["Response (Object Tree)"] = "Response (Object Tree)";
localizedStrings["Response (Text)"] = "Response (Text)";
/* Text indicating that the local override intercepts the response phase of network activity. */
localizedStrings["Response @ Local Override Type"] = "Response";
localizedStrings["Response Cookies"] = "Response Cookies";
localizedStrings["Response Headers"] = "Response Headers";
/* Text indicating that the local override replaces the response of the network activity. */
localizedStrings["Response Override @ Local Override Network Stage"] = "Response Override";
localizedStrings["Response:"] = "Response:";
localizedStrings["Restart (%s)"] = "Restart (%s)";
localizedStrings["Restart animation"] = "Restart animation";
localizedStrings["Result"] = "Result";
localizedStrings["Result Data"] = "Result Data";
localizedStrings["Result Levels"] = "Result Levels";
localizedStrings["Results"] = "Results";
localizedStrings["Resume Processing"] = "Resume Processing";
localizedStrings["Resume Thread"] = "Resume Thread";
localizedStrings["Retained Size"] = "Retained Size";
localizedStrings["Return string must be one of %s"] = "Return string must be one of %s";
localizedStrings["Return type for anonymous function"] = "Return type for anonymous function";
localizedStrings["Return type for function: %s"] = "Return type for function: %s";
localizedStrings["Return value is not an object, string, or boolean"] = "Return value is not an object, string, or boolean";
localizedStrings["Reveal"] = "Reveal";
localizedStrings["Reveal Blackbox Pattern"] = "Reveal Blackbox Pattern";
localizedStrings["Reveal Breakpoint in Sources Tab"] = "Reveal Breakpoint in Sources Tab";
localizedStrings["Reveal Breakpoints in Sources Tab"] = "Reveal Breakpoints in Sources Tab";
localizedStrings["Reveal Descendant Breakpoints"] = "Reveal Descendant Breakpoints";
localizedStrings["Reveal Local Override"] = "Reveal Local Override";
/* Open Elements tab and select this node in DOM tree */
localizedStrings["Reveal in DOM Tree"] = "Reveal in DOM Tree";
localizedStrings["Reveal in Elements Tab"] = "Reveal in Elements Tab";
/* Open Layers tab and select the layer corresponding to this node */
localizedStrings["Reveal in Layers Tab"] = "Reveal in Layers Tab";
localizedStrings["Reveal in Network Tab"] = "Reveal in Network Tab";
localizedStrings["Reveal in Original Resource"] = "Reveal in Original Resource";
localizedStrings["Reveal in Sources Tab"] = "Reveal in Sources Tab";
localizedStrings["Reveal in Style Sheet"] = "Reveal in Style Sheet";
localizedStrings["Role"] = "Role";
/* Property value for `font-variant-alternates: ruby`. */
localizedStrings["Ruby Glyphs @ Font Details Sidebar Property Value"] = "Ruby Glyphs";
localizedStrings["Run"] = "Run";
localizedStrings["Run %d"] = "Run %d";
localizedStrings["Run Console Snippet"] = "Run Console Snippet";
localizedStrings["Run Console Snippet\u2026"] = "Run Console Snippet\u2026";
localizedStrings["Run console commands as if inside a user gesture"] = "Run console commands as if inside a user gesture";
localizedStrings["Running the \u201C%s\u201D audit"] = "Running the \u201C%s\u201D audit";
localizedStrings["SVG"] = "SVG";
/* Title for Sample Rate row in Media Sidebar */
localizedStrings["Sample Rate @ Media Sidebar"] = "Sample Rate";
localizedStrings["Samples"] = "Samples";
localizedStrings["Save %d"] = "Save %d";
localizedStrings["Save File"] = "Save File";
localizedStrings["Save Image"] = "Save Image";
localizedStrings["Save Selected"] = "Save Selected";
localizedStrings["Save configuration"] = "Save configuration";
localizedStrings["Saved Recordings"] = "Saved Recordings";
localizedStrings["Saved Result Alias:"] = "Saved Result Alias:";
localizedStrings["Saved States"] = "Saved States";
localizedStrings["Scheduling:"] = "Scheduling:";
localizedStrings["Scheme"] = "Scheme";
localizedStrings["Scope"] = "Scope";
localizedStrings["Scope Chain"] = "Scope Chain";
localizedStrings["Screen Shot %s-%s-%s at %s.%s.%s"] = "Screen Shot %s-%s-%s at %s.%s.%s";
localizedStrings["Screen size"] = "Screen size";
localizedStrings["Screenshots"] = "Screenshots";
localizedStrings["Script"] = "Script";
localizedStrings["Script Element %d"] = "Script Element %d";
localizedStrings["Script Entries:"] = "Script Entries:";
localizedStrings["Script Evaluated"] = "Script Evaluated";
localizedStrings["Script ignored due to blackbox"] = "Script ignored due to blackbox";
localizedStrings["Script ignored when debugging due to URL pattern blackbox"] = "Script ignored when debugging due to URL pattern blackbox";
localizedStrings["Scripts"] = "Scripts";
localizedStrings["Scripts can also be individually blackboxed by clicking on the %s icon that is shown on hover."] = "Scripts can also be individually blackboxed by clicking on the %s icon that is shown on hover.";
/* Title for a badge applied to DOM nodes that are a scrollable container. */
localizedStrings["Scroll"] = "Scroll";
/* Scroll selected DOM node into view on the inspected web page */
localizedStrings["Scroll into View"] = "Scroll into View";
localizedStrings["Search"] = "Search";
localizedStrings["Search Again"] = "Search Again";
localizedStrings["Search Resource Content"] = "Search Resource Content";
/* Name of Search Tab */
localizedStrings["Search Tab Name"] = "Search";
/* Title of Search Tab with keyboard shortcut */
localizedStrings["Search Tab Title"] = "Search (%s)";
/* Settings tab label for search related settings */
localizedStrings["Search: @ Settings"] = "Search:";
localizedStrings["Searching %s"] = "Searching %s";
localizedStrings["Secure"] = "Secure";
localizedStrings["Security"] = "Security";
localizedStrings["Security Issue"] = "Security Issue";
localizedStrings["Security Origin"] = "Security Origin";
localizedStrings["Select an audit in the navigation sidebar to edit it."] = "Select an audit in the navigation sidebar to edit it.";
localizedStrings["Select an audit in the navigation sidebar to view its results."] = "Select an audit in the navigation sidebar to view its results.";
localizedStrings["Select baseline snapshot"] = "Select baseline snapshot";
localizedStrings["Select comparison snapshot"] = "Select comparison snapshot";
localizedStrings["Selected"] = "Selected";
/* Appears as a label when a given web animation is logged to the Console */
localizedStrings["Selected Animation"] = "Selected Animation";
localizedStrings["Selected Canvas Context"] = "Selected Canvas Context";
/* Selected DOM element */
localizedStrings["Selected Element"] = "Selected Element";
localizedStrings["Selected Frame"] = "Selected Frame";
localizedStrings["Selected Item"] = "Selected Item";
localizedStrings["Selected Items"] = "Selected Items";
/* Selected DOM node */
localizedStrings["Selected Node"] = "Selected Node";
localizedStrings["Selected Symbol"] = "Selected Symbol";
localizedStrings["Selected Value"] = "Selected Value";
localizedStrings["Selected WebSocket"] = "Selected WebSocket";
localizedStrings["Selector Path"] = "Selector Path";
localizedStrings["Self Size"] = "Self Size";
localizedStrings["Self Time"] = "Self Time";
localizedStrings["Semantic Issue"] = "Semantic Issue";
localizedStrings["Server Timing:"] = "Server Timing:";
localizedStrings["Service Worker"] = "Service Worker";
localizedStrings["ServiceWorker"] = "ServiceWorker";
localizedStrings["Session"] = "Session";
localizedStrings["Session Storage"] = "Session Storage";
localizedStrings["Set to Automatically Continue"] = "Set to Automatically Continue";
localizedStrings["Setter"] = "Setter";
/* Name of Settings Tab */
localizedStrings["Settings Tab Name"] = "Settings";
/* Title of Settings Tab with keyboard shortcut */
localizedStrings["Settings Tab Title"] = "Settings (%s)";
localizedStrings["Shader Programs"] = "Shader Programs";
localizedStrings["Shadow Content"] = "Shadow Content";
localizedStrings["Shadow Content (%s)"] = "Shadow Content (%s)";
localizedStrings["Shared Focus"] = "Shared Focus";
localizedStrings["Shift-click to switch color formats."] = "Shift-click to switch color formats.";
localizedStrings["Shortest property path to %s"] = "Shortest property path to %s";
localizedStrings["Show %d More"] = "Show %d More";
/* Text label for button to reveal one unused CSS variable */
localizedStrings["Show %d unused CSS variable (singular) @ Styles Sidebar Panel"] = "Show %d unused CSS variable";
/* Text label for button to reveal multiple unused CSS variables */
localizedStrings["Show %d unused CSS variables (plural) @ Styles Sidebar Panel"] = "Show %d unused CSS variables";
localizedStrings["Show All"] = "Show All";
localizedStrings["Show All (%d More)"] = "Show All (%d More)";
localizedStrings["Show All Nodes (%d More)"] = "Show All Nodes (%d More)";
localizedStrings["Show Console"] = "Show Console";
localizedStrings["Show Console tab"] = "Show Console tab";
localizedStrings["Show Elements"] = "Show Elements";
localizedStrings["Show Path"] = "Show Path";
localizedStrings["Show Remaining (%d)"] = "Show Remaining (%d)";
localizedStrings["Show Scope Chain on pause"] = "Show Scope Chain on pause";
localizedStrings["Show all actions"] = "Show all actions";
localizedStrings["Show all resources"] = "Show all resources";
localizedStrings["Show changes only for selected node"] = "Show changes only for selected node";
localizedStrings["Show compositing borders"] = "Show compositing borders";
/* Label for option to toggle the extended lines setting for CSS grid overlays */
localizedStrings["Show extended lines @ Layout Panel Overlay Options"] = "Extended Grid Lines";
localizedStrings["Show flexbox overlay"] = "Show flexbox overlay";
localizedStrings["Show full certificate"] = "Show full certificate";
localizedStrings["Show grid overlay"] = "Show grid overlay";
localizedStrings["Show hidden tabs\u2026"] = "Show hidden tabs\u2026";
/* Settings tab checkbox label for whether the independent styles sidebar should be shown */
localizedStrings["Show independent Styles sidebar @ Settings Elements Pane"] = "Show independent Styles sidebar";
localizedStrings["Show jump to effective property button"] = "Show jump to effective property button";
localizedStrings["Show jump to variable declaration button"] = "Show jump to variable declaration button";
/* Settings tab checkbox label for whether the details sidebars (on the right in LTR locales) are at the bottom */
localizedStrings["Show on bottom when narrow @ Settings General Pane"] = "Show on bottom when narrow";
localizedStrings["Show page rulers and node border lines"] = "Show page rulers and node border lines";
localizedStrings["Show property syntax in documentation popover"] = "Show property syntax in documentation popover";
localizedStrings["Show rulers"] = "Show rulers";
localizedStrings["Show the details sidebar (%s)"] = "Show the details sidebar (%s)";
localizedStrings["Show the navigation sidebar (%s)"] = "Show the navigation sidebar (%s)";
/* Settings tab checkbox label for whether the transparency grid is shown by default */
localizedStrings["Show transparency grid (settings label)"] = "Show transparency grid";
/* Tooltip for showing the checkered transparency grid under images and canvases */
localizedStrings["Show transparency grid (tooltip)"] = "Show transparency grid";
localizedStrings["Show type information"] = "Show type information";
localizedStrings["Show:"] = "Show:";
/* Property value for `font-variant-alternates: simplified`. */
localizedStrings["Simplified Forms @ Font Details Sidebar Property Value"] = "Simplified Forms";
localizedStrings["Size"] = "Size";
/* Property title for `font-size`. */
localizedStrings["Size @ Font Details Sidebar Property"] = "Size";
localizedStrings["Size of current object plus all objects it keeps alive"] = "Size of current object plus all objects it keeps alive";
localizedStrings["Sizes"] = "Sizes";
/* Label for checkbox that controls whether the local override will actually perform a network request or skip it to immediately serve the response. */
localizedStrings["Skip Network @ Local Override Popover Options"] = "Skip Network";
/* Property value for `font-variant-numeric: slashed-zero`. */
localizedStrings["Slashed Zeros @ Font Details Sidebar Property Value"] = "Slashed Zeros";
/* Property value for `font-variant-capitals: small-caps`. */
localizedStrings["Small Capitals @ Font Details Sidebar Property Value"] = "Small Capitals";
localizedStrings["Snapshot Comparison (%d and %d)"] = "Snapshot Comparison (%d and %d)";
localizedStrings["Snapshot List"] = "Snapshot List";
localizedStrings["Socket"] = "Socket";
localizedStrings["Sockets"] = "Sockets";
localizedStrings["Some examples of ways to use this script include (but are not limited to):"] = "Some examples of ways to use this script include (but are not limited to):";
localizedStrings["Sort Ascending"] = "Sort Ascending";
localizedStrings["Sort Descending"] = "Sort Descending";
localizedStrings["Source"] = "Source";
/* Title for Source row in Media Sidebar */
localizedStrings["Source @ Media Sidebar"] = "Source";
localizedStrings["Source Map \u0022%s\u0022 has %s"] = "Source Map \u0022%s\u0022 has %s";
localizedStrings["Source Map loading errors"] = "Source Map loading errors";
localizedStrings["Source Maps:"] = "Source Maps:";
localizedStrings["Sources"] = "Sources";
/* Name of Sources Tab */
localizedStrings["Sources Tab Name"] = "Sources";
localizedStrings["Sources:"] = "Sources:";
localizedStrings["Space"] = "Space";
localizedStrings["Spaces"] = "Spaces";
localizedStrings["Specially Exposed Data"] = "Specially Exposed Data";
localizedStrings["Specificity: (%d, %d, %d)"] = "Specificity: (%d, %d, %d)";
localizedStrings["Specificity: No value for selected element"] = "Specificity: No value for selected element";
localizedStrings["Spelling"] = "Spelling";
/* Input label for the spread radius of a CSS box shadow */
localizedStrings["Spread @ Box Shadow Editor"] = "Spread";
/* Property value for `font-variant-numeric: stacked-fractions`. */
localizedStrings["Stacked Fractions @ Font Details Sidebar Property Value"] = "Stacked Fractions";
localizedStrings["Stalled"] = "Stalled";
localizedStrings["Start"] = "Start";
localizedStrings["Start Audit"] = "Start Audit";
localizedStrings["Start Time"] = "Start Time";
localizedStrings["Start element selection (%s)"] = "Start element selection (%s)";
localizedStrings["Start recording (%s)\nCreate new recording (%s)"] = "Start recording (%s)\nCreate new recording (%s)";
localizedStrings["Start recording canvas actions.\nShift-click to record a single frame."] = "Start recording canvas actions.\nShift-click to record a single frame.";
localizedStrings["Start to Finish"] = "Start to Finish";
localizedStrings["State"] = "State";
localizedStrings["Statistics"] = "Statistics";
localizedStrings["Status"] = "Status";
/* Label for the HTTP status code input for the local override currently being edited. */
localizedStrings["Status @ Local Override Popover"] = "Status";
localizedStrings["Step"] = "Step";
localizedStrings["Step (%s or %s)"] = "Step (%s or %s)";
localizedStrings["Step into (%s or %s)"] = "Step into (%s or %s)";
localizedStrings["Step out (%s or %s)"] = "Step out (%s or %s)";
localizedStrings["Step over (%s or %s)"] = "Step over (%s or %s)";
localizedStrings["Stereo"] = "Stereo";
localizedStrings["Stiffness"] = "Stiffness";
localizedStrings["Stop"] = "Stop";
localizedStrings["Stop Audit"] = "Stop Audit";
localizedStrings["Stop Recording"] = "Stop Recording";
localizedStrings["Stop element selection (%s)"] = "Stop element selection (%s)";
localizedStrings["Stop recording"] = "Stop recording";
localizedStrings["Stop recording (%s)"] = "Stop recording (%s)";
localizedStrings["Stop recording canvas actions"] = "Stop recording canvas actions";
localizedStrings["Stop recording once page loads"] = "Stop recording once page loads";
/* Message for progress of stopping a timeline recording. */
localizedStrings["Stopping Timeline Recording @ Timeline Recording Progress"] = "Stopping Timeline Recording";
localizedStrings["Stopping recording"] = "Stopping recording";
localizedStrings["Stopping the \u201C%s\u201D audit"] = "Stopping the \u201C%s\u201D audit";
localizedStrings["Storage"] = "Storage";
/* Name of Storage Tab */
localizedStrings["Storage Tab Name"] = "Storage";
/* Property title for `font-stretch`. */
localizedStrings["Stretch @ Font Details Sidebar Property"] = "Stretch";
/* Property title for `font-style`. */
localizedStrings["Style @ Font Details Sidebar Property"] = "Style";
/* CSS properties defined via HTML style attribute */
localizedStrings["Style Attribute"] = "Style Attribute";
localizedStrings["Style Sheet"] = "Style Sheet";
localizedStrings["Style Sheets"] = "Style Sheets";
localizedStrings["Style rule"] = "Style rule";
localizedStrings["Styles"] = "Styles";
localizedStrings["Styles Invalidated"] = "Styles Invalidated";
localizedStrings["Styles Recalculated"] = "Styles Recalculated";
localizedStrings["Styles \u2014 Computed"] = "Styles \u2014 Computed";
localizedStrings["Styles \u2014 Rules"] = "Styles \u2014 Rules";
localizedStrings["Styles:"] = "Styles:";
localizedStrings["Subject"] = "Subject";
/* Label for the input of where to find the corresponding file within the mapped directory on disk. */
localizedStrings["Subpath @ Local Override Popover"] = "Subpath";
/* Property value for `font-variant-position: sub`. */
localizedStrings["Subscript @ Font Details Sidebar Property Value"] = "Subscript";
/* A submenu item of 'Break On' that breaks (pauses) before child DOM node is modified */
localizedStrings["Subtree Modified @ DOM Breakpoint"] = "Subtree Modified";
localizedStrings["Suggest property names based on usage"] = "Suggest property names based on usage";
localizedStrings["Summary"] = "Summary";
/* Property value for `font-variant-position: super`. */
localizedStrings["Superscript @ Font Details Sidebar Property Value"] = "Superscript";
localizedStrings["Symbol"] = "Symbol";
/* Context menu item for creating a new symbolic breakpoint. */
localizedStrings["Symbolic Breakpoint\u2026 @ Sources Navigation Sidebar Panel"] = "Symbolic Breakpoint\u2026";
/* Label of dropdown item used for forcing Web Inspector to be shown using the system's theme */
localizedStrings["System @ Settings General Appearance"] = "System";
/* Label for a preference that matches the default system value. The system value is shown in parentheses. */
localizedStrings["System @ User Preferences Overrides"] = "System (%s)";
localizedStrings["TCP"] = "TCP";
localizedStrings["TIFF"] = "TIFF";
localizedStrings["Tab width:"] = "Tab width:";
localizedStrings["Tabs"] = "Tabs";
/* Property value for `font-variant-numeric: tabular-nums`. */
localizedStrings["Tabular Numerals @ Font Details Sidebar Property Value"] = "Tabular Numerals";
/* A submenu item of 'Edit' to change DOM element's tag name */
localizedStrings["Tag"] = "Tag";
/* Tooltip for a variation axis tag that explains what the 4-character label represents. */
localizedStrings["Tag tooltip @ Font Details Sidebar"] = "Variation axis tag";
localizedStrings["Take snapshot"] = "Take snapshot";
localizedStrings["Target"] = "Target";
localizedStrings["Template Content"] = "Template Content";
/* Dropdown option inside the popover used to creating an audit test case. */
localizedStrings["Test Case @ Audit Tab Navigation Sidebar"] = "Test Case";
localizedStrings["Text"] = "Text";
localizedStrings["Text Frame"] = "Text Frame";
localizedStrings["Text Node"] = "Text Node";
localizedStrings["The Inspector Bootstrap Script is guaranteed to be the first script evaluated in any page, as well as any sub-frames."] = "The Inspector Bootstrap Script is guaranteed to be the first script evaluated in any page, as well as any sub-frames.";
localizedStrings["The \u201C%s\u201D audit failed"] = "The \u201C%s\u201D audit failed";
localizedStrings["The \u201C%s\u201D audit is unsupported"] = "The \u201C%s\u201D audit is unsupported";
localizedStrings["The \u201C%s\u201D audit passed"] = "The \u201C%s\u201D audit passed";
localizedStrings["The \u201C%s\u201D audit resulted in a warning"] = "The \u201C%s\u201D audit resulted in a warning";
localizedStrings["The \u201C%s\u201D audit threw an error"] = "The \u201C%s\u201D audit threw an error";
localizedStrings["The contents and enabled state will be preserved across Web Inspector sessions."] = "The contents and enabled state will be preserved across Web Inspector sessions.";
localizedStrings["The contents will be preserved across Web Inspector sessions."] = "The contents will be preserved across Web Inspector sessions.";
localizedStrings["The page\u2019s content has changed"] = "The page\u2019s content has changed";
localizedStrings["The resource was requested insecurely."] = "The resource was requested insecurely.";
/* Message displayed in a banner when one or more snapshots that the user has not yet seen are being filtered. */
localizedStrings["There are new snapshots that have been filtered @ Heap Allocations Timeline View"] = "There are new snapshots that have been filtered";
localizedStrings["There are unread messages that have been filtered"] = "There are unread messages that have been filtered";
localizedStrings["There is an incurred energy penalty each time the page enters script. This commonly happens with timers, event handlers, and observers."] = "There is an incurred energy penalty each time the page enters script. This commonly happens with timers, event handlers, and observers.";
localizedStrings["These are all of the different test result levels."] = "These are all of the different test result levels.";
localizedStrings["These are example tests that demonstrate all of the different types of data that can be returned with the test result."] = "These are example tests that demonstrate all of the different types of data that can be returned with the test result.";
localizedStrings["These are example tests that demonstrate how to use %s to access information not normally available to JavaScript."] = "These are example tests that demonstrate how to use %s to access information not normally available to JavaScript.";
localizedStrings["These are example tests that demonstrate how to use %s to get information about DOM nodes."] = "These are example tests that demonstrate how to use %s to get information about DOM nodes.";
localizedStrings["These are example tests that demonstrate how to use %s to get information about loaded resources."] = "These are example tests that demonstrate how to use %s to get information about loaded resources.";
localizedStrings["These are example tests that demonstrate how to use %s to get information about the accessibility tree."] = "These are example tests that demonstrate how to use %s to get information about the accessibility tree.";
localizedStrings["These are example tests that demonstrate the functionality and structure of audits."] = "These are example tests that demonstrate the functionality and structure of audits.";
localizedStrings["This action causes no visual change"] = "This action causes no visual change";
localizedStrings["This action moves the path outside the visible area"] = "This action moves the path outside the visible area";
localizedStrings["This animation has no duration."] = "This animation has no duration.";
localizedStrings["This animation has no keyframes."] = "This animation has no keyframes.";
localizedStrings["This audit is not supported"] = "This audit is not supported";
localizedStrings["This is an example of a test that will not run because it is unsupported."] = "This is an example of a test that will not run because it is unsupported.";
localizedStrings["This is an example of how custom result data is shown."] = "This is an example of how custom result data is shown.";
localizedStrings["This is an example of how errors are shown. The error was thrown manually, but execution errors will appear in the same way."] = "This is an example of how errors are shown. The error was thrown manually, but execution errors will appear in the same way.";
localizedStrings["This is an example of how result DOM attributes are highlighted on any returned DOM nodes. It will pass with all elements with an id attribute."] = "This is an example of how result DOM attributes are highlighted on any returned DOM nodes. It will pass with all elements with an id attribute.";
localizedStrings["This is an example of how result DOM nodes are shown. It will pass with the <body> element."] = "This is an example of how result DOM nodes are shown. It will pass with the <body> element.";
localizedStrings["This is an example test that uses %s to find a variety of accessibility information about the <body> element."] = "This is an example test that uses %s to find a variety of accessibility information about the <body> element.";
localizedStrings["This is an example test that uses %s to find all child nodes that are selected (\u201C%s\u201D) of the <body> element in the accessibility tree."] = "This is an example test that uses %s to find all child nodes that are selected (\u201C%s\u201D) of the <body> element in the accessibility tree.";
localizedStrings["This is an example test that uses %s to find all nodes controlled (\u201C%s\u201D) by the <body> element, if any exist."] = "This is an example test that uses %s to find all nodes controlled (\u201C%s\u201D) by the <body> element, if any exist.";
localizedStrings["This is an example test that uses %s to find all nodes flowed to (\u201C%s\u201D) from the <body> element, if any exist."] = "This is an example test that uses %s to find all nodes flowed to (\u201C%s\u201D) from the <body> element, if any exist.";
localizedStrings["This is an example test that uses %s to find all nodes owned (\u201C%s\u201D) by the <body> element, if any exist."] = "This is an example test that uses %s to find all nodes owned (\u201C%s\u201D) by the <body> element, if any exist.";
localizedStrings["This is an example test that uses %s to find any element that meets criteria for active descendant (\u201C%s\u201D) of the <body> element, if it exists."] = "This is an example test that uses %s to find any element that meets criteria for active descendant (\u201C%s\u201D) of the <body> element, if it exists.";
localizedStrings["This is an example test that uses %s to find basic information about each resource."] = "This is an example test that uses %s to find basic information about each resource.";
localizedStrings["This is an example test that uses %s to find child nodes of the <body> element in the accessibility tree."] = "This is an example test that uses %s to find child nodes of the <body> element in the accessibility tree.";
localizedStrings["This is an example test that uses %s to find data indicating whether the <body> element has any click event listeners."] = "This is an example test that uses %s to find data indicating whether the <body> element has any click event listeners.";
localizedStrings["This is an example test that uses %s to find data indicating whether the <body> element has any event listeners."] = "This is an example test that uses %s to find data indicating whether the <body> element has any event listeners.";
localizedStrings["This is an example test that uses %s to find elements with a computed role of \u201Clink\u201D."] = "This is an example test that uses %s to find elements with a computed role of \u201Clink\u201D.";
localizedStrings["This is an example test that uses %s to find the contents of the main resource."] = "This is an example test that uses %s to find the contents of the main resource.";
localizedStrings["This is an example test that uses %s to find the node that would handle mouse events for the <body> element, if applicable."] = "This is an example test that uses %s to find the node that would handle mouse events for the <body> element, if applicable.";
localizedStrings["This is an example test that uses %s to find the parent node of the <body> element in the accessibility tree."] = "This is an example test that uses %s to find the parent node of the <body> element in the accessibility tree.";
localizedStrings["This is what the result of a failing test with no data looks like."] = "This is what the result of a failing test with no data looks like.";
localizedStrings["This is what the result of a passing test with no data looks like."] = "This is what the result of a passing test with no data looks like.";
localizedStrings["This is what the result of a test that threw an error with no data looks like."] = "This is what the result of a test that threw an error with no data looks like.";
localizedStrings["This is what the result of a warning test with no data looks like."] = "This is what the result of a warning test with no data looks like.";
localizedStrings["This is what the result of an unsupported test with no data looks like."] = "This is what the result of an unsupported test with no data looks like.";
localizedStrings["This means all of the Console Command Line API is available <https://webkit.org/web-inspector/console-command-line-api/>."] = "This means all of the Console Command Line API is available <https://webkit.org/web-inspector/console-command-line-api/>.";
localizedStrings["This object is a root"] = "This object is a root";
localizedStrings["This object is referenced by internal objects"] = "This object is referenced by internal objects";
localizedStrings["This resource came from a local override"] = "This resource came from a local override";
localizedStrings["This resource was blocked by a local override"] = "This resource was blocked by a local override";
localizedStrings["This resource was loaded from a local override"] = "This resource was loaded from a local override";
localizedStrings["This resource was loaded from a service worker"] = "This resource was loaded from a service worker";
localizedStrings["This resource was loaded from the disk cache"] = "This resource was loaded from the disk cache";
localizedStrings["This resource was loaded from the memory cache"] = "This resource was loaded from the memory cache";
localizedStrings["This text resource could benefit from compression"] = "This text resource could benefit from compression";
localizedStrings["Threads"] = "Threads";
localizedStrings["Time"] = "Time";
localizedStrings["Time spent on the main thread"] = "Time spent on the main thread";
localizedStrings["Time to First Byte"] = "Time to First Byte";
localizedStrings["Timeline"] = "Timeline";
localizedStrings["Timeline Recording %d"] = "Timeline Recording %d";
localizedStrings["Timeline Recording Import Error: %s"] = "Timeline Recording Import Error: %s";
/* Name of Timelines Tab */
localizedStrings["Timelines Tab Name"] = "Timelines";
/* Category label for experimental settings related to the Timelines Tab. */
localizedStrings["Timelines: @ Experimental Settings"] = "Timelines:";
/* Text indicating that the local override will block the network activity with an timeout error. */
localizedStrings["Timeout @ Local Override Type"] = "Timeout";
localizedStrings["Timer %d Fired"] = "Timer %d Fired";
localizedStrings["Timer %d Installed"] = "Timer %d Installed";
localizedStrings["Timer %d Removed"] = "Timer %d Removed";
localizedStrings["Timer Fired"] = "Timer Fired";
localizedStrings["Timer Installed"] = "Timer Installed";
localizedStrings["Timer Removed"] = "Timer Removed";
localizedStrings["Timers:"] = "Timers:";
localizedStrings["Timestamp \u2014 %s"] = "Timestamp \u2014 %s";
localizedStrings["Timestamps"] = "Timestamps";
localizedStrings["Timing"] = "Timing";
/* Property value for `font-variant-capitals: titling-caps`. */
localizedStrings["Titling Capitals @ Font Details Sidebar Property Value"] = "Titling Capitals";
localizedStrings["To improve CPU utilization reduce or batch workloads when the page is not visible or during times when the page is not being interacted with."] = "To improve CPU utilization reduce or batch workloads when the page is not visible or during times when the page is not being interacted with.";
localizedStrings["Toggle Classes"] = "Toggle Classes";
localizedStrings["Toggle Pseudo Classes"] = "Toggle Pseudo Classes";
localizedStrings["Toggle Visibility"] = "Toggle Visibility";
localizedStrings["Top Functions"] = "Top Functions";
localizedStrings["Total"] = "Total";
localizedStrings["Total Time"] = "Total Time";
localizedStrings["Total memory size at the end of the selected time range"] = "Total memory size at the end of the selected time range";
localizedStrings["Total time"] = "Total time";
localizedStrings["Total: %s"] = "Total: %s";
localizedStrings["Totals:"] = "Totals:";
localizedStrings["Trace"] = "Trace";
localizedStrings["Trace: %s"] = "Trace: %s";
localizedStrings["Traces:"] = "Traces:";
/* Label for option to toggle the track sizes setting for CSS grid overlays */
localizedStrings["Track sizes @ Layout Panel Overlay Options"] = "Track Sizes";
/* Property value for `font-variant-alternates: traditional`. */
localizedStrings["Traditional Forms @ Font Details Sidebar Property Value"] = "Traditional Forms";
/* Title for Transfer Function row in Media Sidebar */
localizedStrings["Transfer Function @ Media Sidebar"] = "Transfer Function";
/* Amount of data sent over the network for a single resource */
localizedStrings["Transfer Size"] = "Transfer Size";
localizedStrings["Transferred"] = "Transferred";
localizedStrings["Triggered Breakpoint"] = "Triggered Breakpoint";
localizedStrings["True"] = "True";
localizedStrings["Type"] = "Type";
localizedStrings["Type Issue"] = "Type Issue";
localizedStrings["Type information for variable: %s"] = "Type information for variable: %s";
localizedStrings["URL"] = "URL";
localizedStrings["URL Breakpoint\u2026"] = "URL Breakpoint\u2026";
localizedStrings["URL Pattern"] = "URL Pattern";
localizedStrings["Unable to determine path to property from root"] = "Unable to determine path to property from root";
localizedStrings["Unable to show certificate for \u201C%s\u201D"] = "Unable to show certificate for \u201C%s\u201D";
localizedStrings["Unblackbox Script"] = "Unblackbox Script";
localizedStrings["Unblackbox script to include it when debugging"] = "Unblackbox script to include it when debugging";
/* Break (pause) on uncaught (unhandled) exceptions */
localizedStrings["Uncaught Exceptions @ JavaScript Breakpoint"] = "Uncaught Exceptions";
localizedStrings["Undefined custom element"] = "Undefined custom element";
/* Label for button to show CSS variables ungrouped */
localizedStrings["Ungrouped @ Computed Style variables grouping mode"] = "Ungrouped";
/* Property value for `font-variant-capitals: unicase`. */
localizedStrings["Unicase @ Font Details Sidebar Property Value"] = "Unicase";
localizedStrings["Unique"] = "Unique";
localizedStrings["Unknown Location"] = "Unknown Location";
localizedStrings["Unknown error"] = "Unknown error";
localizedStrings["Unknown node"] = "Unknown node";
/* Title of icon indicating that the selected audit is not able to be run (i.e. unsupported). */
localizedStrings["Unsupported @ Audit Tab - Test Case"] = "Unsupported";
localizedStrings["Unsupported property name"] = "Unsupported property name";
localizedStrings["Unsupported property value"] = "Unsupported property value";
localizedStrings["Untitled"] = "Untitled";
localizedStrings["Update Font"] = "Update Font";
localizedStrings["Update Image"] = "Update Image";
localizedStrings["Update Local Override"] = "Update Local Override";
localizedStrings["Usage: %s"] = "Usage: %s";
localizedStrings["Use case sensitive autocomplete"] = "Use case sensitive autocomplete";
localizedStrings["Use default media styles"] = "Use default media styles";
localizedStrings["Use fuzzy matching for CSS code completion"] = "Use fuzzy matching for CSS code completion";
localizedStrings["Use mock capture devices"] = "Use mock capture devices";
localizedStrings["User Agent"] = "User Agent";
localizedStrings["User Agent Style Sheet"] = "User Agent Style Sheet";
localizedStrings["User Style Sheet"] = "User Style Sheet";
localizedStrings["User preferences overridden"] = "User preferences overridden";
localizedStrings["Valid From"] = "Valid From";
localizedStrings["Valid Until"] = "Valid Until";
localizedStrings["Value"] = "Value";
localizedStrings["Variables"] = "Variables";
/* Title of swatches section in Color Picker */
localizedStrings["Variables @ Color Picker"] = "Variables";
/* Section title for font variation properties. */
localizedStrings["Variation Properties @ Font Details Sidebar Section"] = "Variation Properties";
localizedStrings["Verbose"] = "Verbose";
localizedStrings["Version"] = "Version";
localizedStrings["Vertex"] = "Vertex";
localizedStrings["Vertex Shader"] = "Vertex Shader";
localizedStrings["Vertex/Fragment Shader"] = "Vertex/Fragment Shader";
/* Energy Impact: Very High */
localizedStrings["Very High @ Timeline Energy Impact"] = "Very High";
/* Title for Video Codec row in Media Sidebar */
localizedStrings["Video Codec @ Media Sidebar"] = "Video Codec";
/* Title for Video Details section in Media Sidebar */
localizedStrings["Video Details @ Media Sidebar"] = "Video Details";
/* Title for Video Format row in Media Sidebar */
localizedStrings["Video Format @ Media Sidebar"] = "Video Format";
/* Value string for Video Range color in the Media Sidebar */
localizedStrings["Video range @ Media Sidebar"] = "Video range";
localizedStrings["View Image"] = "View Image";
localizedStrings["View Recording"] = "View Recording";
localizedStrings["View Shader"] = "View Shader";
localizedStrings["Viewport"] = "Viewport";
/* Title for Viewport row in Media Sidebar */
localizedStrings["Viewport @ Media Sidebar"] = "Viewport";
localizedStrings["Visible"] = "Visible";
localizedStrings["Waiting"] = "Waiting";
localizedStrings["Waiting for animations created by CSS."] = "Waiting for animations created by CSS.";
localizedStrings["Waiting for animations created by JavaScript."] = "Waiting for animations created by JavaScript.";
localizedStrings["Waiting for canvas contexts created by script or CSS."] = "Waiting for canvas contexts created by script or CSS.";
localizedStrings["Waiting for frames\u2026"] = "Waiting for frames\u2026";
localizedStrings["Waiting for transitions created by CSS."] = "Waiting for transitions created by CSS.";
/* Title of icon indicating that the selected audit passed with issues (i.e. warnings). */
localizedStrings["Warn @ Audit Tab - Test Case"] = "Warn";
localizedStrings["Warning: "] = "Warning: ";
localizedStrings["Warnings"] = "Warnings";
localizedStrings["Watch Expressions"] = "Watch Expressions";
localizedStrings["Waterfall"] = "Waterfall";
localizedStrings["Web Animation"] = "Web Animation";
/* Section title for the JavaScript backtrace of the creation of a web animation */
localizedStrings["Web Animation Backtrace Title"] = "Backtrace";
/* Label for the cubic-bezier timing function of a web animation */
localizedStrings["Web Animation Easing Label"] = "Easing";
/* Section title for information about the effect of a web animation */
localizedStrings["Web Animation Effect Title"] = "Effect";
/* Label for the end delay time of a web animation */
localizedStrings["Web Animation End Delay Label"] = "End Delay";
/* Tooltip for section of graph representing delay after a web animation finishes applying styles */
localizedStrings["Web Animation End Delay Tooltip"] = "End Delay %s";
/* Indicates that this web animation either does not apply any styles before it begins and after it ends or that it applies to both, depending on it's configuration */
localizedStrings["Web Animation Fill Mode Auto"] = "Auto";
/* Indicates that this web animation also applies styles before it begins */
localizedStrings["Web Animation Fill Mode Backwards"] = "Backwards";
/* Indicates that this web animation also applies styles before it begins and after it ends */
localizedStrings["Web Animation Fill Mode Both"] = "Both";
/* Indicates that this web animation also applies styles after it ends */
localizedStrings["Web Animation Fill Mode Forwards"] = "Forwards";
/* Label for the fill mode of a web animation */
localizedStrings["Web Animation Fill Mode Label"] = "Fill";
/* Indicates that this web animation does not apply any styles before it begins and after it ends */
localizedStrings["Web Animation Fill Mode None"] = "None";
/* Section title for information about a web animation */
localizedStrings["Web Animation Identity Title"] = "Identity";
/* Label for the number of iterations of a web animation */
localizedStrings["Web Animation Iteration Count Label"] = "Iterations";
/* Label for the time duration of each iteration of a web animation */
localizedStrings["Web Animation Iteration Duration Label"] = "Duration";
/* Label for the number describing which iteration a web animation should start at */
localizedStrings["Web Animation Iteration Start Label"] = "Start";
/* Section title for information about the keyframes of a web animation */
localizedStrings["Web Animation Keyframes Title"] = "Keyframes";
/* Indicates that the playback direction of this web animation alternates between normal and reversed on each iteration */
localizedStrings["Web Animation Playback Direction Alternate"] = "Alternate";
/* Indicates that the playback direction of this web animation alternates between reversed and normal on each iteration */
localizedStrings["Web Animation Playback Direction Alternate Reverse"] = "Alternate Reverse";
/* Label for the playback direction of a web animation */
localizedStrings["Web Animation Playback Direction Label"] = "Direction";
/* Indicates that the playback direction of this web animation is normal (e.g. forwards) */
localizedStrings["Web Animation Playback Direction Normal"] = "Normal";
/* Indicates that the playback direction of this web animation is reversed (e.g. backwards) */
localizedStrings["Web Animation Playback Direction Reverse"] = "Reverse";
/* Label for the start delay time of a web animation */
localizedStrings["Web Animation Start Delay Label"] = "Start Delay";
/* Tooltip for section of graph representing delay before a web animation begins applying styles */
localizedStrings["Web Animation Start Delay Tooltip"] = "Start Delay %s";
/* Label for the current DOM node target of a web animation */
localizedStrings["Web Animation Target Label"] = "Target";
localizedStrings["Web Animations"] = "Web Animations";
localizedStrings["Web Inspector"] = "Web Inspector";
localizedStrings["Web Inspector Reference"] = "Web Inspector Reference";
localizedStrings["Web Page"] = "Web Page";
/* WebGL is a type of rendering context associated with a <canvas> element. */
localizedStrings["WebGL @ Canvas Context Type"] = "WebGL";
/* WebGL is a type of rendering context associated with a OffscreenCanvas. */
localizedStrings["WebGL @ Offscreen Canvas Context Type"] = "WebGL (Offscreen)";
/* WebGL2 is a type of rendering context associated with a <canvas> element. */
localizedStrings["WebGL2 @ Canvas Context Type"] = "WebGL2";
/* WebGL2 is a type of rendering context associated with a OffscreenCanvas. */
localizedStrings["WebGL2 @ Offscreen Canvas Context Type"] = "WebGL2 (Offscreen)";
/* WebGPU is a type of rendering context associated with a <canvas> element. */
localizedStrings["WebGPU @ Canvas Context Type"] = "WebGPU";
localizedStrings["WebKit Threads"] = "WebKit Threads";
/* WebMetal is a type of rendering context associated with a <canvas> element. */
localizedStrings["WebMetal @ Canvas Context Type"] = "WebMetal";
localizedStrings["WebP"] = "WebP";
localizedStrings["WebRTC"] = "WebRTC";
localizedStrings["WebRTC Logging:"] = "WebRTC Logging:";
localizedStrings["WebSocket Connection Established"] = "WebSocket Connection Established";
/* Property title for `font-weight` and `wght` variation axis. */
localizedStrings["Weight @ Font Details Sidebar Property"] = "Weight";
localizedStrings["Whitespace characters"] = "Whitespace characters";
/* Label indicating that network activity is being simulated with Wi-Fi connectivity */
localizedStrings["Wi-Fi"] = "Wi-Fi";
/* Label indicating that network activity is being simulated with Wi-Fi 802.11ac connectivity */
localizedStrings["Wi-Fi 802.11ac"] = "Wi-Fi 802.11ac";
localizedStrings["Width"] = "Width";
/* Property title for `font-stretch` and `wdth` variation axis. */
localizedStrings["Width @ Font Details Sidebar Property"] = "Width";
localizedStrings["With Object Properties"] = "With Object Properties";
localizedStrings["Worker"] = "Worker";
localizedStrings["Worker Thread"] = "Worker Thread";
localizedStrings["Worker Threads"] = "Worker Threads";
localizedStrings["Worker: %s"] = "Worker: %s";
/* Title for list of JavaScript web worker execution contexts */
localizedStrings["Workers @ Execution Context Picker"] = "Workers";
localizedStrings["Wrap lines to editor width"] = "Wrap lines to editor width";
/* Part of the tooltip indicating that the hovered property is writable. */
localizedStrings["Writable @ Object Tree Property"] = "Writable";
localizedStrings["XBM"] = "XBM";
localizedStrings["XHR"] = "XHR";
localizedStrings["XHRs"] = "XHRs";
localizedStrings["XPath"] = "XPath";
localizedStrings["Yes"] = "Yes";
/* Title of image button that increases the zoom of the image resource content view. */
localizedStrings["Zoom In @ Image Resource Content View Gesture Controls"] = "Zoom In";
/* Title of image button that decreases the zoom of the image resource content view. */
localizedStrings["Zoom Out @ Image Resource Content View Gesture Controls"] = "Zoom Out";
localizedStrings["Zoom:"] = "Zoom:";
localizedStrings["\u0022%s\u0022 has a non-array \u0022%s\u0022 value"] = "\u0022%s\u0022 has a non-array \u0022%s\u0022 value";
localizedStrings["\u0022%s\u0022 has a non-number \u0022%s\u0022 value"] = "\u0022%s\u0022 has a non-number \u0022%s\u0022 value";
localizedStrings["\u0022%s\u0022 has a non-object \u0022%s\u0022 value"] = "\u0022%s\u0022 has a non-object \u0022%s\u0022 value";
localizedStrings["\u0022%s\u0022 has a non-string \u0022%s\u0022 value"] = "\u0022%s\u0022 has a non-string \u0022%s\u0022 value";
localizedStrings["\u0022%s\u0022 has an invalid \u0022%s\u0022 value"] = "\u0022%s\u0022 has an invalid \u0022%s\u0022 value";
localizedStrings["\u0022%s\u0022 is not JSON serializable"] = "\u0022%s\u0022 is not JSON serializable";
localizedStrings["\u0022%s\u0022 is not valid for %s"] = "\u0022%s\u0022 is not valid for %s";
localizedStrings["\u0022%s\u0022 is too new to run in the inspected page"] = "\u0022%s\u0022 is too new to run in the inspected page";
localizedStrings["\u0022%s\u0022 is too new to run in this Web Inspector"] = "\u0022%s\u0022 is too new to run in this Web Inspector";
localizedStrings["\u0022%s\u0022 must be a %s"] = "\u0022%s\u0022 must be a %s";
localizedStrings["\u0022%s\u0022 must be an %s"] = "\u0022%s\u0022 must be an %s";
localizedStrings["\u0022%s\u0022 threw an error"] = "\u0022%s\u0022 threw an error";
localizedStrings["\u201C%s\u201D Event Fired"] = "\u201C%s\u201D Event Fired";
localizedStrings["\u201C%s\u201D Profile Recorded"] = "\u201C%s\u201D Profile Recorded";
/* Shown in the 'Type' column of the Network Table for resources loaded via the Beacon API. */
localizedStrings["beacon @ Network Tab Resource Type Column Value"] = "beacon";
/* Part of the 'Blackboxed - %d call frame' label shown in the debugger call stack when paused instead of subsequent call frames that have been blackboxed. */
localizedStrings["call frame @ Debugger Call Stack"] = "%d call frame";
/* Part of the 'Blackboxed - %d call frames' label shown in the debugger call stack when paused instead of subsequent call frames that have been blackboxed. */
localizedStrings["call frames @ Debugger Call Stack"] = "%d call frames";
localizedStrings["computed"] = "computed";
localizedStrings["default"] = "default";
localizedStrings["default prevented"] = "default prevented";
/* Shown in the 'Type' column of the Network Table for document resources. */
localizedStrings["document @ Network Tab Resource Type Column Value"] = "document";
localizedStrings["ensuring that common debugging functions are available on every page via the Console"] = "ensuring that common debugging functions are available on every page via the Console";
/* Shown in the 'Type' column of the Network Table for resources loaded via the EventSource API. */
localizedStrings["eventsource @ Network Tab Resource Type Column Value"] = "eventsource";
/* Shown in the 'Type' column of the Network Table for resources loaded via the 'fetch' method. */
localizedStrings["fetch @ Network Tab Resource Type Column Value"] = "fetch";
/* Shown in the 'Type' column of the Network Table for font resources. */
localizedStrings["font @ Network Tab Resource Type Column Value"] = "font";
localizedStrings["for changes to take effect"] = "for changes to take effect";
/* Shown in the 'Type' column of the Network Table for image resources. */
localizedStrings["image @ Network Tab Resource Type Column Value"] = "image";
localizedStrings["invalid HAR"] = "invalid HAR";
localizedStrings["invalid JSON"] = "invalid JSON";
/* Error message template when failing to parse a JS source map. */
localizedStrings["invalid \u0022%s\u0022 @ Source Map"] = "invalid \u0022%s\u0022";
localizedStrings["key"] = "key";
localizedStrings["line "] = "line ";
/* Error when a JS source map is missing a starting newline. */
localizedStrings["missing newline @ Source Map"] = "missing newline";
/* Placeholder text indicating that no directory has been selected. */
localizedStrings["no directory selected @ Local Override Popover"] = "no directory selected";
/* Placeholder text indicating that no file has been selected. */
localizedStrings["no file selected @ Local Override Popover"] = "no file selected";
localizedStrings["non-array %s"] = "non-array %s";
localizedStrings["non-integer %s"] = "non-integer %s";
localizedStrings["non-number %s"] = "non-number %s";
localizedStrings["non-object %s"] = "non-object %s";
localizedStrings["non-string %s"] = "non-string %s";
localizedStrings["originally %s"] = "originally %s";
/* Shown in the 'Type' column of the Network Table for resources that don't fall into any of the other known types/categories. */
localizedStrings["other @ Network Tab Resource Type Column Value"] = "other";
localizedStrings["overriding built-in functions to log call traces or add %s statements"] = "overriding built-in functions to log call traces or add %s statements";
/* Shown in the 'Type' column of the Network Table for resources loaded via '<a ping>' elements. */
localizedStrings["ping @ Network Tab Resource Type Column Value"] = "ping";
localizedStrings["popup"] = "popup";
localizedStrings["popup, toggle"] = "popup, toggle";
localizedStrings["requestAnimationFrame Fired"] = "requestAnimationFrame Fired";
/* Label for a canvas that uses the sRGB color space. */
localizedStrings["sRGB @ Color Space"] = "sRGB";
localizedStrings["setInterval Fired"] = "setInterval Fired";
localizedStrings["setTimeout Fired"] = "setTimeout Fired";
/* Shown in the 'Type' column of the Network Table for WebSocket resources. */
localizedStrings["socket @ Network Tab Resource Type Column Value"] = "socket";
localizedStrings["space"] = "space";
localizedStrings["spaces"] = "spaces";
localizedStrings["time before stopping"] = "time before stopping";
localizedStrings["times before stopping"] = "times before stopping";
localizedStrings["toggle"] = "toggle";
/* Warning text shown if the version number in the 'supports' input is too new. */
localizedStrings["too new to run in the inspected page @ Audit Tab"] = "too new to run in the inspected page";
/* Warning text shown if the version number in the 'supports' input is too new. */
localizedStrings["too new to run in this Web Inspector @ Audit Tab"] = "too new to run in this Web Inspector";
localizedStrings["unknown %s \u0022%s\u0022"] = "unknown %s \u0022%s\u0022";
localizedStrings["unsupported %s"] = "unsupported %s";
localizedStrings["unsupported HAR version"] = "unsupported HAR version";
localizedStrings["unsupported version"] = "unsupported version";
localizedStrings["value"] = "value";
/* Placeholder text in an editable field for the value of a HTTP header */
localizedStrings["value @ Local Override Popover New Headers Data Grid Item"] = "value";
|