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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR , 2016, SISSA (International School for Advanced Studies).
# This file is distributed under the same license as the xmlschema package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: xmlschema\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-03-20 06:55+0100\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"
#: xmlschema/documents.py:51
msgid "invalid schema class {!r}"
msgstr ""
#: xmlschema/documents.py:89
msgid "cannot get a schema for XML data, provide a schema argument"
msgstr ""
#: xmlschema/exports.py:148
msgid "target directory {} is not empty"
msgstr ""
#: xmlschema/exports.py:151
msgid "target {} is not a directory"
msgstr ""
#: xmlschema/exports.py:154
msgid "target parent directory {} does not exist"
msgstr ""
#: xmlschema/exports.py:157
msgid "target parent {} is not a directory"
msgstr ""
#: xmlschema/exports.py:171
msgid "target directory {} violation for exported path {}, {}"
msgstr ""
#: xmlschema/loaders.py:117
msgid ""
"if the 'namespace' attribute is not present on the import statement then the "
"imported schema must have a 'targetNamespace'"
msgstr ""
#: xmlschema/loaders.py:121
msgid ""
"the attribute 'namespace' must be different from schema's 'targetNamespace'"
msgstr ""
#: xmlschema/loaders.py:155
msgid "Include schema failed: {}"
msgstr ""
#: xmlschema/loaders.py:164
msgid "Redefine schema failed: {}"
msgstr ""
#: xmlschema/loaders.py:166
msgid "Override schema failed: {}"
msgstr ""
#: xmlschema/loaders.py:173
msgid "can't include schema {!r}: {}"
msgstr ""
#: xmlschema/loaders.py:175
msgid "can't redefine schema {!r}: {}"
msgstr ""
#: xmlschema/loaders.py:177
msgid "can't override schema {!r}: {}"
msgstr ""
#: xmlschema/loaders.py:185
msgid "can't {} the same schema {!r}"
msgstr ""
#: xmlschema/loaders.py:214
msgid "import of namespace {!r} failed: {}"
msgstr ""
#: xmlschema/loaders.py:216
msgid "import of chameleon schema failed: {}"
msgstr ""
#: xmlschema/loaders.py:230
msgid "Import of namespace {!r} from {!r} failed: {}."
msgstr ""
#: xmlschema/loaders.py:253
msgid "imported schema {!r} has an unmatched namespace {!r}"
msgstr ""
#: xmlschema/locations.py:34
msgid "wrong type {!r} for locations argument"
msgstr ""
#: xmlschema/resources/arguments.py:46
msgid "source XML document is empty"
msgstr ""
#: xmlschema/resources/arguments.py:78
msgid "invalid value {!r} for argument {!r}"
msgstr ""
#: xmlschema/utils/descriptors.py:112 xmlschema/validators/builders.py:187
msgid "Can't set attribute {}"
msgstr ""
#: xmlschema/utils/descriptors.py:116 xmlschema/validators/builders.py:190
msgid "Can't delete attribute {}"
msgstr ""
#: xmlschema/utils/descriptors.py:124
msgid "invalid type {!r} for argument {!r}"
msgstr ""
#: xmlschema/utils/descriptors.py:138
msgid "invalid value {!r} for argument {!r}: must be one of {}"
msgstr ""
#: xmlschema/utils/descriptors.py:156
msgid "the argument {!r} must be greater or equal than {}"
msgstr ""
#: xmlschema/utils/descriptors.py:159
msgid "the argument {!r} must be lesser or equal than {}"
msgstr ""
#: xmlschema/utils/logger.py:30
msgid "{!r} is not a valid loglevel"
msgstr ""
#: xmlschema/validators/assertions.py:76
msgid "base_type={!r} is not a complexType definition"
msgstr ""
#: xmlschema/validators/attributes.py:89
msgid "unknown attribute {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:105
msgid "referenced attribute has a different fixed value {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:110
msgid "attribute {!r} is not allowed when attribute reference is used"
msgstr ""
#: xmlschema/validators/attributes.py:126
msgid "an attribute name must be different from 'xmlns'"
msgstr ""
#: xmlschema/validators/attributes.py:133
#, python-format
msgid "cannot add attributes in %r namespace"
msgstr ""
#: xmlschema/validators/attributes.py:154
msgid "ambiguous type definition for XSD attribute"
msgstr ""
#: xmlschema/validators/attributes.py:166
msgid "XSD attribute's type must be a simpleType"
msgstr ""
#: xmlschema/validators/attributes.py:173 xmlschema/validators/elements.py:291
msgid "'default' and 'fixed' attributes are mutually exclusive"
msgstr ""
#: xmlschema/validators/attributes.py:177
msgid ""
"the attribute 'use' must be 'optional' if the attribute 'default' is present"
msgstr ""
#: xmlschema/validators/attributes.py:182
msgid "default value {!r} is not compatible with attribute's type"
msgstr ""
#: xmlschema/validators/attributes.py:185
msgid "xs:ID key attributes cannot have a default value"
msgstr ""
#: xmlschema/validators/attributes.py:191
msgid "fixed value {!r} is not compatible with attribute's type"
msgstr ""
#: xmlschema/validators/attributes.py:194
msgid "xs:ID key attributes cannot have a fixed value"
msgstr ""
#: xmlschema/validators/attributes.py:238 xmlschema/validators/elements.py:766
msgid ""
"cannot validate against xs:NOTATION directly, only against a subtype with an "
"enumeration facet"
msgstr ""
#: xmlschema/validators/attributes.py:242 xmlschema/validators/elements.py:770
msgid "missing enumeration facet in xs:NOTATION subtype"
msgstr ""
#: xmlschema/validators/attributes.py:251
msgid "attribute {0!r} has a fixed value {1!r}"
msgstr ""
#: xmlschema/validators/attributes.py:305
msgid "attribute 'fixed' with use=prohibited is not allowed in XSD 1.1"
msgstr ""
#: xmlschema/validators/attributes.py:397
msgid "more anyAttribute declarations in the same attribute group"
msgstr ""
#: xmlschema/validators/attributes.py:400
msgid "another declaration after anyAttribute"
msgstr ""
#: xmlschema/validators/attributes.py:416
msgid "multiple declaration for attribute {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:425
msgid "the attribute 'ref' is required in a local attributeGroup"
msgstr ""
#: xmlschema/validators/attributes.py:435
msgid "duplicated attributeGroup {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:441
msgid "in a redefinition the reference to itself must be the first"
msgstr ""
#: xmlschema/validators/attributes.py:452
msgid "attributeGroup ref={!r} is not in the redefined group"
msgstr ""
#: xmlschema/validators/attributes.py:456
msgid "Circular attribute groups not allowed in XSD 1.0"
msgstr ""
#: xmlschema/validators/attributes.py:464
msgid "unknown attribute group {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:475
msgid "multiple declaration of attribute {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:485
msgid "(attribute | attributeGroup) expected, found {!r}."
msgstr ""
#: xmlschema/validators/attributes.py:496
msgid "Unexpected attribute {!r} in restriction"
msgstr ""
#: xmlschema/validators/attributes.py:512
msgid "Attribute wildcard is not a restriction of the base wildcard"
msgstr ""
#: xmlschema/validators/attributes.py:522
msgid "Attribute type is not a restriction of the base attribute type"
msgstr ""
#: xmlschema/validators/attributes.py:527
msgid "Attribute {!r}: unmatched attribute use in restriction"
msgstr ""
#: xmlschema/validators/attributes.py:533
msgid "Attribute {!r}: derived attribute has a different fixed value"
msgstr ""
#: xmlschema/validators/attributes.py:537
msgid "Attribute {!r}: 'inheritable' property change in restriction"
msgstr ""
#: xmlschema/validators/attributes.py:551
msgid "Missing required attribute {!r} in redefinition restriction"
msgstr ""
#: xmlschema/validators/attributes.py:556
msgid "Attribute {!r}: unmatched attribute use in redefinition"
msgstr ""
#: xmlschema/validators/attributes.py:559
msgid "Attribute {!r}: redefinition remove fixed constraint"
msgstr ""
#: xmlschema/validators/attributes.py:568
msgid "Redefinition restriction contains additional attribute {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:572
msgid "Wrong attribute order in redefinition restriction"
msgstr ""
#: xmlschema/validators/attributes.py:591
msgid "multiple ID attributes not allowed for XSD 1.0"
msgstr ""
#: xmlschema/validators/attributes.py:646
#: xmlschema/validators/attributes.py:722
msgid "missing required attribute {!r}"
msgstr ""
#: xmlschema/validators/attributes.py:677
#: xmlschema/validators/attributes.py:740
#, python-format
msgid "%r is not an attribute of the XSI namespace"
msgstr ""
#: xmlschema/validators/attributes.py:685
#: xmlschema/validators/attributes.py:748
#, python-format
msgid "%r attribute not allowed for element"
msgstr ""
#: xmlschema/validators/attributes.py:691
#, python-format
msgid "use of attribute %r is prohibited"
msgstr ""
#: xmlschema/validators/builders.py:232
msgid "'model' argument must be (sequence | choice | all)"
msgstr ""
#: xmlschema/validators/builders.py:317 xmlschema/validators/builders.py:325
msgid "(restriction | list | union) expected"
msgstr ""
#: xmlschema/validators/builders.py:336
msgid "missing attribute 'name' in a global simpleType"
msgstr ""
#: xmlschema/validators/builders.py:341
msgid "attribute 'name' not allowed for a local simpleType"
msgstr ""
#: xmlschema/validators/builders.py:463
msgid "global {} {!r} not found"
msgstr ""
#: xmlschema/validators/builders.py:517
msgid "global xs:{} with name={!r} is already built"
msgstr ""
#: xmlschema/validators/builders.py:519
msgid "global xs:{} with name={!r} is already defined"
msgstr ""
#: xmlschema/validators/builders.py:546
msgid "global xs:{} with name={!r} is already loaded"
msgstr ""
#: xmlschema/validators/builders.py:560
msgid "not a redefinition!"
msgstr ""
#: xmlschema/validators/builders.py:618
msgid "redefined schema {!r} has a different targetNamespace"
msgstr ""
#: xmlschema/validators/builders.py:629
msgid "unexpected instance {!r} in XSD {} global map"
msgstr ""
#: xmlschema/validators/complex_types.py:137
msgid "missing attribute 'name' in a global complexType"
msgstr ""
#: xmlschema/validators/complex_types.py:142
msgid "attribute 'name' not allowed in a local complexType"
msgstr ""
#: xmlschema/validators/complex_types.py:165
msgid "'mixed' attribute not allowed with simpleContent"
msgstr ""
#: xmlschema/validators/complex_types.py:180
#, python-format
msgid "unexpected tag %r after simpleContent declaration:"
msgstr ""
#: xmlschema/validators/complex_types.py:191
msgid ""
"value of 'mixed' attribute in complexType and complexContent must be the same"
msgstr ""
#: xmlschema/validators/complex_types.py:211
#, python-format
msgid "unexpected tag %r after complexContent declaration"
msgstr ""
#: xmlschema/validators/complex_types.py:236
#, python-format
msgid "unexpected tag %r for complexType content"
msgstr ""
#: xmlschema/validators/complex_types.py:244
#: xmlschema/validators/simple_types.py:1266
msgid "wrong definition with self-reference"
msgstr ""
#: xmlschema/validators/complex_types.py:247
#: xmlschema/validators/simple_types.py:1273
msgid "wrong redefinition without self-reference"
msgstr ""
#: xmlschema/validators/complex_types.py:258
msgid "restriction or extension tag expected"
msgstr ""
#: xmlschema/validators/complex_types.py:265
msgid "{!r} is expected to have a redefined/overridden component"
msgstr ""
#: xmlschema/validators/complex_types.py:270
msgid "{0!r} derivation not allowed for {1!r}"
msgstr ""
#: xmlschema/validators/complex_types.py:280
msgid "'base' attribute required"
msgstr ""
#: xmlschema/validators/complex_types.py:289
#, python-format
msgid "missing base type %r"
msgstr ""
#: xmlschema/validators/complex_types.py:300
#: xmlschema/validators/complex_types.py:314
msgid "a complexType ancestor required: {!r}"
msgstr ""
#: xmlschema/validators/complex_types.py:305
#, python-format
msgid "derivation by %r blocked by attribute 'final' in base type"
msgstr ""
#: xmlschema/validators/complex_types.py:324
msgid "a not empty simpleContent cannot restrict an empty content type"
msgstr ""
#: xmlschema/validators/complex_types.py:333
msgid "content type is not a restriction of base content"
msgstr ""
#: xmlschema/validators/complex_types.py:341
msgid "with simpleContent cannot restrict an element-only content type"
msgstr ""
#: xmlschema/validators/complex_types.py:353 xmlschema/validators/groups.py:544
#, python-format
msgid "unexpected tag %r"
msgstr ""
#: xmlschema/validators/complex_types.py:363
#, python-format
msgid "base type %r has no simple content"
msgstr ""
#: xmlschema/validators/complex_types.py:371
msgid "the base type is not derivable by restriction"
msgstr ""
#: xmlschema/validators/complex_types.py:374
#: xmlschema/validators/complex_types.py:467
#: xmlschema/validators/complex_types.py:914
#, python-format
msgid "base %r is simple or has a simple content"
msgstr ""
#: xmlschema/validators/complex_types.py:386
#, python-brace-format
msgid ""
"restriction of an xs:{0} with more than one particle with xs:{1} is forbidden"
msgstr ""
#: xmlschema/validators/complex_types.py:398
msgid "derived a mixed content from a base type that has element-only content"
msgstr ""
#: xmlschema/validators/complex_types.py:401
msgid "an empty content derivation from base type that has not empty content"
msgstr ""
#: xmlschema/validators/complex_types.py:412
msgid "{0!r} is not a restriction of the base type {1!r}"
msgstr ""
#: xmlschema/validators/complex_types.py:421
#: xmlschema/validators/complex_types.py:919
msgid "the base type is not derivable by extension"
msgstr ""
#: xmlschema/validators/complex_types.py:454
#: xmlschema/validators/complex_types.py:964
#: xmlschema/validators/complex_types.py:1014
#, python-format
msgid ""
"base has a different content type (mixed=%r) and the extension group is not "
"empty."
msgstr ""
#: xmlschema/validators/complex_types.py:474
msgid "cannot extend a complex content with xs:all"
msgstr ""
#: xmlschema/validators/complex_types.py:477
msgid "xs:sequence cannot extend xs:all"
msgstr ""
#: xmlschema/validators/complex_types.py:487
msgid "XSD 1.0 does not allow extension of a not empty 'all' model group"
msgstr ""
#: xmlschema/validators/complex_types.py:490
#, python-format
msgid ""
"base has a different content type (mixed=%r) and the extension group is not "
"empty"
msgstr ""
#: xmlschema/validators/complex_types.py:503
#: xmlschema/validators/complex_types.py:1028
msgid "extended type has a mixed content but the base is element-only"
msgstr ""
#: xmlschema/validators/complex_types.py:670
msgid "global type {!r} is not built"
msgstr ""
#: xmlschema/validators/complex_types.py:745
#: xmlschema/validators/complex_types.py:771
#, python-format
msgid "cannot decode %(obj)r data with %(decoder)r"
msgstr ""
#: xmlschema/validators/complex_types.py:868
msgid "the simple content of {!r} is not a valid simple type in XSD 1.1"
msgstr ""
#: xmlschema/validators/complex_types.py:875
msgid "openContent mismatch between type and model group"
msgstr ""
#: xmlschema/validators/complex_types.py:887
#, python-format
msgid "attribute %r must be inheritable"
msgstr ""
#: xmlschema/validators/complex_types.py:903
msgid "default attribute {!r} is already declared in the complex type"
msgstr ""
#: xmlschema/validators/complex_types.py:968
msgid "cannot extend an empty mixed content with an xs:all"
msgstr ""
#: xmlschema/validators/complex_types.py:986
#, python-format
msgid "xs:all cannot extend a not empty xs:%s"
msgstr ""
#: xmlschema/validators/complex_types.py:1001
msgid "cannot extend a not empty 'all' model group with a different model"
msgstr ""
#: xmlschema/validators/complex_types.py:1004
msgid "when extend an xs:all group minOccurs must be the same"
msgstr ""
#: xmlschema/validators/complex_types.py:1007
msgid "cannot extend an xs:all group with mixed empty content"
msgstr ""
#: xmlschema/validators/complex_types.py:1051
msgid "{0!r} is not an extension of the base type {1!r}"
msgstr ""
#: xmlschema/validators/elements.py:178
#, python-format
msgid "unknown element %r"
msgstr ""
#: xmlschema/validators/elements.py:197
msgid "attribute {!r} is not allowed when element reference is used"
msgstr ""
#: xmlschema/validators/elements.py:218
msgid "local scope elements cannot have abstract attribute"
msgstr ""
#: xmlschema/validators/elements.py:245
msgid "attribute {!r} is not allowed in a global element declaration"
msgstr ""
#: xmlschema/validators/elements.py:250
msgid "attribute {!r} not allowed in a local element declaration"
msgstr ""
#: xmlschema/validators/elements.py:268 xmlschema/validators/elements.py:1529
#: xmlschema/validators/simple_types.py:908
#: xmlschema/validators/simple_types.py:1070
#: xmlschema/validators/simple_types.py:1279
msgid "unknown type {!r}"
msgstr ""
#: xmlschema/validators/elements.py:273
msgid ""
"the attribute 'type' and a xs:{} local declaration are mutually exclusive"
msgstr ""
#: xmlschema/validators/elements.py:295
msgid "'default' value {!r} is not compatible with element's type"
msgstr ""
#: xmlschema/validators/elements.py:299
msgid "xs:ID or a type derived from xs:ID cannot have a default value"
msgstr ""
#: xmlschema/validators/elements.py:305
msgid "'fixed' value {!r} is not compatible with element's type"
msgstr ""
#: xmlschema/validators/elements.py:309
msgid "xs:ID or a type derived from xs:ID cannot have a fixed value"
msgstr ""
#: xmlschema/validators/elements.py:326 xmlschema/validators/elements.py:334
#, python-format
msgid "duplicated identity constraint %r:"
msgstr ""
#: xmlschema/validators/elements.py:356
#, python-format
msgid "unknown substitutionGroup %r"
msgstr ""
#: xmlschema/validators/elements.py:361
#, python-format
msgid "circularity found for substitutionGroup %r"
msgstr ""
#: xmlschema/validators/elements.py:376
msgid ""
"{0!r} type is not of the same or a derivation of the head element {1!r} type"
msgstr ""
#: xmlschema/validators/elements.py:380
#, python-format
msgid ""
"head element %r can't be substituted by an element that has a derivation of "
"its type"
msgstr ""
#: xmlschema/validators/elements.py:384
#, python-format
msgid ""
"head element %r can't be substituted by an element that has an extension of "
"its type"
msgstr ""
#: xmlschema/validators/elements.py:388
#, python-format
msgid ""
"head element %r can't be substituted by an element that has a restriction of "
"its type"
msgstr ""
#: xmlschema/validators/elements.py:566
msgid "schemaLocation declaration after namespace start"
msgstr ""
#: xmlschema/validators/elements.py:599 xmlschema/validators/elements.py:935
msgid "can't use an abstract element in an instance"
msgstr ""
#: xmlschema/validators/elements.py:602 xmlschema/validators/elements.py:938
msgid ""
"can't use an abstract XSD element for validation unless it's the head of a "
"substitution group"
msgstr ""
#: xmlschema/validators/elements.py:610 xmlschema/validators/elements.py:951
msgid "can't use an abstract XSD element for validation"
msgstr ""
#: xmlschema/validators/elements.py:664
#, python-format
msgid "usage of %r is blocked"
msgstr ""
#: xmlschema/validators/elements.py:668
#, python-format
msgid "%r is abstract"
msgstr ""
#: xmlschema/validators/elements.py:697
msgid "element is not nillable"
msgstr ""
#: xmlschema/validators/elements.py:700
msgid "xsi:nil attribute must have a boolean value"
msgstr ""
#: xmlschema/validators/elements.py:705
msgid "xsi:nil='true' but the element has a fixed value"
msgstr ""
#: xmlschema/validators/elements.py:708
msgid "xsi:nil='true' but the element is not empty"
msgstr ""
#: xmlschema/validators/elements.py:714
msgid "character data is not allowed because content is empty"
msgstr ""
#: xmlschema/validators/elements.py:733 xmlschema/validators/elements.py:749
#, python-format
msgid "must have the fixed value %r"
msgstr ""
#: xmlschema/validators/elements.py:738
msgid "a simple content element can't have child elements"
msgstr ""
#: xmlschema/validators/elements.py:1284
msgid "test attribute missing in non-final alternative"
msgstr ""
#: xmlschema/validators/elements.py:1396
msgid "Maybe a not equivalent type table between elements {0!r} and {1!r}"
msgstr ""
#: xmlschema/validators/elements.py:1429
#, python-brace-format
msgid "adding schema at {url} change the "
msgstr ""
#: xmlschema/validators/elements.py:1511 xmlschema/validators/elements.py:1519
msgid "missing 'type' attribute"
msgstr ""
#: xmlschema/validators/elements.py:1523
msgid "declared type is not derived from {!r}"
msgstr ""
#: xmlschema/validators/elements.py:1533
msgid "type {0!r} is not derived from {1!r}"
msgstr ""
#: xmlschema/validators/elements.py:1538
#, python-format
msgid ""
"the attribute 'type' and the xs:%s local declaration are mutually exclusive"
msgstr ""
#: xmlschema/validators/exceptions.py:177
msgid "Circular definition detected for xs:{} {!r}."
msgstr ""
#: xmlschema/validators/exceptions.py:439
#, python-format
msgid "The content of element %r is not complete."
msgstr ""
#: xmlschema/validators/exceptions.py:443
#, python-format
msgid "Unexpected child with tag %r at position %d."
msgstr ""
#: xmlschema/validators/exceptions.py:459
#, python-format
msgid " Tag (%s) expected."
msgstr ""
#: xmlschema/validators/exceptions.py:461
#, python-format
msgid " Tag %s expected."
msgstr ""
#: xmlschema/validators/exceptions.py:463
#, python-format
msgid " Tag %r expected."
msgstr ""
#: xmlschema/validators/facets.py:87
msgid "{0!r} facet value is fixed to {1!r}"
msgstr ""
#: xmlschema/validators/facets.py:95
msgid "invalid type {!r} provided: {}"
msgstr ""
#: xmlschema/validators/facets.py:138 xmlschema/validators/facets.py:141
msgid "facet value can be only 'collapse'"
msgstr ""
#: xmlschema/validators/facets.py:143
msgid "facet value can be only 'replace' or 'collapse'"
msgstr ""
#: xmlschema/validators/facets.py:149
msgid "value contains tabs or newlines"
msgstr ""
#: xmlschema/validators/facets.py:158
msgid "value contains non collapsed white spaces"
msgstr ""
#: xmlschema/validators/facets.py:184
msgid "base facet has a different length ({})"
msgstr ""
#: xmlschema/validators/facets.py:195
msgid "length has to be {!r}"
msgstr ""
#: xmlschema/validators/facets.py:222
msgid "base facet has a greater min length ({})"
msgstr ""
#: xmlschema/validators/facets.py:233
msgid "value length cannot be lesser than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:260
msgid "base type has a lesser max length ({})"
msgstr ""
#: xmlschema/validators/facets.py:271
msgid "value length cannot be greater than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:305 xmlschema/validators/facets.py:346
#: xmlschema/validators/facets.py:389 xmlschema/validators/facets.py:428
msgid "invalid restriction: {}"
msgstr ""
#: xmlschema/validators/facets.py:312
msgid "value has to be greater or equal than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:350
msgid "invalid restriction: {} is also the maximum"
msgstr ""
#: xmlschema/validators/facets.py:356
msgid "value has to be greater than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:394
msgid "value has to be less than or equal than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:432
msgid "invalid restriction: {} is also the minimum"
msgstr ""
#: xmlschema/validators/facets.py:438
msgid "value has to be lesser than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:475 xmlschema/validators/facets.py:537
msgid "invalid restriction: base value is lower ({})"
msgstr ""
#: xmlschema/validators/facets.py:488
msgid "the number of digits has to be lesser or equal than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:516
msgid ""
"fractionDigits facet can be applied only to types derived from xs:decimal"
msgstr ""
#: xmlschema/validators/facets.py:532
msgid "fractionDigits facet value must be 0 for types derived from xs:integer"
msgstr ""
#: xmlschema/validators/facets.py:549
msgid "the number of fraction digits has to be lesser or equal than {!r}"
msgstr ""
#: xmlschema/validators/facets.py:579
msgid "invalid restriction from {!r}"
msgstr ""
#: xmlschema/validators/facets.py:585
msgid "time zone required for value {!r}"
msgstr ""
#: xmlschema/validators/facets.py:593
msgid "time zone prohibited for value {!r}"
msgstr ""
#: xmlschema/validators/facets.py:643
msgid "value {!r} must match a notation declaration"
msgstr ""
#: xmlschema/validators/facets.py:701
msgid "value must be one of {!r}"
msgstr ""
#: xmlschema/validators/facets.py:798
msgid "value doesn't match any pattern of {!r}"
msgstr ""
#: xmlschema/validators/facets.py:849
msgid "missing attribute 'test'"
msgstr ""
#: xmlschema/validators/facets.py:879
msgid "value is not true with test path {!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:142
msgid "multiple redefinition for {} {!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:157
msgid "circular redefinition for {} {!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:262
msgid "can't change attribute {!r} of a global maps instance"
msgstr ""
#: xmlschema/validators/global_maps.py:324
msgid "wrong tag {!r} for an XSD global definition/declaration"
msgstr ""
#: xmlschema/validators/global_maps.py:382
msgid "{0!r} cannot substitute {1!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:684
msgid "defaultAttributes={0!r} doesn't match any attribute group of {1!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:731
msgid "global maps main validator is not registered"
msgstr ""
#: xmlschema/validators/global_maps.py:744
msgid "schema {} does not belong to namespace {!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:748
msgid "duplicate of schema {} found in namespace {!r}"
msgstr ""
#: xmlschema/validators/global_maps.py:753
msgid "registered schemas do not match namespace mapped schemas"
msgstr ""
#: xmlschema/validators/global_maps.py:773
msgid "circularity found for substitution group with head element {}"
msgstr ""
#: xmlschema/validators/global_maps.py:778
msgid "global group not built!"
msgstr ""
#: xmlschema/validators/global_maps.py:785
msgid "the redefined group is an illegal restriction"
msgstr ""
#: xmlschema/validators/global_maps.py:801
msgid "the derived group is an illegal restriction"
msgstr ""
#: xmlschema/validators/global_maps.py:811
msgid "restriction has an open content but base type has not"
msgstr ""
#: xmlschema/validators/global_maps.py:817
msgid ""
"can't verify the content model of {!r} due to exceeding of maximum recursion "
"depth"
msgstr ""
#: xmlschema/validators/groups.py:399
msgid "{!r} is not a particle of the model group"
msgstr ""
#: xmlschema/validators/groups.py:481 xmlschema/validators/groups.py:521
msgid "attribute 'name' not allowed in a local group"
msgstr ""
#: xmlschema/validators/groups.py:490
#, python-format
msgid "missing group %r"
msgstr ""
#: xmlschema/validators/groups.py:500 xmlschema/validators/groups.py:552
msgid "maxOccurs must be 1 for 'all' model groups"
msgstr ""
#: xmlschema/validators/groups.py:503 xmlschema/validators/groups.py:555
#: xmlschema/validators/groups.py:1243
msgid "minOccurs must be (0 | 1) for 'all' model groups"
msgstr ""
#: xmlschema/validators/groups.py:506
msgid "in XSD 1.0 an 'all' model group cannot be nested"
msgstr ""
#: xmlschema/validators/groups.py:525 xmlschema/validators/groups.py:535
msgid "attribute 'minOccurs' not allowed in a global group"
msgstr ""
#: xmlschema/validators/groups.py:528 xmlschema/validators/groups.py:538
msgid "attribute 'maxOccurs' not allowed in a global group"
msgstr ""
#: xmlschema/validators/groups.py:566
msgid "'all' model can contain only elements"
msgstr ""
#: xmlschema/validators/groups.py:576 xmlschema/validators/groups.py:1259
msgid "missing attribute 'ref' in local group"
msgstr ""
#: xmlschema/validators/groups.py:585
msgid "'all' model can appears only at 1st level of a model group"
msgstr ""
#: xmlschema/validators/groups.py:593
msgid "Redefined group reference can't have minOccurs/maxOccurs other than 1"
msgstr ""
#: xmlschema/validators/groups.py:597 xmlschema/validators/groups.py:1281
#, python-format
msgid "Circular definition detected for group %r"
msgstr ""
#: xmlschema/validators/groups.py:853
#, python-format
msgid "substitution of %r is blocked"
msgstr ""
#: xmlschema/validators/groups.py:906
msgid "usage of {0!r} with type {1} is blocked by head element"
msgstr ""
#: xmlschema/validators/groups.py:931
msgid "{0!r} that matches {1!r} is not consistent with local declaration {2!r}"
msgstr ""
#: xmlschema/validators/groups.py:937
msgid "Maybe a not equivalent type table between elements {0!r} and {1!r}."
msgstr ""
#: xmlschema/validators/groups.py:966
msgid "an empty 'choice' group with minOccurs > 0 cannot validate any content"
msgstr ""
#: xmlschema/validators/groups.py:977 xmlschema/validators/groups.py:1211
msgid "character data between child elements not allowed"
msgstr ""
#: xmlschema/validators/groups.py:990
#, python-format
msgid "XML data depth exceeded (MAX_XML_DEPTH=%r)"
msgstr ""
#: xmlschema/validators/groups.py:1168
msgid "{!r} does not match any declared element of the model group"
msgstr ""
#: xmlschema/validators/groups.py:1171
msgid "{0} has an unknown prefix {1!r}"
msgstr ""
#: xmlschema/validators/groups.py:1206
msgid "wrong content type {!r}"
msgstr ""
#: xmlschema/validators/groups.py:1240
msgid "maxOccurs must be (0 | 1) for 'all' model groups"
msgstr ""
#: xmlschema/validators/groups.py:1269
#, python-brace-format
msgid "an xs:{0} group cannot include a reference to an xs:{1} group"
msgstr ""
#: xmlschema/validators/groups.py:1276
msgid "Redefined group reference cannot have minOccurs/maxOccurs other than 1"
msgstr ""
#: xmlschema/validators/helpers.py:50
#, python-format
msgid "wrong value %r for attribute %r"
msgstr ""
#: xmlschema/validators/helpers.py:79
msgid "value is not a valid xs:decimal"
msgstr ""
#: xmlschema/validators/helpers.py:85
msgid "value is not an xs:QName"
msgstr ""
#: xmlschema/validators/helpers.py:91 xmlschema/validators/helpers.py:97
#: xmlschema/validators/helpers.py:103 xmlschema/validators/helpers.py:109
#: xmlschema/validators/helpers.py:115 xmlschema/validators/helpers.py:121
#: xmlschema/validators/helpers.py:127 xmlschema/validators/helpers.py:133
msgid "value must be {:s}"
msgstr ""
#: xmlschema/validators/helpers.py:139
msgid "value must be negative"
msgstr ""
#: xmlschema/validators/helpers.py:145
msgid "value must be positive"
msgstr ""
#: xmlschema/validators/helpers.py:151
msgid "value must be non positive"
msgstr ""
#: xmlschema/validators/helpers.py:157
msgid "value must be non negative"
msgstr ""
#: xmlschema/validators/helpers.py:164
msgid "not an hexadecimal number"
msgstr ""
#: xmlschema/validators/helpers.py:177
msgid "not a base64 encoding"
msgstr ""
#: xmlschema/validators/helpers.py:182
msgid "no value is allowed for xs:error type"
msgstr ""
#: xmlschema/validators/helpers.py:192
msgid "{!r} is not a boolean value"
msgstr ""
#: xmlschema/validators/models.py:144
msgid ""
"Element Declarations Consistent violation between {0!r} and {1!r}: match the "
"same name but with different types"
msgstr ""
#: xmlschema/validators/models.py:158
msgid "{0!r} and {1!r} overlap and are in the same {2!r} group"
msgstr ""
#: xmlschema/validators/models.py:170
msgid "Unique Particle Attribution violation between {0!r} and {1!r}"
msgstr ""
#: xmlschema/validators/notations.py:36
msgid "a notation declaration must be global"
msgstr ""
#: xmlschema/validators/notations.py:40
msgid "a notation must have a 'name' attribute"
msgstr ""
#: xmlschema/validators/notations.py:43
msgid "a notation must have a 'public' or a 'system' attribute"
msgstr ""
#: xmlschema/validators/particles.py:142
msgid "minOccurs value is not an integer value"
msgstr ""
#: xmlschema/validators/particles.py:146
msgid "minOccurs value must be a non negative integer"
msgstr ""
#: xmlschema/validators/particles.py:154
msgid "minOccurs must be lesser or equal than maxOccurs"
msgstr ""
#: xmlschema/validators/particles.py:162
msgid "maxOccurs value must be a non negative integer or 'unbounded'"
msgstr ""
#: xmlschema/validators/particles.py:166
msgid "maxOccurs must be 'unbounded' or greater than minOccurs"
msgstr ""
#: xmlschema/validators/schemas.py:146
msgid "XSD_VERSION must be '1.0' or '1.1'"
msgstr ""
#: xmlschema/validators/schemas.py:323
msgid "no XSD source provided!"
msgstr ""
#: xmlschema/validators/schemas.py:349
msgid "the attribute 'targetNamespace' cannot be an empty string"
msgstr ""
#: xmlschema/validators/schemas.py:352
msgid ""
"targetNamespace of XSD resource {} differs from what expected (found {!r} "
"instead of {!r})"
msgstr ""
#: xmlschema/validators/schemas.py:374
#, python-brace-format
msgid "The namespace {nm.XMLNS_NAMESPACE} cannot be used as 'targetNamespace'"
msgstr ""
#: xmlschema/validators/schemas.py:443
#, python-format
msgid "'global_maps' argument must be an %r instance"
msgstr ""
#: xmlschema/validators/schemas.py:510
msgid "can't change the global maps instance of a class meta-schema"
msgstr ""
#: xmlschema/validators/schemas.py:514
msgid ""
"can't change the global maps instance of a schema that is the main validator "
"of another global maps instance"
msgstr ""
#: xmlschema/validators/schemas.py:528
msgid "can't set the meta_schema instance of a schema"
msgstr ""
#: xmlschema/validators/schemas.py:536 xmlschema/validators/schemas.py:540
msgid "can't change the {!r} attribute of a schema"
msgstr ""
#: xmlschema/validators/schemas.py:738
#, python-format
msgid "meta-schema unavailable for %r"
msgstr ""
#: xmlschema/validators/schemas.py:949
msgid "the namespace {!r} is not loaded"
msgstr ""
#: xmlschema/validators/schemas.py:1083
msgid "invalid attribute vc:minVersion value"
msgstr ""
#: xmlschema/validators/schemas.py:1092
msgid "invalid attribute vc:maxVersion value"
msgstr ""
#: xmlschema/validators/schemas.py:1168 xmlschema/validators/schemas.py:1175
msgid "{!r} is not a valid value for xs:QName"
msgstr ""
#: xmlschema/validators/schemas.py:1184
msgid "prefix {!r} not found in namespace map"
msgstr ""
#: xmlschema/validators/schemas.py:1192
msgid ""
"the QName {!r} is mapped to no namespace, but this requires that there is an "
"xs:import statement in the schema without the 'namespace' attribute."
msgstr ""
#: xmlschema/validators/schemas.py:1201
msgid ""
"the QName {!r} is mapped to the namespace {!r}, but this namespace has not "
"an xs:import statement in the schema."
msgstr ""
#: xmlschema/validators/schemas.py:1365 xmlschema/validators/schemas.py:1422
#: xmlschema/validators/schemas.py:1601
msgid "{!r} is not an element of the schema"
msgstr ""
#: xmlschema/validators/schemas.py:1379
msgid "the provided path selects nothing to validate"
msgstr ""
#: xmlschema/validators/schemas.py:1395
#, python-format
msgid "IDREF %r not found in XML document"
msgstr ""
#: xmlschema/validators/schemas.py:1703
msgid "encoding needs at least one XSD element declaration"
msgstr ""
#: xmlschema/validators/schemas.py:1745
#, python-format
msgid "the path %r doesn't match any element of the schema!"
msgstr ""
#: xmlschema/validators/schemas.py:1747
msgid ""
"unable to select an element for encoding data, provide a valid 'path' "
"argument."
msgstr ""
#: xmlschema/validators/simple_types.py:120
#, python-format
msgid "wrong value %r for facet xs:whiteSpace"
msgstr ""
#: xmlschema/validators/simple_types.py:162
msgid "facets not allowed for a direct derivation of xs:anySimpleType"
msgstr ""
#: xmlschema/validators/simple_types.py:166
msgid "facets not allowed for a direct content derivation of xs:anySimpleType"
msgstr ""
#: xmlschema/validators/simple_types.py:172
msgid "one or more facets are not applicable, admitted set is {!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:178
#, python-format
msgid "facet group must have the same base type: %r"
msgstr ""
#: xmlschema/validators/simple_types.py:188
msgid "'length' value must be non a negative integer"
msgstr ""
#: xmlschema/validators/simple_types.py:192
msgid "'minLength' value must be less than or equal to 'length'"
msgstr ""
#: xmlschema/validators/simple_types.py:199
msgid "cannot specify both 'length' and 'minLength'"
msgstr ""
#: xmlschema/validators/simple_types.py:204
msgid "'maxLength' value must be greater or equal to 'length'"
msgstr ""
#: xmlschema/validators/simple_types.py:212
msgid "cannot specify both 'length' and 'maxLength'"
msgstr ""
#: xmlschema/validators/simple_types.py:221
msgid "'minLength' value must be a non negative integer"
msgstr ""
#: xmlschema/validators/simple_types.py:224
msgid "'maxLength' value is less than 'minLength'"
msgstr ""
#: xmlschema/validators/simple_types.py:227
msgid "'minLength' has a lesser value than parent"
msgstr ""
#: xmlschema/validators/simple_types.py:230
msgid "'minLength' has a greater value than parent 'maxLength'"
msgstr ""
#: xmlschema/validators/simple_types.py:235
msgid "'maxLength' value must be a non negative integer"
msgstr ""
#: xmlschema/validators/simple_types.py:238
msgid "'maxLength' has a lesser value than parent 'minLength'"
msgstr ""
#: xmlschema/validators/simple_types.py:241
msgid "'maxLength' has a greater value than parent"
msgstr ""
#: xmlschema/validators/simple_types.py:252
msgid "cannot specify both 'minInclusive' and 'minExclusive'"
msgstr ""
#: xmlschema/validators/simple_types.py:255
msgid "'minInclusive' must be less or equal to 'maxInclusive'"
msgstr ""
#: xmlschema/validators/simple_types.py:258
msgid "'minInclusive' must be lesser than 'maxExclusive'"
msgstr ""
#: xmlschema/validators/simple_types.py:263
msgid "'minExclusive' must be lesser than 'maxInclusive'"
msgstr ""
#: xmlschema/validators/simple_types.py:266
msgid "'minExclusive' must be less or equal to 'maxExclusive'"
msgstr ""
#: xmlschema/validators/simple_types.py:270
msgid "cannot specify both 'maxInclusive' and 'maxExclusive'"
msgstr ""
#: xmlschema/validators/simple_types.py:276
msgid ""
"fractionDigits facet value cannot be lesser than the value of totalDigits "
"facet"
msgstr ""
#: xmlschema/validators/simple_types.py:282
msgid ""
"totalDigits facet value cannot be greater than the value of the same facet "
"in the base type"
msgstr ""
#: xmlschema/validators/simple_types.py:291
#, python-format
msgid ""
"the explicitTimezone facet value cannot be changed if the base type has the "
"same facet with value %r"
msgstr ""
#: xmlschema/validators/simple_types.py:691
msgid "value is not an instance of {!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:713
#: xmlschema/validators/simple_types.py:805
#: xmlschema/validators/simple_types.py:1167
msgid "invalid value {!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:740
#, python-format
msgid "unmapped prefix %r in a QName"
msgstr ""
#: xmlschema/validators/simple_types.py:753
#: xmlschema/validators/simple_types.py:764
msgid "duplicated xs:ID value {!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:759
msgid "no more than one attribute of type ID should be present in an element"
msgstr ""
#: xmlschema/validators/simple_types.py:783
msgid "boolean value {0!r} requires a {1!r} decoder"
msgstr ""
#: xmlschema/validators/simple_types.py:789
msgid "{0!r} is not an instance of {1!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:892
msgid "ambiguous list type declaration"
msgstr ""
#: xmlschema/validators/simple_types.py:900
msgid "missing list type declaration"
msgstr ""
#: xmlschema/validators/simple_types.py:916
#, python-format
msgid "'final' value of the itemType %r forbids derivation by list"
msgstr ""
#: xmlschema/validators/simple_types.py:920
#: xmlschema/validators/simple_types.py:1093
#: xmlschema/validators/simple_types.py:1376
msgid "cannot use xs:anyAtomicType as base type of a user-defined type"
msgstr ""
#: xmlschema/validators/simple_types.py:926
#, python-format
msgid "%r: a list must be based on atomic data types"
msgstr ""
#: xmlschema/validators/simple_types.py:973
msgid "unexpected nested list item {!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:1080
msgid "a {0!r} required, not {1!r}"
msgstr ""
#: xmlschema/validators/simple_types.py:1084
#, python-format
msgid "'final' value of the memberTypes %r forbids derivation by union"
msgstr ""
#: xmlschema/validators/simple_types.py:1090
msgid "missing xs:union type declarations"
msgstr ""
#: xmlschema/validators/simple_types.py:1205
msgid "no type suitable for encoding the object"
msgstr ""
#: xmlschema/validators/simple_types.py:1249
msgid "'name' attribute in a local simpleType definition"
msgstr ""
#: xmlschema/validators/simple_types.py:1289
#, python-format
msgid "wrong base type %r, an atomic type required"
msgstr ""
#: xmlschema/validators/simple_types.py:1295
msgid "an xs:simpleType definition expected"
msgstr ""
#: xmlschema/validators/simple_types.py:1300
msgid ""
"when a complexType with simpleContent restricts a complexType with mixed and "
"with emptiable content then a simpleType child declaration is required"
msgstr ""
#: xmlschema/validators/simple_types.py:1305
#, python-format
msgid "simpleType restriction of %r is not allowed"
msgstr ""
#: xmlschema/validators/simple_types.py:1314
msgid "unexpected tag after attribute declarations"
msgstr ""
#: xmlschema/validators/simple_types.py:1319
msgid "duplicated simpleType declaration"
msgstr ""
#: xmlschema/validators/simple_types.py:1345
msgid "restriction with 'base' attribute and simpleType declaration"
msgstr ""
#: xmlschema/validators/simple_types.py:1353
#, python-format
msgid "unexpected tag %r in restriction"
msgstr ""
#: xmlschema/validators/simple_types.py:1359
#, python-format
msgid "multiple %r constraint facet"
msgstr ""
#: xmlschema/validators/simple_types.py:1371
msgid "missing base type in restriction"
msgstr ""
#: xmlschema/validators/simple_types.py:1373
#, python-format
msgid "'final' value of the baseType %r forbids derivation by restriction"
msgstr ""
#: xmlschema/validators/simple_types.py:1430
#: xmlschema/validators/simple_types.py:1453
#, python-format
msgid ""
"wrong base type %r: a simpleType or a complexType with simple or mixed "
"content required"
msgstr ""
#: xmlschema/validators/validation.py:55
msgid "validation mode must be a string"
msgstr ""
#: xmlschema/validators/validation.py:57
#, python-format
msgid "validation mode can be 'strict', 'lax' or 'skip': %r"
msgstr ""
#: xmlschema/validators/validation.py:179
msgid "attribute {0}={1!r}: {2}"
msgstr ""
#: xmlschema/validators/wildcards.py:92
#, python-format
msgid "wrong value %r in 'namespace' attribute"
msgstr ""
#: xmlschema/validators/wildcards.py:99
#, python-format
msgid "wrong value %r for 'processContents' attribute"
msgstr ""
#: xmlschema/validators/wildcards.py:107
msgid "'namespace' and 'notNamespace' attributes are mutually exclusive"
msgstr ""
#: xmlschema/validators/wildcards.py:118
#, python-format
msgid "wrong value %r in 'notNamespace' attribute"
msgstr ""
#: xmlschema/validators/wildcards.py:134
msgid "wrong value for 'notQName' attribute"
msgstr ""
#: xmlschema/validators/wildcards.py:141
#, python-format
msgid "unmapped QName in 'notQName' attribute: %s"
msgstr ""
#: xmlschema/validators/wildcards.py:145
#, python-format
msgid "wrong QName format in 'notQName' attribute: %s"
msgstr ""
#: xmlschema/validators/wildcards.py:153
msgid "the namespace of each QName in notQName is allowed by notNamespace"
msgstr ""
#: xmlschema/validators/wildcards.py:157
msgid "names in notQName must be in namespaces that are allowed"
msgstr ""
#: xmlschema/validators/wildcards.py:334
msgid "not expressible wildcard namespace union: {0!r} V {1!r}:"
msgstr ""
#: xmlschema/validators/wildcards.py:502 xmlschema/validators/wildcards.py:545
msgid "element {!r} is not allowed here"
msgstr ""
#: xmlschema/validators/wildcards.py:510 xmlschema/validators/wildcards.py:552
#: xmlschema/validators/wildcards.py:691 xmlschema/validators/wildcards.py:720
msgid "unavailable namespace {!r}"
msgstr ""
#: xmlschema/validators/wildcards.py:673 xmlschema/validators/wildcards.py:703
#, python-format
msgid "attribute %r not allowed"
msgstr ""
#: xmlschema/validators/wildcards.py:685 xmlschema/validators/wildcards.py:714
#, python-format
msgid "attribute %r not found"
msgstr ""
#: xmlschema/validators/wildcards.py:875
#, python-format
msgid "wrong value %r for 'mode' attribute"
msgstr ""
#: xmlschema/validators/wildcards.py:881
msgid ""
"an openContent with mode='none' cannot have an <xs:any> child declaration"
msgstr ""
#: xmlschema/validators/wildcards.py:885
msgid "an <xs:any> child declaration is required"
msgstr ""
#: xmlschema/validators/wildcards.py:919
msgid "defaultOpenContent must be a child of the schema"
msgstr ""
#: xmlschema/validators/wildcards.py:922
msgid "the attribute 'mode' of a defaultOpenContent cannot be 'none'"
msgstr ""
#: xmlschema/validators/wildcards.py:925
msgid "a defaultOpenContent declaration cannot be empty"
msgstr ""
#: xmlschema/validators/xsdbase.py:125
#, python-format
msgid "%r is not built"
msgstr ""
#: xmlschema/validators/xsdbase.py:130
#, python-format
msgid "validation mode is 'strict' and %r is not built"
msgstr ""
#: xmlschema/validators/xsdbase.py:133
#, python-format
msgid "validation mode is 'strict' and %r is not valid"
msgstr ""
#: xmlschema/validators/xsdbase.py:249
msgid ""
"wrong value {0!r} for 'xpathDefaultNamespace' attribute, can be (anyURI | "
"{1})."
msgstr ""
#: xmlschema/validators/xsdbase.py:436
#, python-format
msgid "missing attribute 'name' in a global %r"
msgstr ""
#: xmlschema/validators/xsdbase.py:439
#, python-format
msgid "missing both attributes 'name' and 'ref' in local %r"
msgstr ""
#: xmlschema/validators/xsdbase.py:442
msgid "attributes 'name' and 'ref' are mutually exclusive"
msgstr ""
#: xmlschema/validators/xsdbase.py:445
#, python-format
msgid "attribute 'ref' not allowed in a global %r"
msgstr ""
#: xmlschema/validators/xsdbase.py:454
msgid "a reference component cannot have child definitions/declarations"
msgstr ""
#: xmlschema/validators/xsdbase.py:469
msgid "too many XSD components, unexpected {0!r} found at position {1}"
msgstr ""
#: xmlschema/validators/xsdbase.py:486
#, python-brace-format
msgid "The namespace {XMLNS_NAMESPACE} cannot be used as 'targetNamespace'"
msgstr ""
#: xmlschema/validators/xsdbase.py:490
msgid ""
"attribute 'name' must be present when 'targetNamespace' attribute is provided"
msgstr ""
#: xmlschema/validators/xsdbase.py:494
msgid ""
"attribute 'form' must be absent when 'targetNamespace' attribute is provided"
msgstr ""
#: xmlschema/validators/xsdbase.py:499
#, python-format
msgid "a global %s must have the same namespace as its parent schema"
msgstr ""
#: xmlschema/validators/xsdbase.py:507
msgid ""
"a declaration contained in a global complexType must have the same namespace "
"as its parent schema"
msgstr ""
#: xmlschema/validators/xsdbase.py:632
msgid "parent circularity from {}"
msgstr ""
#: xmlschema/validators/identities.py:89
msgid "'xpath' attribute required"
msgstr ""
#: xmlschema/validators/identities.py:104
msgid "invalid XPath expression for an {}"
msgstr ""
#: xmlschema/validators/identities.py:173
msgid "missing required attribute 'name'"
msgstr ""
#: xmlschema/validators/identities.py:181
msgid "missing 'selector' declaration"
msgstr ""
#: xmlschema/validators/identities.py:198
msgid "unknown identity constraint {!r}"
msgstr ""
#: xmlschema/validators/identities.py:203
msgid "attribute 'ref' points to a different kind constraint"
msgstr ""
#: xmlschema/validators/identities.py:231
msgid "selector xpath expression can only select elements"
msgstr ""
#: xmlschema/validators/identities.py:286
msgid "missing required attribute 'refer'"
msgstr ""
#: xmlschema/validators/identities.py:316
#, python-format
msgid "key/unique identity constraint %r is missing"
msgstr ""
#: xmlschema/validators/identities.py:321
#, python-format
msgid "reference to a non key/unique identity constraint %r"
msgstr ""
#: xmlschema/validators/identities.py:324
msgid "field cardinality mismatch between {0!r} and {1!r}"
msgstr ""
#: xmlschema/validators/identities.py:401
msgid "duplicated value {0!r} for {1!r}"
msgstr ""
#: xmlschema/validators/identities.py:495
#, python-format
msgid "%r field selects multiple values!"
msgstr ""
#: xmlschema/validators/identities.py:501
#, python-format
msgid "%r field selects a %r!"
msgstr ""
#: xmlschema/validators/identities.py:510
#, python-format
msgid "%r field doesn't have a simple type!"
msgstr ""
#: xmlschema/validators/identities.py:542
msgid "missing key field {0!r} for {1!r}"
msgstr ""
#: xmlschema/converters/__init__.py:37
msgid "'converter' argument must be a {0!r} subclass or instance: {1!r}"
msgstr ""
|