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
|
# Translations template for Jupyter.
# Copyright (C) 2017 ORGANIZATION
# This file is distributed under the same license as the Jupyter project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Jupyter VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2017-06-27 14:04-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.3.4\n"
#: notebook/static/base/js/dialog.js:161
msgid "Manually edit the JSON below to manipulate the metadata for this cell."
msgstr ""
#: notebook/static/base/js/dialog.js:163
msgid "Manually edit the JSON below to manipulate the metadata for this notebook."
msgstr ""
#: notebook/static/base/js/dialog.js:165
msgid " We recommend putting custom metadata attributes in an appropriately named substructure, so they don't conflict with those of others."
msgstr ""
#: notebook/static/base/js/dialog.js:180
msgid "Edit the metadata"
msgstr ""
#: notebook/static/base/js/dialog.js:202
msgid "Edit Notebook Metadata"
msgstr ""
#: notebook/static/base/js/dialog.js:204
msgid "Edit Cell Metadata"
msgstr ""
#: notebook/static/base/js/dialog.js:208
#: notebook/static/notebook/js/notebook.js:475
#: notebook/static/notebook/js/savewidget.js:71
#: notebook/static/tree/js/notebooklist.js:859
#: notebook/static/tree/js/notebooklist.js:1418
msgid "Cancel"
msgstr ""
#: notebook/static/base/js/dialog.js:208
msgid "Edit"
msgstr ""
#: notebook/static/base/js/dialog.js:208
#: notebook/static/notebook/js/kernelselector.js:278
#: notebook/static/notebook/js/mathjaxutils.js:42
#: notebook/static/notebook/js/notebook.js:469
#: notebook/static/notebook/js/notificationarea.js:187
#: notebook/static/notebook/js/savewidget.js:71
#: notebook/static/tree/js/newnotebook.js:97
#: notebook/static/tree/js/notebooklist.js:859
msgid "OK"
msgstr ""
#: notebook/static/base/js/dialog.js:208
msgid "Apply"
msgstr ""
#: notebook/static/base/js/dialog.js:225
msgid "WARNING: Could not save invalid JSON."
msgstr ""
#: notebook/static/base/js/dialog.js:247
msgid "There are no attachments for this cell."
msgstr ""
#: notebook/static/base/js/dialog.js:250
msgid "Current cell attachments"
msgstr ""
#: notebook/static/base/js/dialog.js:259
#: notebook/static/notebook/js/celltoolbarpresets/attachments.js:46
msgid "Attachments"
msgstr ""
#: notebook/static/base/js/dialog.js:283
msgid "Restore"
msgstr ""
#: notebook/static/base/js/dialog.js:293
#: notebook/static/tree/js/notebooklist.js:1018
msgid "Delete"
msgstr ""
#: notebook/static/base/js/dialog.js:342 notebook/static/base/js/dialog.js:386
msgid "Edit attachments"
msgstr ""
#: notebook/static/base/js/dialog.js:348
msgid "Edit Notebook Attachments"
msgstr ""
#: notebook/static/base/js/dialog.js:350
msgid "Edit Cell Attachments"
msgstr ""
#: notebook/static/base/js/dialog.js:373
msgid "Select a file to insert."
msgstr ""
#: notebook/static/base/js/dialog.js:399
msgid "Select a file"
msgstr ""
#: notebook/static/notebook/js/about.js:14
msgid "You are using Jupyter notebook."
msgstr ""
#: notebook/static/notebook/js/about.js:16
msgid "The version of the notebook server is: "
msgstr ""
#: notebook/static/notebook/js/about.js:22
msgid "The server is running on this version of Python:"
msgstr ""
#: notebook/static/notebook/js/about.js:25
msgid "Waiting for kernel to be available..."
msgstr ""
#: notebook/static/notebook/js/about.js:27
msgid "Server Information:"
msgstr ""
#: notebook/static/notebook/js/about.js:29
msgid "Current Kernel Information:"
msgstr ""
#: notebook/static/notebook/js/about.js:32
msgid "Could not access sys_info variable for version information."
msgstr ""
#: notebook/static/notebook/js/about.js:34
msgid "Cannot find sys_info!"
msgstr ""
#: notebook/static/notebook/js/about.js:38
msgid "About Jupyter Notebook"
msgstr ""
#: notebook/static/notebook/js/about.js:47
msgid "unable to contact kernel"
msgstr ""
#: notebook/static/notebook/js/actions.js:69
msgid "toggle rtl layout"
msgstr ""
#: notebook/static/notebook/js/actions.js:70
msgid "Toggle the screen directionality between left-to-right and right-to-left"
msgstr ""
#: notebook/static/notebook/js/actions.js:76
msgid "edit command mode keyboard shortcuts"
msgstr ""
#: notebook/static/notebook/js/actions.js:77
msgid "Open a dialog to edit the command mode keyboard shortcuts"
msgstr ""
#: notebook/static/notebook/js/actions.js:97
msgid "restart kernel"
msgstr ""
#: notebook/static/notebook/js/actions.js:98
msgid "restart the kernel (no confirmation dialog)"
msgstr ""
#: notebook/static/notebook/js/actions.js:106
msgid "confirm restart kernel"
msgstr ""
#: notebook/static/notebook/js/actions.js:107
msgid "restart the kernel (with dialog)"
msgstr ""
#: notebook/static/notebook/js/actions.js:113
msgid "restart kernel and run all cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:114
msgid "restart the kernel, then re-run the whole notebook (no confirmation dialog)"
msgstr ""
#: notebook/static/notebook/js/actions.js:120
msgid "confirm restart kernel and run all cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:121
msgid "restart the kernel, then re-run the whole notebook (with dialog)"
msgstr ""
#: notebook/static/notebook/js/actions.js:127
msgid "restart kernel and clear output"
msgstr ""
#: notebook/static/notebook/js/actions.js:128
msgid "restart the kernel and clear all output (no confirmation dialog)"
msgstr ""
#: notebook/static/notebook/js/actions.js:134
msgid "confirm restart kernel and clear output"
msgstr ""
#: notebook/static/notebook/js/actions.js:135
msgid "restart the kernel and clear all output (with dialog)"
msgstr ""
#: notebook/static/notebook/js/actions.js:142
#: notebook/static/notebook/js/actions.js:143
msgid "interrupt the kernel"
msgstr ""
#: notebook/static/notebook/js/actions.js:150
msgid "run cell and select next"
msgstr ""
#: notebook/static/notebook/js/actions.js:152
msgid "run cell, select below"
msgstr ""
#: notebook/static/notebook/js/actions.js:159
#: notebook/static/notebook/js/actions.js:160
msgid "run selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:167
#: notebook/static/notebook/js/actions.js:168
msgid "run cell and insert below"
msgstr ""
#: notebook/static/notebook/js/actions.js:175
#: notebook/static/notebook/js/actions.js:176
msgid "run all cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:183
#: notebook/static/notebook/js/actions.js:184
msgid "run all cells above"
msgstr ""
#: notebook/static/notebook/js/actions.js:190
#: notebook/static/notebook/js/actions.js:191
msgid "run all cells below"
msgstr ""
#: notebook/static/notebook/js/actions.js:197
#: notebook/static/notebook/js/actions.js:198
msgid "enter command mode"
msgstr ""
#: notebook/static/notebook/js/actions.js:205
#: notebook/static/notebook/js/actions.js:206
msgid "insert image"
msgstr ""
#: notebook/static/notebook/js/actions.js:213
#: notebook/static/notebook/js/actions.js:214
msgid "cut cell attachments"
msgstr ""
#: notebook/static/notebook/js/actions.js:221
#: notebook/static/notebook/js/actions.js:222
msgid "copy cell attachments"
msgstr ""
#: notebook/static/notebook/js/actions.js:229
#: notebook/static/notebook/js/actions.js:230
msgid "paste cell attachments"
msgstr ""
#: notebook/static/notebook/js/actions.js:237
#: notebook/static/notebook/js/actions.js:238
msgid "split cell at cursor"
msgstr ""
#: notebook/static/notebook/js/actions.js:245
#: notebook/static/notebook/js/actions.js:246
msgid "enter edit mode"
msgstr ""
#: notebook/static/notebook/js/actions.js:253
msgid "select previous cell"
msgstr ""
#: notebook/static/notebook/js/actions.js:254
msgid "select cell above"
msgstr ""
#: notebook/static/notebook/js/actions.js:265
msgid "select next cell"
msgstr ""
#: notebook/static/notebook/js/actions.js:266
msgid "select cell below"
msgstr ""
#: notebook/static/notebook/js/actions.js:277
msgid "extend selection above"
msgstr ""
#: notebook/static/notebook/js/actions.js:278
msgid "extend selected cells above"
msgstr ""
#: notebook/static/notebook/js/actions.js:289
msgid "extend selection below"
msgstr ""
#: notebook/static/notebook/js/actions.js:290
msgid "extend selected cells below"
msgstr ""
#: notebook/static/notebook/js/actions.js:301
#: notebook/static/notebook/js/actions.js:302
msgid "cut selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:312
#: notebook/static/notebook/js/actions.js:313
msgid "copy selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:327
#: notebook/static/notebook/js/actions.js:328
msgid "paste cells above"
msgstr ""
#: notebook/static/notebook/js/actions.js:335
#: notebook/static/notebook/js/actions.js:336
msgid "paste cells below"
msgstr ""
#: notebook/static/notebook/js/actions.js:344
#: notebook/static/notebook/js/actions.js:345
msgid "insert cell above"
msgstr ""
#: notebook/static/notebook/js/actions.js:354
#: notebook/static/notebook/js/actions.js:355
msgid "insert cell below"
msgstr ""
#: notebook/static/notebook/js/actions.js:365
#: notebook/static/notebook/js/actions.js:366
msgid "change cell to code"
msgstr ""
#: notebook/static/notebook/js/actions.js:373
#: notebook/static/notebook/js/actions.js:374
msgid "change cell to markdown"
msgstr ""
#: notebook/static/notebook/js/actions.js:381
#: notebook/static/notebook/js/actions.js:382
msgid "change cell to raw"
msgstr ""
#: notebook/static/notebook/js/actions.js:389
#: notebook/static/notebook/js/actions.js:390
msgid "change cell to heading 1"
msgstr ""
#: notebook/static/notebook/js/actions.js:397
#: notebook/static/notebook/js/actions.js:398
msgid "change cell to heading 2"
msgstr ""
#: notebook/static/notebook/js/actions.js:405
#: notebook/static/notebook/js/actions.js:406
msgid "change cell to heading 3"
msgstr ""
#: notebook/static/notebook/js/actions.js:413
#: notebook/static/notebook/js/actions.js:414
msgid "change cell to heading 4"
msgstr ""
#: notebook/static/notebook/js/actions.js:421
#: notebook/static/notebook/js/actions.js:422
msgid "change cell to heading 5"
msgstr ""
#: notebook/static/notebook/js/actions.js:429
#: notebook/static/notebook/js/actions.js:430
msgid "change cell to heading 6"
msgstr ""
#: notebook/static/notebook/js/actions.js:437
msgid "toggle cell output"
msgstr ""
#: notebook/static/notebook/js/actions.js:438
msgid "toggle output of selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:445
msgid "toggle cell scrolling"
msgstr ""
#: notebook/static/notebook/js/actions.js:446
msgid "toggle output scrolling of selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:453
msgid "clear cell output"
msgstr ""
#: notebook/static/notebook/js/actions.js:454
msgid "clear output of selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:460
msgid "move cells down"
msgstr ""
#: notebook/static/notebook/js/actions.js:461
msgid "move selected cells down"
msgstr ""
#: notebook/static/notebook/js/actions.js:469
msgid "move cells up"
msgstr ""
#: notebook/static/notebook/js/actions.js:470
msgid "move selected cells up"
msgstr ""
#: notebook/static/notebook/js/actions.js:478
#: notebook/static/notebook/js/actions.js:479
msgid "toggle line numbers"
msgstr ""
#: notebook/static/notebook/js/actions.js:486
#: notebook/static/notebook/js/actions.js:487
msgid "show keyboard shortcuts"
msgstr ""
#: notebook/static/notebook/js/actions.js:494
msgid "delete cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:495
msgid "delete selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:502
#: notebook/static/notebook/js/actions.js:503
msgid "undo cell deletion"
msgstr ""
#: notebook/static/notebook/js/actions.js:512
msgid "merge cell with previous cell"
msgstr ""
#: notebook/static/notebook/js/actions.js:513
msgid "merge cell above"
msgstr ""
#: notebook/static/notebook/js/actions.js:519
msgid "merge cell with next cell"
msgstr ""
#: notebook/static/notebook/js/actions.js:520
msgid "merge cell below"
msgstr ""
#: notebook/static/notebook/js/actions.js:527
#: notebook/static/notebook/js/actions.js:528
msgid "merge selected cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:535
msgid "merge cells"
msgstr ""
#: notebook/static/notebook/js/actions.js:536
msgid "merge selected cells, or current cell with cell below if only one cell is selected"
msgstr ""
#: notebook/static/notebook/js/actions.js:549
msgid "show command pallette"
msgstr ""
#: notebook/static/notebook/js/actions.js:550
msgid "open the command palette"
msgstr ""
#: notebook/static/notebook/js/actions.js:557
msgid "toggle all line numbers"
msgstr ""
#: notebook/static/notebook/js/actions.js:558
msgid "toggles line numbers in all cells, and persist the setting"
msgstr ""
#: notebook/static/notebook/js/actions.js:569
msgid "show all line numbers"
msgstr ""
#: notebook/static/notebook/js/actions.js:570
msgid "show line numbers in all cells, and persist the setting"
msgstr ""
#: notebook/static/notebook/js/actions.js:579
msgid "hide all line numbers"
msgstr ""
#: notebook/static/notebook/js/actions.js:580
msgid "hide line numbers in all cells, and persist the setting"
msgstr ""
#: notebook/static/notebook/js/actions.js:589
msgid "toggle header"
msgstr ""
#: notebook/static/notebook/js/actions.js:590
msgid "switch between showing and hiding the header"
msgstr ""
#: notebook/static/notebook/js/actions.js:605
#: notebook/static/notebook/js/actions.js:606
msgid "show the header"
msgstr ""
#: notebook/static/notebook/js/actions.js:615
#: notebook/static/notebook/js/actions.js:616
msgid "hide the header"
msgstr ""
#: notebook/static/notebook/js/actions.js:646
msgid "toggle toolbar"
msgstr ""
#: notebook/static/notebook/js/actions.js:647
msgid "switch between showing and hiding the toolbar"
msgstr ""
#: notebook/static/notebook/js/actions.js:660
#: notebook/static/notebook/js/actions.js:661
msgid "show the toolbar"
msgstr ""
#: notebook/static/notebook/js/actions.js:669
#: notebook/static/notebook/js/actions.js:670
msgid "hide the toolbar"
msgstr ""
#: notebook/static/notebook/js/actions.js:678
#: notebook/static/notebook/js/actions.js:679
msgid "close the pager"
msgstr ""
#: notebook/static/notebook/js/actions.js:704
msgid "ignore"
msgstr ""
#: notebook/static/notebook/js/actions.js:710
#: notebook/static/notebook/js/actions.js:711
msgid "move cursor up"
msgstr ""
#: notebook/static/notebook/js/actions.js:731
#: notebook/static/notebook/js/actions.js:732
msgid "move cursor down"
msgstr ""
#: notebook/static/notebook/js/actions.js:750
#: notebook/static/notebook/js/actions.js:751
msgid "scroll notebook down"
msgstr ""
#: notebook/static/notebook/js/actions.js:760
#: notebook/static/notebook/js/actions.js:761
msgid "scroll notebook up"
msgstr ""
#: notebook/static/notebook/js/actions.js:770
msgid "scroll cell center"
msgstr ""
#: notebook/static/notebook/js/actions.js:771
msgid "Scroll the current cell to the center"
msgstr ""
#: notebook/static/notebook/js/actions.js:781
msgid "scroll cell top"
msgstr ""
#: notebook/static/notebook/js/actions.js:782
msgid "Scroll the current cell to the top"
msgstr ""
#: notebook/static/notebook/js/actions.js:792
msgid "duplicate notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:793
msgid "Create and open a copy of the current notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:799
msgid "trust notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:800
msgid "Trust the current notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:806
msgid "rename notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:807
msgid "Rename the current notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:813
msgid "toggle all cells output collapsed"
msgstr ""
#: notebook/static/notebook/js/actions.js:814
msgid "Toggle the hidden state of all output areas"
msgstr ""
#: notebook/static/notebook/js/actions.js:820
msgid "toggle all cells output scrolled"
msgstr ""
#: notebook/static/notebook/js/actions.js:821
msgid "Toggle the scrolling state of all output areas"
msgstr ""
#: notebook/static/notebook/js/actions.js:828
msgid "clear all cells output"
msgstr ""
#: notebook/static/notebook/js/actions.js:829
msgid "Clear the content of all the outputs"
msgstr ""
#: notebook/static/notebook/js/actions.js:835
msgid "save notebook"
msgstr ""
#: notebook/static/notebook/js/actions.js:836
msgid "Save and Checkpoint"
msgstr ""
#: notebook/static/notebook/js/cell.js:79
msgid "Warning: accessing Cell.cm_config directly is deprecated."
msgstr ""
#: notebook/static/notebook/js/cell.js:763
#, python-format
msgid "Unrecognized cell type: %s"
msgstr ""
#: notebook/static/notebook/js/cell.js:777
msgid "Unrecognized cell type"
msgstr ""
#: notebook/static/notebook/js/celltoolbar.js:296
#, python-format
msgid "Error in cell toolbar callback %s"
msgstr ""
#: notebook/static/notebook/js/clipboard.js:53
#, python-format
msgid "Clipboard types: %s"
msgstr ""
#: notebook/static/notebook/js/clipboard.js:96
msgid "Dialog for paste from system clipboard"
msgstr ""
#: notebook/static/notebook/js/clipboard.js:109
msgid "Ctrl-V"
msgstr ""
#: notebook/static/notebook/js/clipboard.js:111
msgid "Cmd-V"
msgstr ""
#: notebook/static/notebook/js/clipboard.js:113
#, python-format
msgid "Press %s again to paste"
msgstr ""
#: notebook/static/notebook/js/clipboard.js:116
msgid "Why is this needed? "
msgstr ""
#: notebook/static/notebook/js/clipboard.js:118
msgid "We can't get paste events in this browser without a text box. "
msgstr ""
#: notebook/static/notebook/js/clipboard.js:119
msgid "There's an invisible text box focused in this dialog."
msgstr ""
#: notebook/static/notebook/js/clipboard.js:125
#, python-format
msgid "%s to paste"
msgstr ""
#: notebook/static/notebook/js/codecell.js:310
msgid "Can't execute cell since kernel is not set."
msgstr ""
#: notebook/static/notebook/js/codecell.js:472
msgid "In"
msgstr ""
#: notebook/static/notebook/js/kernelselector.js:269
#, python-format
msgid "Could not find a kernel matching %s. Please select a kernel:"
msgstr ""
#: notebook/static/notebook/js/kernelselector.js:278
msgid "Continue Without Kernel"
msgstr ""
#: notebook/static/notebook/js/kernelselector.js:278
msgid "Set Kernel"
msgstr ""
#: notebook/static/notebook/js/kernelselector.js:281
msgid "Kernel not found"
msgstr ""
#: notebook/static/notebook/js/kernelselector.js:319
#: notebook/static/tree/js/newnotebook.js:99
msgid "Creating Notebook Failed"
msgstr ""
#: notebook/static/notebook/js/kernelselector.js:320
#: notebook/static/tree/js/notebooklist.js:1360
#, python-format
msgid "The error was: %s"
msgstr ""
#: notebook/static/notebook/js/maintoolbar.js:54
msgid "Run"
msgstr ""
#: notebook/static/notebook/js/maintoolbar.js:76
msgid "Code"
msgstr ""
#: notebook/static/notebook/js/maintoolbar.js:77
msgid "Markdown"
msgstr ""
#: notebook/static/notebook/js/maintoolbar.js:78
msgid "Raw NBConvert"
msgstr ""
#: notebook/static/notebook/js/maintoolbar.js:79
msgid "Heading"
msgstr ""
#: notebook/static/notebook/js/maintoolbar.js:115
msgid "unrecognized cell type:"
msgstr ""
#: notebook/static/notebook/js/mathjaxutils.js:45
#, python-format
msgid "Failed to retrieve MathJax from '%s'"
msgstr ""
#: notebook/static/notebook/js/mathjaxutils.js:47
msgid "Math/LaTeX rendering will be disabled."
msgstr ""
#: notebook/static/notebook/js/menubar.js:220
msgid "Trusted Notebook"
msgstr ""
#: notebook/static/notebook/js/menubar.js:226
msgid "Trust Notebook"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/rawcell.js:16
#: notebook/static/notebook/js/menubar.js:383
msgid "None"
msgstr ""
#: notebook/static/notebook/js/menubar.js:406
msgid "No checkpoints"
msgstr ""
#: notebook/static/notebook/js/menubar.js:465
msgid "Opens in a new window"
msgstr ""
#: notebook/static/notebook/js/notebook.js:431
msgid "Autosave in progress, latest changes may be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:433
msgid "Unsaved changes will be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:438
msgid "The Kernel is busy, outputs may be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:461
msgid "This notebook is version %1$s, but we only fully support up to %2$s."
msgstr ""
#: notebook/static/notebook/js/notebook.js:463
msgid "You can still work with this notebook, but cell and output types introduced in later notebook versions will not be available."
msgstr ""
#: notebook/static/notebook/js/notebook.js:470
msgid "Restart and Run All Cells"
msgstr ""
#: notebook/static/notebook/js/notebook.js:471
msgid "Restart and Clear All Outputs"
msgstr ""
#: notebook/static/notebook/js/notebook.js:472
msgid "Restart"
msgstr ""
#: notebook/static/notebook/js/notebook.js:473
msgid "Continue Running"
msgstr ""
#: notebook/static/notebook/js/notebook.js:474
msgid "Reload"
msgstr ""
#: notebook/static/notebook/js/notebook.js:476
msgid "Overwrite"
msgstr ""
#: notebook/static/notebook/js/notebook.js:477
msgid "Trust"
msgstr ""
#: notebook/static/notebook/js/notebook.js:478
msgid "Revert"
msgstr ""
#: notebook/static/notebook/js/notebook.js:483
msgid "Newer Notebook"
msgstr ""
#: notebook/static/notebook/js/notebook.js:1548
msgid "Use markdown headings"
msgstr ""
#: notebook/static/notebook/js/notebook.js:1550
msgid "Jupyter no longer uses special heading cells. Instead, write your headings in Markdown cells using # characters:"
msgstr ""
#: notebook/static/notebook/js/notebook.js:1553
msgid "## This is a level 2 heading"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2248
msgid "Restart kernel and re-run the whole notebook?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2250
msgid "Are you sure you want to restart the current kernel and re-execute the whole notebook? All variables and outputs will be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:2275
msgid "Restart kernel and clear all output?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2277
msgid "Do you want to restart the current kernel and clear all output? All variables and outputs will be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:2322
msgid "Restart kernel?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2324
msgid "Do you want to restart the current kernel? All variables will be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:2320
msgid "Shutdown kernel?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2322
msgid "Do you want to shutdown the current kernel? All variables will be lost."
msgstr ""
#: notebook/static/notebook/js/notebook.js:2734
msgid "Notebook changed"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2735
msgid "The notebook file has changed on disk since the last time we opened or saved it. Do you want to overwrite the file on disk with the version open here, or load the version on disk (reload the page) ?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2782
#: notebook/static/notebook/js/notebook.js:2990
msgid "Notebook validation failed"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2785
msgid "The save operation succeeded, but the notebook does not appear to be valid. The validation error was:"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2836
msgid "A trusted Jupyter notebook may execute hidden malicious code when you open it. Selecting trust will immediately reload this notebook in a trusted state. For more information, see the Jupyter security documentation: "
msgstr ""
#: notebook/static/notebook/js/notebook.js:2840
msgid "here"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2848
msgid "Trust this notebook?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2981
msgid "Notebook failed to load"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2983
msgid "The error was: "
msgstr ""
#: notebook/static/notebook/js/notebook.js:2987
msgid "See the error console for details."
msgstr ""
#: notebook/static/notebook/js/notebook.js:2995
msgid "The notebook also failed validation:"
msgstr ""
#: notebook/static/notebook/js/notebook.js:2997
msgid "An invalid notebook may not function properly. The validation error was:"
msgstr ""
#: notebook/static/notebook/js/notebook.js:3036
#, python-format
msgid "This notebook has been converted from an older notebook format to the current notebook format v(%s)."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3038
#, python-format
msgid "This notebook has been converted from a newer notebook format to the current notebook format v(%s)."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3046
msgid "The next time you save this notebook, the current notebook format will be used."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3051
msgid "Older versions of Jupyter may not be able to read the new format."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3053
msgid "Some features of the original notebook may not be available."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3056
msgid "To preserve the original version, close the notebook without saving it."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3061
msgid "Notebook converted"
msgstr ""
#: notebook/static/notebook/js/notebook.js:3083
msgid "(No name)"
msgstr ""
#: notebook/static/notebook/js/notebook.js:3131
#, python-format
msgid "An unknown error occurred while loading this notebook. This version can load notebook formats %s or earlier. See the server log for details."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3142
msgid "Error loading notebook"
msgstr ""
#: notebook/static/notebook/js/notebook.js:3243
msgid "Are you sure you want to revert the notebook to the latest checkpoint?"
msgstr ""
#: notebook/static/notebook/js/notebook.js:3246
msgid "This cannot be undone."
msgstr ""
#: notebook/static/notebook/js/notebook.js:3249
msgid "The checkpoint was last updated at:"
msgstr ""
#: notebook/static/notebook/js/notebook.js:3260
msgid "Revert notebook to checkpoint"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:77
#: notebook/static/notebook/js/tour.js:61
#: notebook/static/notebook/js/tour.js:67
msgid "Edit Mode"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:84
#: notebook/static/notebook/js/notificationarea.js:88
#: notebook/static/notebook/js/tour.js:54
msgid "Command Mode"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:95
msgid "Kernel Created"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:99
msgid "Connecting to kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:103
msgid "Not Connected"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:106
msgid "click to reconnect"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:115
msgid "Restarting kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:129
msgid "Kernel Restarting"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:130
msgid "The kernel appears to have died. It will restart automatically."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:140
#: notebook/static/notebook/js/notificationarea.js:198
#: notebook/static/notebook/js/notificationarea.js:218
msgid "Dead kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:141
#: notebook/static/notebook/js/notificationarea.js:219
#: notebook/static/notebook/js/notificationarea.js:266
msgid "Kernel Dead"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:145
msgid "Interrupting kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:151
msgid "No Connection to Kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:161
msgid "A connection to the notebook server could not be established. The notebook will continue trying to reconnect. Check your network connection or notebook server configuration."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:166
msgid "Connection failed"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:179
msgid "No kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:180
msgid "Kernel is not running"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:187
msgid "Don't Restart"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:187
msgid "Try Restarting Now"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:191
msgid "The kernel has died, and the automatic restart has failed. It is possible the kernel cannot be restarted. If you are not able to restart the kernel, you will still be able to save the notebook, but running code will no longer work until the notebook is reopened."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:225
msgid "No Kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:252
msgid "Failed to start the kernel"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:272
#: notebook/static/notebook/js/notificationarea.js:292
#: notebook/static/notebook/js/notificationarea.js:306
msgid "Kernel Busy"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:273
msgid "Kernel starting, please wait..."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:279
#: notebook/static/notebook/js/notificationarea.js:286
msgid "Kernel Idle"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:280
msgid "Kernel ready"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:297
msgid "Using kernel: "
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:298
msgid "Only candidate for language: %1$s was %2$s."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:319
msgid "Loading notebook"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:322
msgid "Notebook loaded"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:325
msgid "Saving notebook"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:328
msgid "Notebook saved"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:331
msgid "Notebook save failed"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:334
msgid "Notebook copy failed"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:339
msgid "Checkpoint created"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:347
msgid "Checkpoint failed"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:350
msgid "Checkpoint deleted"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:353
msgid "Checkpoint delete failed"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:356
msgid "Restoring to checkpoint..."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:359
msgid "Checkpoint restore failed"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:364
msgid "Autosave disabled"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:367
#, python-format
msgid "Saving every %d sec."
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:383
msgid "Trusted"
msgstr ""
#: notebook/static/notebook/js/notificationarea.js:385
msgid "Not Trusted"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:75
msgid "click to expand output"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:79
msgid "click to expand output; double click to hide output"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:167
msgid "click to unscroll output; double click to hide"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:174
msgid "click to scroll output; double click to hide"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:422
msgid "Javascript error adding output!"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:427
msgid "See your browser Javascript console for more details."
msgstr ""
#: notebook/static/notebook/js/outputarea.js:468
#, python-format
msgid "Out[%d]:"
msgstr ""
#: notebook/static/notebook/js/outputarea.js:577
#, python-format
msgid "Unrecognized output: %s"
msgstr ""
#: notebook/static/notebook/js/pager.js:36
msgid "Open the pager in an external window"
msgstr ""
#: notebook/static/notebook/js/pager.js:45
msgid "Close the pager"
msgstr ""
#: notebook/static/notebook/js/pager.js:148
msgid "Jupyter Pager"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:39
#: notebook/static/notebook/js/quickhelp.js:49
#: notebook/static/notebook/js/quickhelp.js:50
msgid "go to cell start"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:40
#: notebook/static/notebook/js/quickhelp.js:51
#: notebook/static/notebook/js/quickhelp.js:52
msgid "go to cell end"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:41
#: notebook/static/notebook/js/quickhelp.js:53
msgid "go one word left"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:42
#: notebook/static/notebook/js/quickhelp.js:54
msgid "go one word right"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:43
#: notebook/static/notebook/js/quickhelp.js:55
msgid "delete word before"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:44
#: notebook/static/notebook/js/quickhelp.js:56
msgid "delete word after"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:61
msgid "code completion or indent"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:62
msgid "tooltip"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:63
msgid "indent"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:64
msgid "dedent"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:65
msgid "select all"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:66
msgid "undo"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:67
#: notebook/static/notebook/js/quickhelp.js:68
msgid "redo"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:102
#: notebook/static/notebook/js/quickhelp.js:243
msgid "Shift"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:103
msgid "Alt"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:104
msgid "Up"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:105
msgid "Down"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:106
msgid "Left"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:107
msgid "Right"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:108
#: notebook/static/notebook/js/quickhelp.js:246
msgid "Tab"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:109
msgid "Caps Lock"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:110
#: notebook/static/notebook/js/quickhelp.js:269
msgid "Esc"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:111
msgid "Ctrl"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:112
#: notebook/static/notebook/js/quickhelp.js:290
msgid "Enter"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:113
msgid "Page Up"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:114
#: notebook/static/notebook/js/quickhelp.js:130
msgid "Page Down"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:115
msgid "Home"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:116
msgid "End"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:117
#: notebook/static/notebook/js/quickhelp.js:245
msgid "Space"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:118
msgid "Backspace"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:119
msgid "Minus"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:130
msgid "PageUp"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:197
msgid "The Jupyter Notebook has two different keyboard input modes."
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:199
msgid "<b>Edit mode</b> allows you to type code or text into a cell and is indicated by a green cell border."
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:201
msgid "<b>Command mode</b> binds the keyboard to notebook level commands and is indicated by a grey cell border with a blue left margin."
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:222
#: notebook/static/notebook/js/tooltip.js:58
#: notebook/static/notebook/js/tooltip.js:69
msgid "Close"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:225
msgid "Keyboard shortcuts"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:240
msgid "Command"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:241
msgid "Control"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:242
msgid "Option"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:244
msgid "Return"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:270
#, python-format
msgid "Command Mode (press %s to enable)"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:272
msgid "Edit Shortcuts"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:275
msgid "edit command-mode keyboard shortcuts"
msgstr ""
#: notebook/static/notebook/js/quickhelp.js:292
#, python-format
msgid "Edit Mode (press %s to enable)"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:49
msgid "Autosave Failed!"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:71
#: notebook/static/tree/js/notebooklist.js:846
#: notebook/static/tree/js/notebooklist.js:859
msgid "Rename"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:78
#: notebook/static/tree/js/notebooklist.js:837
msgid "Enter a new notebook name:"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:86
msgid "Rename Notebook"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:98
msgid "Invalid notebook name. Notebook names must have 1 or more characters and can contain any characters except :/\\. Please enter a new notebook name:"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:103
msgid "Renaming..."
msgstr ""
#: notebook/static/notebook/js/savewidget.js:109
msgid "Unknown error"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:178
msgid "no checkpoint"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:193
#, python-format
msgid "Last Checkpoint: %s"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:217
msgid "(unsaved changes)"
msgstr ""
#: notebook/static/notebook/js/savewidget.js:219
msgid "(autosaved)"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:74
#, python-format
msgid "Warning: too many matches (%d). Some changes might not be shown or applied."
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:77
#, python-format
msgid "%d match"
msgid_plural "%d matches"
msgstr[0] ""
msgstr[1] ""
#: notebook/static/notebook/js/searchandreplace.js:145
msgid "More than 100 matches, aborting"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:166
msgid "Use regex (JavaScript regex syntax)"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:174
msgid "Replace in selected cells"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:181
msgid "Match case"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:187
msgid "Find"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:203
msgid "Replace"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:255
msgid "No matches, invalid or empty regular expression"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:370
msgid "Replace All"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:374
msgid "Find and Replace"
msgstr ""
#: notebook/static/notebook/js/searchandreplace.js:400
#: notebook/static/notebook/js/searchandreplace.js:401
msgid "find and replace"
msgstr ""
#: notebook/static/notebook/js/textcell.js:551
msgid "Write raw LaTeX or other formats here, for use with nbconvert. It will not be rendered in the notebook. When passing through nbconvert, a Raw Cell's content is added to the output unmodified."
msgstr ""
#: notebook/static/notebook/js/tooltip.js:41
msgid "Grow the tooltip vertically (press shift-tab twice)"
msgstr ""
#: notebook/static/notebook/js/tooltip.js:48
msgid "show the current docstring in pager (press shift-tab 4 times)"
msgstr ""
#: notebook/static/notebook/js/tooltip.js:49
msgid "Open in Pager"
msgstr ""
#: notebook/static/notebook/js/tooltip.js:68
msgid "Tooltip will linger for 10 seconds while you type"
msgstr ""
#: notebook/static/notebook/js/tour.js:27
msgid "Welcome to the Notebook Tour"
msgstr ""
#: notebook/static/notebook/js/tour.js:30
msgid "You can use the left and right arrow keys to go backwards and forwards."
msgstr ""
#: notebook/static/notebook/js/tour.js:33
msgid "Filename"
msgstr ""
#: notebook/static/notebook/js/tour.js:35
msgid "Click here to change the filename for this notebook."
msgstr ""
#: notebook/static/notebook/js/tour.js:39
msgid "Notebook Menubar"
msgstr ""
#: notebook/static/notebook/js/tour.js:40
msgid "The menubar has menus for actions on the notebook, its cells, and the kernel it communicates with."
msgstr ""
#: notebook/static/notebook/js/tour.js:44
msgid "Notebook Toolbar"
msgstr ""
#: notebook/static/notebook/js/tour.js:45
msgid "The toolbar has buttons for the most common actions. Hover your mouse over each button for more information."
msgstr ""
#: notebook/static/notebook/js/tour.js:48
msgid "Mode Indicator"
msgstr ""
#: notebook/static/notebook/js/tour.js:50
msgid "The Notebook has two modes: Edit Mode and Command Mode. In this area, an indicator can appear to tell you which mode you are in."
msgstr ""
#: notebook/static/notebook/js/tour.js:58
msgid "Right now you are in Command Mode, and many keyboard shortcuts are available. In this mode, no icon is displayed in the indicator area."
msgstr ""
#: notebook/static/notebook/js/tour.js:64
msgid "Pressing <code>Enter</code> or clicking in the input text area of the cell switches to Edit Mode."
msgstr ""
#: notebook/static/notebook/js/tour.js:70
msgid "Notice that the border around the currently active cell changed color. Typing will insert text into the currently active cell."
msgstr ""
#: notebook/static/notebook/js/tour.js:73
msgid "Back to Command Mode"
msgstr ""
#: notebook/static/notebook/js/tour.js:76
msgid "Pressing <code>Esc</code> or clicking outside of the input text area takes you back to Command Mode."
msgstr ""
#: notebook/static/notebook/js/tour.js:79
msgid "Keyboard Shortcuts"
msgstr ""
#: notebook/static/notebook/js/tour.js:91
msgid "You can click here to get a list of all of the keyboard shortcuts."
msgstr ""
#: notebook/static/notebook/js/tour.js:94
#: notebook/static/notebook/js/tour.js:100
msgid "Kernel Indicator"
msgstr ""
#: notebook/static/notebook/js/tour.js:97
msgid "This is the Kernel indicator. It looks like this when the Kernel is idle."
msgstr ""
#: notebook/static/notebook/js/tour.js:103
msgid "The Kernel indicator looks like this when the Kernel is busy."
msgstr ""
#: notebook/static/notebook/js/tour.js:107
msgid "Interrupting the Kernel"
msgstr ""
#: notebook/static/notebook/js/tour.js:109
msgid "To cancel a computation in progress, you can click here."
msgstr ""
#: notebook/static/notebook/js/tour.js:114
msgid "Notification Area"
msgstr ""
#: notebook/static/notebook/js/tour.js:115
msgid "Messages in response to user actions (Save, Interrupt, etc.) appear here."
msgstr ""
#: notebook/static/notebook/js/tour.js:117
msgid "End of Tour"
msgstr ""
#: notebook/static/notebook/js/tour.js:120
msgid "This concludes the Jupyter Notebook User Interface Tour."
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/attachments.js:32
msgid "Edit Attachments"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/default.js:19
msgid "Cell"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/default.js:29
#: notebook/static/notebook/js/celltoolbarpresets/default.js:47
msgid "Edit Metadata"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/rawcell.js:22
msgid "Custom"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/rawcell.js:32
msgid "Set the MIME type of the raw cell:"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/rawcell.js:40
msgid "Raw Cell MIME Type"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/rawcell.js:74
msgid "Raw NBConvert Format"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/rawcell.js:81
msgid "Raw Cell Format"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:15
msgid "Slide"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:16
msgid "Sub-Slide"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:17
msgid "Fragment"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:18
msgid "Skip"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:19
msgid "Notes"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:35
msgid "Slide Type"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/slideshow.js:41
msgid "Slideshow"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/tags.js:133
msgid "Add tag"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/tags.js:163
msgid "Edit the list of tags below. All whitespace is treated as tag separators."
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/tags.js:172
msgid "Edit the tags"
msgstr ""
#: notebook/static/notebook/js/celltoolbarpresets/tags.js:186
msgid "Edit Tags"
msgstr ""
#: notebook/static/tree/js/kernellist.js:86
#: notebook/static/tree/js/terminallist.js:105
msgid "Shutdown"
msgstr ""
#: notebook/static/tree/js/newnotebook.js:70
#, python-format
msgid "Create a new notebook with %s"
msgstr ""
#: notebook/static/tree/js/newnotebook.js:101
msgid "An error occurred while creating a new notebook."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:122
msgid "Creating File Failed"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:124
msgid "An error occurred while creating a new file."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:142
msgid "Creating Folder Failed"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:144
msgid "An error occurred while creating a new folder."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:271
msgid "Failed to read file"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:272
#, python-format
msgid "Failed to read file %s"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:283
#, python-format
msgid "The file size is %d MB. Do you still want to upload it?"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:286
msgid "Large file size warning"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:355
msgid "Server error: "
msgstr ""
#: notebook/static/tree/js/notebooklist.js:390
msgid "The notebook list is empty."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:463
msgid "Click here to rename, delete, etc."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:503
msgid "Running"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:835
msgid "Enter a new file name:"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:836
msgid "Enter a new directory name:"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:838
msgid "Enter a new name:"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:843
msgid "Rename file"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:844
msgid "Rename directory"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:845
msgid "Rename notebook"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:859
msgid "Move"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:875
msgid "An error occurred while renaming \"%1$s\" to \"%2$s\"."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:878
msgid "Rename Failed"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:927
#, python-format
msgid "Enter a new destination directory path for this item:"
msgid_plural "Enter a new destination directory path for these %d items:"
msgstr[0] ""
msgstr[1] ""
#: notebook/static/tree/js/notebooklist.js:940
#, python-format
msgid "Move an Item"
msgid_plural "Move %d Items"
msgstr[0] ""
msgstr[1] ""
#: notebook/static/tree/js/notebooklist.js:959
msgid "An error occurred while moving \"%1$s\" from \"%2$s\" to \"%3$s\"."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:961
msgid "Move Failed"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1007
#, python-format
msgid "Are you sure you want to permanently delete: \"%s\"?"
msgid_plural "Are you sure you want to permanently delete the %d files or folders selected?"
msgstr[0] ""
msgstr[1] ""
#: notebook/static/tree/js/notebooklist.js:1035
#, python-format
msgid "An error occurred while deleting \"%s\"."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1037
msgid "Delete Failed"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1078
#, python-format
msgid "Are you sure you want to duplicate: \"%s\"?"
msgid_plural "Are you sure you want to duplicate the %d files selected?"
msgstr[0] ""
msgstr[1] ""
#: notebook/static/tree/js/notebooklist.js:1088
msgid "Duplicate"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1102
#, python-format
msgid "An error occurred while duplicating \"%s\"."
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1104
msgid "Duplicate Failed"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1323
msgid "Upload"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1332
msgid "Invalid file name"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1333
msgid "File names must be at least one character and not start with a period"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1362
msgid "Cannot upload invalid Notebook"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1395
#, python-format
msgid "There is already a file named \"%s\". Do you want to replace it?"
msgstr ""
#: notebook/static/tree/js/notebooklist.js:1397
msgid "Replace file"
msgstr ""
|