1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://sourceforge.net/p/xml-copy-editor/bugs/\n"
"POT-Creation-Date: 2020-08-18 22:38+0800\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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: ../data/xmlcopyeditor.appdata.xml.in.h:1
msgid ""
"XML Copy Editor is an XML editor focusing on editing document markup "
"languages like DITA, DocBook, WordprocessingML. Features: DTD/XML Schema/"
"RELAX NG validation, XSLT, XPath, Pretty-printing, Syntax highlighting, "
"Folding, Tag completion, Tag locking, Tag-free editing, Built-in support for "
"XHTML, XSL, DocBook and TEI, Generating XML Schema, Spelling and style check "
"with built-in spell/style checker."
msgstr ""
#: ../data/xmlcopyeditor.appdata.xml.in.h:2
msgid "https://a.fsdn.com/con/app/proj/xml-copy-editor/screenshots/151221.jpg"
msgstr ""
#: ../data/xmlcopyeditor.desktop.in.h:1 ../src/xmlcopyeditor.cpp:394
#: ../src/xmlcopyeditor.cpp:1341 ../src/xmlcopyeditor.cpp:1441
#: ../src/xmlcopyeditor.cpp:1679 ../src/xmlcopyeditor.cpp:1758
#: ../src/xmlcopyeditor.cpp:3632
msgid "XML Copy Editor"
msgstr ""
#: ../data/xmlcopyeditor.desktop.in.h:2
msgid "XML Editor"
msgstr ""
#: ../data/xmlcopyeditor.desktop.in.h:3
msgid "Edit XML documents"
msgstr ""
#: ../data/xmlcopyeditor.desktop.in.h:4
msgid "XML;Editor;"
msgstr ""
#. wxID_CANCEL req'd for 'Esc closes dialog' functionality
#: ../src/aboutdialog.cpp:52
msgid "OK"
msgstr ""
#: ../src/associatedialog.cpp:78 ../src/mypropertysheet.cpp:171
msgid "Browse"
msgstr ""
#: ../src/associatedialog.cpp:125
msgid "Provides a space for you to type the path of the file"
msgstr ""
#: ../src/associatedialog.cpp:129
msgid "Opens a standard file dialog"
msgstr ""
#: ../src/associatedialog.cpp:133
msgid "Provides a space for you to type additional information"
msgstr ""
#: ../src/associatedialog.cpp:137
msgid "Closes this dialog without making any changes"
msgstr ""
#: ../src/associatedialog.cpp:141
msgid "Selects the file specified"
msgstr ""
#: ../src/associatedialog.cpp:166
msgid "|All files (*.*)|*.*"
msgstr ""
#: ../src/associatedialog.cpp:173
msgid "Select "
msgstr ""
#: ../src/commandpanel.cpp:48 ../src/commandpanel.cpp:166
msgid "{path}"
msgstr ""
#: ../src/commandpanel.cpp:49 ../src/commandpanel.cpp:167
msgid "{name}"
msgstr ""
#: ../src/commandpanel.cpp:50 ../src/commandpanel.cpp:168
msgid "{extension}"
msgstr ""
#: ../src/commandpanel.cpp:51 ../src/commandpanel.cpp:165
msgid "{fullpath}"
msgstr ""
#: ../src/commandpanel.cpp:66
msgid "&Run"
msgstr ""
#: ../src/commandpanel.cpp:74
msgid "&Wait"
msgstr ""
#: ../src/commandpanel.cpp:80
msgid "Output options"
msgstr ""
#: ../src/commandpanel.cpp:85
msgid "I&gnore"
msgstr ""
#: ../src/commandpanel.cpp:91
msgid "I&nsert"
msgstr ""
#: ../src/commandpanel.cpp:96
msgid "New &document"
msgstr ""
#: ../src/commandpanel.cpp:117
msgid "Variables"
msgstr ""
#: ../src/dtd2schema.cpp:57
#, c-format
msgid "Error at line %lld, column %lld: %s[br]"
msgstr ""
#: ../src/dtd2schema.cpp:84
#, c-format
msgid "Target namespace is redefined: %s -> %s[br]"
msgstr ""
#: ../src/dtd2schema.cpp:313
msgid "Ignored content type: "
msgstr ""
#: ../src/dtd2schema.cpp:338 ../src/dtd2schema.cpp:420
#, c-format
msgid "Unknown namespace: %s[br]"
msgstr ""
#: ../src/dtd2schema.cpp:393
#, c-format
msgid "Ignored namespace of %s: %s[br]"
msgstr ""
#: ../src/dtd2schema.cpp:412
#, c-format
msgid "Namespace redefined: %s -> %s[br]"
msgstr ""
#: ../src/dtd2schema.cpp:527
#, c-format
msgid "Ignored attribute \"%s\"'s type: %s[br]"
msgstr ""
#: ../src/dtd2schema.cpp:566
#, c-format
msgid "Unknown default type of attribute \"%s\": %s[br]"
msgstr ""
#: ../src/exportdialog.cpp:67
msgid "DAISY export"
msgstr ""
#: ../src/exportdialog.cpp:74
msgid "&Stylesheet for conversion to canonical XHTML (optional):"
msgstr ""
#: ../src/exportdialog.cpp:86
msgid "&Output folder:"
msgstr ""
#: ../src/exportdialog.cpp:97
msgid "&De-emphasize production notes"
msgstr ""
#: ../src/exportdialog.cpp:99
msgid "&Suppress optional production notes"
msgstr ""
#: ../src/exportdialog.cpp:102
msgid "Outputs"
msgstr ""
#: ../src/exportdialog.cpp:103
msgid "&Full DAISY 2.02 and 3.0 Talking Books"
msgstr ""
#: ../src/exportdialog.cpp:105
msgid "&HTML"
msgstr ""
#: ../src/exportdialog.cpp:107
msgid "&ePub ebook"
msgstr ""
#: ../src/exportdialog.cpp:109
msgid "&RTF document"
msgstr ""
#: ../src/exportdialog.cpp:111
msgid "&Word document"
msgstr ""
#: ../src/exportdialog.cpp:113
msgid "&MP3 album"
msgstr ""
#: ../src/exportdialog.cpp:136
msgid "Download DAISY extension"
msgstr ""
#: ../src/exportdialog.cpp:184
msgid ""
"Provides a space for you to enter or select a stylesheet for conversion to "
"canonical XHTML"
msgstr ""
#: ../src/exportdialog.cpp:188
msgid "Provides a space for you to enter or select the output folder"
msgstr ""
#: ../src/exportdialog.cpp:192
msgid "Starts the export"
msgstr ""
#: ../src/exportdialog.cpp:196
msgid "Closes the dialog box without exporting the file"
msgstr ""
#: ../src/findreplacepanel.cpp:53
msgid "Find:"
msgstr ""
#: ../src/findreplacepanel.cpp:54 ../src/findreplacepanel.cpp:55
#: ../src/styledialog.cpp:455
msgid " "
msgstr ""
#: ../src/findreplacepanel.cpp:67
msgid "Replace with:"
msgstr ""
#: ../src/findreplacepanel.cpp:79
msgid "Find &Next"
msgstr ""
#: ../src/findreplacepanel.cpp:86
msgid "&Replace"
msgstr ""
#: ../src/findreplacepanel.cpp:93
msgid "Replace &All"
msgstr ""
#: ../src/findreplacepanel.cpp:101 ../src/globalreplacedialog.cpp:75
msgid "&Match case"
msgstr ""
#: ../src/findreplacepanel.cpp:108
msgid "Re&gex"
msgstr ""
#: ../src/findreplacepanel.cpp:132
msgid "&Close"
msgstr ""
#: ../src/globalreplacedialog.cpp:51 ../src/globalreplacedialog.cpp:133
msgid "Global Find and Replace"
msgstr ""
#: ../src/globalreplacedialog.cpp:57
msgid "&Find what: "
msgstr ""
#: ../src/globalreplacedialog.cpp:59
msgid "Replace with: "
msgstr ""
#: ../src/globalreplacedialog.cpp:79
msgid "&Regex"
msgstr ""
#: ../src/globalreplacedialog.cpp:83
msgid "R&eplace in all open documents"
msgstr ""
#: ../src/globalreplacedialog.cpp:129
msgid "Cannot compile regular expression '"
msgstr ""
#: ../src/globalreplacedialog.cpp:146
msgid "Provides a space for you to type the text you want to find"
msgstr ""
#: ../src/globalreplacedialog.cpp:150
msgid ""
"Provides a space for you to type the text you want to replace the text you "
"typed in Find what"
msgstr ""
#: ../src/globalreplacedialog.cpp:154
msgid ""
"Finds only text with lowercase and uppercase letters as specified in Find "
"what"
msgstr ""
#: ../src/globalreplacedialog.cpp:158
msgid "Extends the scope to all open documents"
msgstr ""
#: ../src/globalreplacedialog.cpp:162
msgid "Interprets the text specified in Find what as a regular expression"
msgstr ""
#: ../src/globalreplacedialog.cpp:166
msgid ""
"Finds all instances of the text specified in Find what and replaces them "
"with the text in Replace with"
msgstr ""
#: ../src/globalreplacedialog.cpp:170
msgid "Closes the dialog box without saving any changes you have made"
msgstr ""
#: ../src/housestyle.cpp:184
msgid "no rules found"
msgstr ""
#: ../src/housestyle.cpp:223
msgid "Cannot initialise spellcheck"
msgstr ""
#: ../src/mynotebook.cpp:89 ../src/wrapdaisy.cpp:555
#: ../src/xmlcopyeditor.cpp:5350
msgid "Close"
msgstr ""
#: ../src/mynotebook.cpp:90
msgid "Close all"
msgstr ""
#: ../src/mypropertysheet.cpp:75
msgid "&Always insert closing tag"
msgstr ""
#: ../src/mypropertysheet.cpp:78
msgid "&Folding"
msgstr ""
#: ../src/mypropertysheet.cpp:81
msgid "Fol&d blank lines"
msgstr ""
#: ../src/mypropertysheet.cpp:84
msgid "&Highlight current line"
msgstr ""
#: ../src/mypropertysheet.cpp:87
msgid "Hi&ghlight syntax"
msgstr ""
#: ../src/mypropertysheet.cpp:90
msgid "&Indentation guides"
msgstr ""
#: ../src/mypropertysheet.cpp:93
msgid "I&ntelligent backspace/delete"
msgstr ""
#: ../src/mypropertysheet.cpp:96
msgid "&Line numbers"
msgstr ""
#: ../src/mypropertysheet.cpp:99
msgid "L&ock hidden tags"
msgstr ""
#: ../src/mypropertysheet.cpp:102
msgid "&Tag completion"
msgstr ""
#: ../src/mypropertysheet.cpp:105
msgid "&Validate as you type"
msgstr ""
#: ../src/mypropertysheet.cpp:108
msgid "Va&riable highlight in tag free view"
msgstr ""
#: ../src/mypropertysheet.cpp:111
msgid "&White space visible"
msgstr ""
#: ../src/mypropertysheet.cpp:117
msgid "Font"
msgstr ""
#: ../src/mypropertysheet.cpp:161
msgid "Application directory"
msgstr ""
#: ../src/mypropertysheet.cpp:178
msgid "Language (restart required)"
msgstr ""
#: ../src/mypropertysheet.cpp:184 ../src/styledialog.cpp:340
#: ../src/xmlcopyeditor.cpp:5001
msgid "Default"
msgstr ""
#: ../src/mypropertysheet.cpp:198
msgid "&Enable network access for XML validation"
msgstr ""
#: ../src/mypropertysheet.cpp:201
msgid "E&xpand internal entities on open"
msgstr ""
#: ../src/mypropertysheet.cpp:204
msgid "&One application instance only"
msgstr ""
#: ../src/mypropertysheet.cpp:207
msgid "Re&member layout on close"
msgstr ""
#: ../src/mypropertysheet.cpp:210
msgid "&Remember open tabs on close"
msgstr ""
#: ../src/mypropertysheet.cpp:213
msgid "Re&tain undo history on save"
msgstr ""
#: ../src/mypropertysheet.cpp:217
msgid "&Save UTF-8 byte order mark"
msgstr ""
#: ../src/mypropertysheet.cpp:221
msgid "S&how full path on frame"
msgstr ""
#: ../src/mypropertysheet.cpp:247
msgid "General"
msgstr ""
#: ../src/mypropertysheet.cpp:248
msgid "Editor"
msgstr ""
#: ../src/mypropertysheet.cpp:261
msgid "Cannot access application directory"
msgstr ""
#: ../src/mypropertysheet.cpp:261 ../src/xmlcopyeditor.cpp:2612
msgid "Options"
msgstr ""
#: ../src/styledialog.cpp:102
msgid "Style"
msgstr ""
#: ../src/styledialog.cpp:102 ../src/xmlcopyeditor.cpp:5483
#: ../src/xmlcopyeditor.cpp:5487
msgid "Spelling"
msgstr ""
#: ../src/styledialog.cpp:148
msgid "&Check"
msgstr ""
#: ../src/styledialog.cpp:166
msgid "No."
msgstr ""
#: ../src/styledialog.cpp:167 ../src/styledialog.cpp:169
msgid "Context"
msgstr ""
#: ../src/styledialog.cpp:168 ../src/wrapxerces.h:53
#: ../src/xmlcopyeditor.cpp:415 ../src/xmlcopyeditor.cpp:435
#: ../src/xmlcopyeditor.cpp:438 ../src/xmlcopyeditor.cpp:455
#: ../src/xmlcopyeditor.cpp:460 ../src/xmlcopyeditor.cpp:500
#: ../src/xmlcopyeditor.cpp:520 ../src/xmlcopyeditor.cpp:532
#: ../src/xmlcopyeditor.cpp:538 ../src/xmlcopyeditor.cpp:567
msgid "Error"
msgstr ""
#: ../src/styledialog.cpp:170
msgid "Suggestion"
msgstr ""
#: ../src/styledialog.cpp:172
msgid "Rule"
msgstr ""
#: ../src/styledialog.cpp:173
msgid "Action"
msgstr ""
#: ../src/styledialog.cpp:181
msgid "&Apply changes"
msgstr ""
#: ../src/styledialog.cpp:189
msgid "&Printable report"
msgstr ""
#: ../src/styledialog.cpp:197
msgid "Pr&intable summary"
msgstr ""
#: ../src/styledialog.cpp:205
msgid "C&hange all"
msgstr ""
#: ../src/styledialog.cpp:213
msgid "I&gnore all"
msgstr ""
#: ../src/styledialog.cpp:221
msgid "Ca&ncel"
msgstr ""
#: ../src/styledialog.cpp:304 ../src/xmlcopyeditor.cpp:778
#: ../src/xmlcopyeditor.cpp:830
msgid "en_US"
msgstr ""
#: ../src/styledialog.cpp:309
msgid "(No dictionaries found)"
msgstr ""
#: ../src/styledialog.cpp:345
msgid "(No rule sets found)"
msgstr ""
#: ../src/styledialog.cpp:351 ../src/xmlcopyeditor.cpp:781
msgid "(No filter)"
msgstr ""
#: ../src/styledialog.cpp:374
msgid "(No filters found)"
msgstr ""
#: ../src/styledialog.cpp:401 ../src/styledialog.cpp:431
#: ../src/styledialog.cpp:750 ../src/styledialog.cpp:755
msgid "Ignore"
msgstr ""
#: ../src/styledialog.cpp:415
msgid "Ignore once"
msgstr ""
#: ../src/styledialog.cpp:417
msgid "Ignore all"
msgstr ""
#: ../src/styledialog.cpp:419
msgid "Change once"
msgstr ""
#: ../src/styledialog.cpp:420
msgid "Change all"
msgstr ""
#: ../src/styledialog.cpp:423
msgid "New suggestion..."
msgstr ""
#: ../src/styledialog.cpp:446 ../src/styledialog.cpp:474
msgid "Checking document..."
msgstr ""
#: ../src/styledialog.cpp:478
msgid "Cannot check document: "
msgstr ""
#: ../src/styledialog.cpp:511
#, c-format
msgid "%i error"
msgid_plural "%i errors"
msgstr[0] ""
msgstr[1] ""
#: ../src/styledialog.cpp:526
msgid "No items selected"
msgstr ""
#: ../src/styledialog.cpp:755 ../src/styledialog.cpp:783
msgid "Change"
msgstr ""
#: ../src/styledialog.cpp:914
msgid "Enter new suggestion:"
msgstr ""
#: ../src/styledialog.cpp:915
msgid "New Suggestion"
msgstr ""
#: ../src/wrapdaisy.cpp:97
msgid "Export in progress"
msgstr ""
#: ../src/wrapdaisy.cpp:98
msgid "Initializing..."
msgstr ""
#: ../src/wrapdaisy.cpp:122 ../src/wrapdaisy.cpp:282
msgid "Cannot create folder [b]"
msgstr ""
#: ../src/wrapdaisy.cpp:159
msgid "Empty XHTML file"
msgstr ""
#: ../src/wrapdaisy.cpp:169
msgid "Cannot read [b]"
msgstr ""
#: ../src/wrapdaisy.cpp:169
msgid "[/b]"
msgstr ""
#: ../src/wrapdaisy.cpp:183
msgid "Suppressing optional production notes..."
msgstr ""
#: ../src/wrapdaisy.cpp:185 ../src/wrapdaisy.cpp:211 ../src/wrapdaisy.cpp:297
#: ../src/wrapdaisy.cpp:335
msgid "Cancelled"
msgstr ""
#: ../src/wrapdaisy.cpp:209
msgid "De-emphasizing production notes..."
msgstr ""
#: ../src/wrapdaisy.cpp:260
msgid "Cannot create HTML folder [b]"
msgstr ""
#: ../src/wrapdaisy.cpp:271
msgid "Cannot create image folder [b]"
msgstr ""
#: ../src/wrapdaisy.cpp:295
msgid "Copying files..."
msgstr ""
#: ../src/wrapdaisy.cpp:318
msgid "Cannot write canonical XHTML file"
msgstr ""
#: ../src/wrapdaisy.cpp:333
msgid "Preparing DTBook..."
msgstr ""
#: ../src/wrapdaisy.cpp:541
msgid "documents.open"
msgstr ""
#: ../src/wrapdaisy.cpp:542
msgid "ActiveDocument"
msgstr ""
#: ../src/wrapdaisy.cpp:544
msgid "Cannot open "
msgstr ""
#. tempDocFile;//
#. wdFormatDocument
#: ../src/wrapdaisy.cpp:550
msgid "SaveAs"
msgstr ""
#: ../src/wrapdaisy.cpp:678
msgid "Cannot create MP3 album folder [b]"
msgstr ""
#: ../src/wrapexpat.cpp:75
msgid "Unable to create parser instance"
msgstr ""
#: ../src/wraplibxml.cpp:127 ../src/wraplibxml.cpp:181
#: ../src/wraplibxml.cpp:243 ../src/wraplibxml.cpp:304
#: ../src/wraplibxml.cpp:369 ../src/wraplibxml.cpp:558
#: ../src/wraplibxml.cpp:611 ../src/wraplibxml.cpp:659
msgid "Cannot create a parser context"
msgstr ""
#: ../src/wraplibxml.cpp:165
msgid "Cannot create an RNG parser context"
msgstr ""
#: ../src/wraplibxml.cpp:175
msgid "Cannot create an RNG validation context"
msgstr ""
#: ../src/wraplibxml.cpp:237
msgid "Cannot create a schema validation context"
msgstr ""
#: ../src/wraplibxml.cpp:458
msgid "Infinity"
msgstr ""
#: ../src/wraplibxml.cpp:461
msgid "-Infinity"
msgstr ""
#: ../src/wraplibxml.cpp:465
msgid "NaN"
msgstr ""
#: ../src/wraplibxml.cpp:551
msgid "Cannot parse stylesheet"
msgstr ""
#: ../src/wraplibxml.cpp:580
msgid "Cannot apply stylesheet"
msgstr ""
#: ../src/wraplibxml.cpp:716
#, c-format
msgid "Error at line %d, column %d: %s"
msgstr ""
#: ../src/wraplibxml.cpp:719
#, c-format
msgid "Error at line %d: %s"
msgstr ""
#: ../src/wrapxerces.cpp:174
msgid "Unexpected validation error"
msgstr ""
#: ../src/wrapxerces.cpp:252
#, c-format
msgid "%s at line %llu, column %llu: %s%s"
msgstr ""
#: ../src/wrapxerces.h:58 ../src/xmlcopyeditor.cpp:5536
msgid "Warning"
msgstr ""
#: ../src/wrapxerces.h:62
msgid "FatalError"
msgstr ""
#: ../src/xmlcopyeditorcopy.h:23
msgid ""
"All files (*.*)|*.*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*."
"dtd|XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl"
msgstr ""
#: ../src/xmlcopyeditorcopy.h:25
msgid ""
"All files (*)|*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*.dtd|"
"XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl"
msgstr ""
#: ../src/xmlcopyeditorcopy.h:27
msgid "Copyright © 2005-2020 Gerald Schmidt <gnschmidt@users.sourceforge.net>"
msgstr ""
#: ../src/xmlcopyeditorcopy.h:28
msgid ""
"\n"
"XML Copy Editor is free software released under the GNU\n"
"General Public License.\n"
"\n"
"Many thanks are due to "
msgstr ""
#: ../src/xmlcopyeditor.cpp:413
msgid "Failed to initialize Xerces-C:\n"
msgstr ""
#: ../src/xmlcopyeditor.cpp:426 ../src/xmlcopyeditor.cpp:491
msgid "(unknown error)"
msgstr ""
#: ../src/xmlcopyeditor.cpp:428
msgid ""
"XML Copy Editor has encountered the following error and needs to close: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:454 ../src/xmlcopyeditor.cpp:459
#: ../src/xmlcopyeditor.cpp:527
msgid "XML Copy Editor has encountered an error and needs to close."
msgstr ""
#: ../src/xmlcopyeditor.cpp:477 ../src/xmlcopyeditor.cpp:556
msgid "The operating system has turned down a request for additional memory"
msgstr ""
#: ../src/xmlcopyeditor.cpp:478 ../src/xmlcopyeditor.cpp:557
#: ../src/xmlcopyeditor.cpp:4797
msgid "Out of memory"
msgstr ""
#: ../src/xmlcopyeditor.cpp:493
msgid "The following error has occurred: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:495
msgid ""
".\n"
"\n"
"Select \"Abort\" to exit, \"Retry\" to close this window and \"Ignore\" to "
"continue."
msgstr ""
#: ../src/xmlcopyeditor.cpp:776 ../src/xmlcopyeditor.cpp:829
msgid "Default style"
msgstr ""
#: ../src/xmlcopyeditor.cpp:831
msgid "No filter"
msgstr ""
#: ../src/xmlcopyeditor.cpp:900
msgid ""
"SSE2 is enabled in Xerces-C++ library. SSE2 should be checked at run time "
"rather than compile time. The program may crash (segmentation fault) on a "
"machine that doesn't support SSE2.\n"
"\n"
"If it happens, please try compiling Xerces-C++ with SSE2 disabled.\n"
"\n"
"OK:\tShow this warning next time\n"
"Cancel:\tDisable the warning\n"
msgstr ""
#: ../src/xmlcopyeditor.cpp:908
msgid "SSE2 is checked at compile time"
msgstr ""
#: ../src/xmlcopyeditor.cpp:983 ../src/xmlcopyeditor.cpp:991
msgid "Current Element"
msgstr ""
#: ../src/xmlcopyeditor.cpp:984 ../src/xmlcopyeditor.cpp:990
msgid "Insert Element"
msgstr ""
#: ../src/xmlcopyeditor.cpp:985 ../src/xmlcopyeditor.cpp:989
msgid "Insert Sibling"
msgstr ""
#: ../src/xmlcopyeditor.cpp:986 ../src/xmlcopyeditor.cpp:988
msgid "Insert Entity"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1239
msgid "Unknown command line switch (expecting 'w', 's', --version or --help)"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1248
msgid "Command line processing incomplete: no file specified"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1389
msgid "Parse in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:1408
msgid "well-formed"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1440
msgid "Do you want to save the changes to "
msgstr ""
#: ../src/xmlcopyeditor.cpp:1631 ../src/xmlcopyeditor.cpp:1633
msgid "Attributes hidden"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1638 ../src/xmlcopyeditor.cpp:1640
msgid "Tags hidden"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1653 ../src/xmlcopyeditor.cpp:1655
msgid "Tags locked"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1706 ../src/xmlcopyeditor.cpp:1708
msgid "Modified"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1737
#, c-format
msgid "Ln %i Col %i"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1928
msgid "Cannot open clipboard"
msgstr ""
#: ../src/xmlcopyeditor.cpp:1933
msgid "Cannot paste as new document: no text on clipboard"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2023 ../src/xmlcopyeditor.cpp:2818
#, c-format
msgid "%i replacement made"
msgid_plural "%i replacements made"
msgstr[0] ""
msgstr[1] ""
#: ../src/xmlcopyeditor.cpp:2049
msgid "Preparing Print Preview..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:2070
msgid "Preparing to print..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:2129 ../src/xmlcopyeditor.cpp:2145
msgid "Find"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2152 ../src/xmlcopyeditor.cpp:2262
#: ../src/xmlcopyeditor.cpp:2356
msgid "This functionality requires Microsoft Windows"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2158
msgid "Import Microsoft Word Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2253
msgid "[b]DAISY export stopped[/b]: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:2256
msgid "DAISY export completed. Output files are stored in: [b]"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2271
#, c-format
msgid "Cannot open [b]%s[/b] for import"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2281
msgid "Import in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:2289
msgid "(lossless conversion requires version 2003 or later)"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2296 ../src/xmlcopyeditor.cpp:2417
msgid "Cannot start Microsoft Word"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2300 ../src/xmlcopyeditor.cpp:2421
msgid "A more recent version of Microsoft Word is required"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2307
#, c-format
msgid "Microsoft Word cannot save [b]%s[/b] as XML"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2312
msgid "Microsoft Word cannot save this document as WordprocessingML "
msgstr ""
#: ../src/xmlcopyeditor.cpp:2320
msgid "Opening imported file..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:2337
msgid "Cannot open imported file"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2389
msgid "Export Microsoft Word Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2410
msgid "Export in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:2424
#, c-format
msgid "Microsoft Word cannot save %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2453
msgid "Cannot save temporary file"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2614
msgid "Preferences"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2659
msgid "Enter line number:"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2660
msgid "Go To"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2669
#, c-format
msgid "'%s' is not a valid line number"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2698
msgid "Replace"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2715
msgid "Find and Replace"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2808
msgid "Cannot replace: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:2849
msgid "XML document (*.xml)"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2873
msgid "Choose a document type:"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2873
msgid "New Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2914
#, c-format
msgid "Document%i"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2981
msgid "Open Large Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:2981 ../src/xmlcopyeditor.cpp:5442
#: ../src/xmlcopyeditor.cpp:5444
msgid "Open"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3017
#, c-format
msgid "Cannot open %s."
msgstr ""
#: ../src/xmlcopyeditor.cpp:3025 ../src/xmlcopyeditor.cpp:3604
#, c-format
msgid "%s is already open"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3047
#, c-format
msgid "Cannot open %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3170
#, c-format
msgid "Cannot open %s: unknown encoding %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3201
#, c-format
msgid "Cannot open %s: out of memory"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3222
#, c-format
msgid "Cannot open %s: conversion from encoding %s failed"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3231 ../src/xmlcopyeditor.cpp:4025
msgid "Creating document view..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:3472
msgid "Edited document empty"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3585
msgid "Save As"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3793
msgid "DTD Validation in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:3816 ../src/xmlcopyeditor.cpp:3888
msgid "valid"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3837
msgid "Select RELAX NG grammar"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3838 ../src/xmlcopyeditor.cpp:4125
#: ../src/xmlcopyeditor.cpp:5797
msgid "Choose a file:"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3839
msgid "RELAX NG grammar"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3867
msgid "RELAX NG validation in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:3932
msgid "Validation in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:3943
#, c-format
msgid "%s is valid"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3982
msgid "W3C Schema"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3982
msgid "DTD"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3983
msgid "Please choose a shema type"
msgstr ""
#: ../src/xmlcopyeditor.cpp:3984
msgid "Schema type"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4010
msgid "Please select a DTD file"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4016
msgid "Converting..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4043
msgid "Enter XPath:"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4044
msgid "Evaluate XPath"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4065
msgid "Cannot evaluate XPath"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4076
msgid "No matching nodes found"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4112
#, c-format
msgid "Cannot open stylesheet %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4124
msgid "Select stylesheet"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4126 ../src/xmlcopyeditor.cpp:5771
msgid "XSLT stylesheet"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4181
msgid "XSL transformation in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4188
msgid "Cannot transform: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:4196
msgid "Output document empty"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4220
msgid "Pretty-printing in progress..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4230
msgid "Cannot pretty-print: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:4241
msgid "Pretty-print unsuccessful: output document empty"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4273
msgid "Choose an encoding:"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4273
msgid "Encoding"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4286
msgid "Cannot set encoding: "
msgstr ""
#: ../src/xmlcopyeditor.cpp:4297
msgid "Cannot set encoding (cannot parse temporary file)"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4501
#, c-format
msgid "Cannot find '%s'"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4563
msgid ""
"File has been modified by another application.\n"
"Do you want to proceed?"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4564
msgid "Confirmation"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4603 ../src/xmlcopyeditor.cpp:4617
#: ../src/xmlcopyeditor.cpp:4638 ../src/xmlcopyeditor.cpp:4667
#: ../src/xmlcopyeditor.cpp:4730 ../src/xmlcopyeditor.cpp:4744
#: ../src/xmlcopyeditor.cpp:4781 ../src/xmlcopyeditor.cpp:4816
#, c-format
msgid "Cannot save %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4659
#, c-format
msgid "%s saved in default encoding UTF-8: unknown encoding %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4722
#, c-format
msgid "%s saved in default encoding UTF-8: conversion to %s failed"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4772
msgid "unknown error"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4774
#, c-format
msgid "Cannot save document in %s: %s (saved in default encoding UTF-8)"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4796
msgid "Out of memory: attempt to save in default encoding UTF-8?"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4809
#, c-format
msgid "%s saved in default encoding UTF-8"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4873
msgid "MB"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4878
msgid "kB"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4883
msgid "byte"
msgid_plural "bytes"
msgstr[0] ""
msgstr[1] ""
#: ../src/xmlcopyeditor.cpp:4891
#, c-format
msgid "%g %s saved"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4911
msgid "&Undo\tCtrl+Z"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4911
msgid "Undo"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4915
msgid "&Redo\tCtrl+Y"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4915
msgid "Redo"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4919
msgid "&Cut\tCtrl+X"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4919
msgid "Cut"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4923
msgid "C&opy\tCtrl+C"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4923
msgid "Copy"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4927
msgid "&Paste\tCtrl+V"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4927
msgid "Paste"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4934
msgid "P&aste As New Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4935
msgid "Paste As New Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4939
msgid "&Find...\tCtrl+F"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4939
msgid "Find..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4943
msgid "F&ind Again\tF3"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4943
msgid "Find Again"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4947
msgid "&Replace...\tCtrl+R"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4947
msgid "Replace..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4954
msgid "&Global Replace...\tCtrl+Shift+R"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4955
msgid "Global Replace..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4959
msgid "G&o To...\tCtrl+G"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4959
msgid "Go To..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4963
msgid "&Toggle Comment\tCtrl+/"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4963
msgid "Toggle Comment"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4984
msgid "Pr&eferences..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4984
msgid "Preferences..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:4992
msgid "Increase\tCtrl+U"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4992
msgid "Increase"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4994
msgid "Decrease\tCtrl+D"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4994
msgid "Decrease"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4996
msgid "Normal\tCtrl+0"
msgstr ""
#: ../src/xmlcopyeditor.cpp:4996
msgid "Normal"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5001
msgid "&Default"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5004
msgid "&Blue background, white text"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5005
msgid "Blue background, white text"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5008
msgid "&Light"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5009
msgid "Light"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5012
msgid "&None"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5013
msgid "None"
msgstr ""
#. WAIT FOR AUI LIBRARY TO SUPPORT THIS - currently always splits left
#. wxMenu *splitTabMenu = new wxMenu;
#. splitTabMenu->Append ( ID_SPLIT_TAB_TOP, _ ( "&Top" ), _ ( "Top" ));
#. splitTabMenu->Append ( ID_SPLIT_TAB_RIGHT, _ ( "&Right" ), _ ( "Right" ));
#. splitTabMenu->Append ( ID_SPLIT_TAB_BOTTOM, _ ( "&Bottom" ), _ ( "Bottom" ));
#. splitTabMenu->Append ( ID_SPLIT_TAB_LEFT, _ ( "&Left" ), _ ( "Left" ));
#.
#. use class-wide data member
#: ../src/xmlcopyeditor.cpp:5042
msgid "&Previous Document\tCtrl+PgUp"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5042
msgid "Previous Document"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5043
msgid "&Next Document\tCtrl+PgDn"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5043
msgid "Next Document"
msgstr ""
#. viewMenu->Append ( wxID_ANY, _ ( "&Split Tab" ), splitTabMenu );
#: ../src/xmlcopyeditor.cpp:5047
msgid "&Browser\tCtrl+B"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5047 ../src/xmlcopyeditor.cpp:5476
#: ../src/xmlcopyeditor.cpp:5480
msgid "Browser"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5051
msgid "&Show Tags and Attributes\tCtrl+T"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5051
msgid "Show Tags and Attributes"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5054
msgid "&Hide Attributes Only\tCtrl+Shift+A"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5054
msgid "Hide Attributes Only"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5057
msgid "H&ide Tags and Attributes\tCtrl+Shift+T"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5057
msgid "Hide Tags and Attributes"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5076
msgid "&Toggle Fold\tCtrl+Alt+T"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5076
msgid "Toggle Fold"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5078
msgid "&Fold Tags\tCtrl+Shift+F"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5078
msgid "Fold Tags"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5080
msgid "&Unfold Tags\tCtrl+Shift+U"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5083
msgid "&Wrap Words"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5085
msgid "&Color Scheme"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5086
msgid "&Text Size"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5091
msgid "S&how Current Element Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5092
msgid "Show Current Element Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5096
msgid "Sh&ow Toolbar"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5096
msgid "Show Toolbar"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5100
msgid "C&lose Message Pane\tAlt+C"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5100
msgid "Close Message Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5102
msgid "Close Find/&Replace Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5102
msgid "Close Find/Replace Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5104
msgid "Close Co&mmand Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5104
msgid "Close Command Pane"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5108
msgid "&Element...\tCtrl+I"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5108
msgid "Element..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5109
msgid "&Sibling...\tCtrl+Shift+I"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5109
msgid "Sibling..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5110
msgid "&Entity...\tCtrl+E"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5110
msgid "Entity..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5112
msgid "&Twin\tCtrl+Enter"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5112
msgid "Twin"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5114
msgid "S&ymbol..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5114
msgid "Symbol..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5122
msgid "&DTD/XML Schema\tF5"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5122
msgid "DTD/XML Schema"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5125
msgid "&RELAX NG...\tF6"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5125
msgid "RELAX NG..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5128
msgid "&Public DTD..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5128
msgid "Public DTD..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5129
msgid "&System DTD..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5129
msgid "System DTD..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5130
msgid "&XML Schema..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5130
msgid "XML Schema..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5131
msgid "XS< stylesheet..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5131
msgid "XSLT stylesheet..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5147
#, c-format
msgid "\tCtrl+%i"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5189
msgid "&Check Well-formedness\tF2"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5189 ../src/xmlcopyeditor.cpp:5462
#: ../src/xmlcopyeditor.cpp:5466
msgid "Check Well-formedness"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5192
msgid "&Validate"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5194
msgid "Create &Schema...\tF10"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5195
msgid "Create schema..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5196 ../src/xmlcopyeditor.cpp:5197
msgid "DTD -> Schema..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5201
msgid "&Associate"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5204
msgid "&XSL Transform...\tF8"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5205
msgid "XSL Transform..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5208
msgid "&Evaluate XPath...\tF9"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5209
msgid "Evaluate XPath..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5212
msgid "Copy &The Current XPath"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5213
msgid "Copy The Current XPath"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5218
msgid "&Pretty-print\tF11"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5218
msgid "Pretty-print"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5222
msgid "&Lock Tags\tCtrl+L"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5223 ../src/xmlcopyeditor.cpp:5490
#: ../src/xmlcopyeditor.cpp:5493
msgid "Lock Tags"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5228
msgid "E&ncoding..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5228
msgid "Encoding..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5237
msgid "&Spelling...\tF7"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5238
msgid "Spelling..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5245
msgid "&Style...\tShift+F7"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5246
msgid "Style..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5253
msgid "&Word Count"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5254
msgid "Word Count"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5262
msgid "&Command\tCtrl+Alt+C"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5263
msgid "Command"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5278
msgid "&Options..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5279
msgid "Options..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5289
msgid "&XML Copy Editor Help\tF1"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5289
msgid "Help"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5295
msgid "&Home Page"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5295
msgid "Home Page"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5298
msgid "&Forum"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5298
msgid "Forum"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5302
msgid "&About XML Copy Editor"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5302
msgid "About"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5306
msgid "&Browse Source"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5306
msgid "Browse Source"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5318
msgid "&File"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5319
msgid "&Edit"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5320
msgid "&View"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5321
msgid "&Insert"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5322
msgid "&XML"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5323
msgid "&Tools"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5324
msgid "&Help"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5339
msgid "&New...\tCtrl+N"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5339
msgid "New..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5342
msgid "&Open...\tCtrl+O"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5342
msgid "Open..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5346
msgid "O&pen Large Document...\tCtrl+Shift+O"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5346
msgid "Open Large Document..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5350
msgid "&Close\tCtrl+W"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5353
msgid "C&lose All"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5353
msgid "Close All"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5356
msgid "&Save\tCtrl+S"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5356 ../src/xmlcopyeditor.cpp:5447
#: ../src/xmlcopyeditor.cpp:5451
msgid "Save"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5359
msgid "S&ave As...\tF12"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5359
msgid "Save As..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5363
msgid "&DAISY Export..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5363
msgid "DAISY Export..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5367
msgid "&Reload"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5367
msgid "Reload"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5370
msgid "&Revert"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5370
msgid "Revert"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5373
msgid "Pa&ge Setup..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5373
msgid "Page Setup..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5376
msgid "Pr&int Preview..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5376
msgid "Print Preview..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5379
msgid "Pri&nt...\tCtrl+P"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5379
msgid "Print..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5383
msgid "I&mport Microsoft Word Document..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5387
msgid "Expor&t Microsoft Word Document..."
msgstr ""
#: ../src/xmlcopyeditor.cpp:5391
msgid "E&xit"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5391
msgid "Exit"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5437 ../src/xmlcopyeditor.cpp:5439
msgid "New"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5455 ../src/xmlcopyeditor.cpp:5459
msgid "Print"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5469 ../src/xmlcopyeditor.cpp:5473
msgid "Validate"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5533
msgid "Information"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5539
msgid "Stopped"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5542
msgid "Question"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5545
msgid "Message"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5613
#, c-format
msgid "%s is %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5638
msgid "Document has been modified: save or discard changes"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5701
msgid "Encoding should be one of "
msgstr ""
#: ../src/xmlcopyeditor.cpp:5752
msgid "Public DTD"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5759
msgid "System DTD"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5765
msgid "XML Schema"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5789
#, c-format
msgid "Cannot associate %s: %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5796
#, c-format
msgid "Associate %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5804
msgid "Choose a public identifier:"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5924
#, c-format
msgid "Cannot count words: %s"
msgstr ""
#: ../src/xmlcopyeditor.cpp:5932
#, c-format
msgid "%s contains %i word"
msgid_plural "%s contains %i words"
msgstr[0] ""
msgstr[1] ""
#: ../src/xmlcopyeditor.cpp:6072
msgid "The current XPath is empty."
msgstr ""
#: ../src/xmlcopyeditor.cpp:6082
#, c-format
msgid "The current XPath has been copied to the clipboard:[br][b]%s[/b]"
msgstr ""
#: ../src/xmlcopyeditor.cpp:6090
#, c-format
msgid "Failed to copy the current XPath to the clipboard:[br][b]%s[/b]"
msgstr ""
#: ../src/xmlcopyeditor.cpp:6202
msgid "Invalid path: "
msgid_plural "Invalid paths: "
msgstr[0] ""
msgstr[1] ""
#: ../src/xmlcopyeditor.cpp:6206
msgid ""
"To change the application directory setting, click Tools menu -> Options... "
"after XML Copy Editor starts up."
msgstr ""
#: ../src/xmlcopyeditor.cpp:6209
msgid ""
"To change the application directory setting, click Edit menu -> "
"Preferences... after XML Copy Editor starts up."
msgstr ""
#: ../src/xmlctrl.cpp:305 ../src/xmlctrl.cpp:409
msgid "Delete tag?"
msgstr ""
#: ../src/xmlctrl.cpp:306 ../src/xmlctrl.cpp:337 ../src/xmlctrl.cpp:410
#: ../src/xmlctrl.cpp:441
msgid "Tags Locked"
msgstr ""
#: ../src/xmlctrl.cpp:336 ../src/xmlctrl.cpp:440
msgid "Delete entity reference?"
msgstr ""
#: ../src/xmlctrl.cpp:2255
msgid "Cannot find the start tag"
msgstr ""
#: ../src/xmlctrl.cpp:2263
msgid "Cannot find the end tag"
msgstr ""
#: ../src/xmlschemagenerator.cpp:81
msgid "Failed to load xml file."
msgstr ""
|