-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
1,399 additions
and
728 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
from babel.messages import frontend as babel | ||
from setuptools import setup | ||
|
||
setup() | ||
setup( | ||
cmdclass={ | ||
'compile_catalog': babel.compile_catalog, | ||
'extract_messages': babel.extract_messages, | ||
'init_catalog': babel.init_catalog, | ||
'update_catalog': babel.update_catalog, | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,155 +1,172 @@ | ||
# Translations template for colander. | ||
# Copyright (C) 2016 ORGANIZATION | ||
# Copyright (C) 2023 ORGANIZATION | ||
# This file is distributed under the same license as the colander project. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: colander 1.3.1\n" | ||
"Project-Id-Version: colander 2.0\n" | ||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" | ||
"POT-Creation-Date: 2016-09-18 22:57+0200\n" | ||
"POT-Creation-Date: 2023-01-02 19:48-0600\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=utf-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Generated-By: Babel 2.3.4\n" | ||
"Generated-By: Babel 2.11.0\n" | ||
|
||
#: colander/__init__.py:294 | ||
#: src/colander/__init__.py:319 | ||
msgid "Invalid value" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:340 | ||
#: src/colander/__init__.py:375 | ||
msgid "String does not match expected pattern" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:359 | ||
#: src/colander/__init__.py:405 | ||
msgid "Invalid email address" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:387 | ||
#: src/colander/__init__.py:434 | ||
msgid "Not a data URL" | ||
msgstr "" | ||
|
||
#: src/colander/__init__.py:435 | ||
msgid "Invalid MIME type" | ||
msgstr "" | ||
|
||
#: src/colander/__init__.py:436 | ||
msgid "Invalid Base64 encoded data" | ||
msgstr "" | ||
|
||
#: src/colander/__init__.py:494 | ||
msgid "${val} is less than minimum value ${min}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:388 | ||
#: src/colander/__init__.py:495 | ||
msgid "${val} is greater than maximum value ${max}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:435 | ||
#: src/colander/__init__.py:545 | ||
msgid "Shorter than minimum length ${min}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:436 | ||
#: src/colander/__init__.py:546 | ||
msgid "Longer than maximum length ${max}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:464 | ||
#: src/colander/__init__.py:569 | ||
msgid "\"${val}\" is not one of ${choices}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:479 | ||
#: src/colander/__init__.py:593 | ||
msgid "\"${val}\" must not be one of ${choices}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:501 | ||
#: src/colander/__init__.py:616 | ||
msgid "One or more of the choices you made was not acceptable" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:523 colander/__init__.py:528 | ||
#: src/colander/__init__.py:639 src/colander/__init__.py:648 | ||
msgid "\"${val}\" is not a valid credit card number" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:549 | ||
#: src/colander/__init__.py:720 | ||
msgid "Must be a URL" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:553 | ||
#: src/colander/__init__.py:731 | ||
msgid "Must be a file:// URI scheme" | ||
msgstr "" | ||
|
||
#: src/colander/__init__.py:737 | ||
msgid "Invalid UUID string" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:650 | ||
#: src/colander/__init__.py:839 | ||
msgid "\"${val}\" is not a mapping type: ${err}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:694 | ||
#: src/colander/__init__.py:889 | ||
msgid "Unrecognized keys in mapping: \"${val}\"" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:789 colander/__init__.py:1020 | ||
#: src/colander/__init__.py:990 src/colander/__init__.py:1230 | ||
msgid "\"${val}\" is not iterable" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:797 | ||
#: src/colander/__init__.py:998 | ||
msgid "\"${val}\" has an incorrect number of elements (expected ${exp}, was ${was})" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:936 colander/__init__.py:967 | ||
#: src/colander/__init__.py:1141 src/colander/__init__.py:1172 | ||
msgid "${cstruct} is not iterable" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1254 | ||
#: src/colander/__init__.py:1462 | ||
msgid "${val} cannot be serialized: ${err}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1275 | ||
#: src/colander/__init__.py:1484 | ||
msgid "${val} is not a string: ${err}" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1295 colander/__init__.py:1306 | ||
#: src/colander/__init__.py:1507 src/colander/__init__.py:1518 | ||
msgid "\"${val}\" is not a number" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1454 | ||
#: src/colander/__init__.py:1697 | ||
msgid "${val} is not a string" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1465 | ||
#: src/colander/__init__.py:1709 | ||
msgid "\"${val}\" is neither in (${false_choices}) nor in (${true_choices})" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1525 colander/__init__.py:1542 colander/__init__.py:1552 | ||
#: src/colander/__init__.py:1775 src/colander/__init__.py:1794 | ||
#: src/colander/__init__.py:1806 | ||
msgid "relative name \"${val}\" irresolveable without package" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1582 | ||
#: src/colander/__init__.py:1843 | ||
msgid "\"${val}\" has no __name__" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1591 | ||
#: src/colander/__init__.py:1852 | ||
msgid "\"${val}\" is not a string" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1600 | ||
#: src/colander/__init__.py:1862 | ||
msgid "The dotted name \"${name}\" cannot be imported" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1648 colander/__init__.py:1722 | ||
#: src/colander/__init__.py:1915 src/colander/__init__.py:2005 | ||
msgid "Invalid date" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1662 | ||
#: src/colander/__init__.py:1932 | ||
msgid "\"${val}\" is not a datetime object" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1733 | ||
#: src/colander/__init__.py:2020 | ||
msgid "\"${val}\" is not a date object" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1794 | ||
#: src/colander/__init__.py:2085 | ||
msgid "Invalid time" | ||
msgstr "" | ||
|
||
#: colander/__init__.py:1804 | ||
#: src/colander/__init__.py:2096 | ||
msgid "\"${val}\" is not a time object" | ||
msgstr "" | ||
|
||
#: colander/tests/test_colander.py:334 colander/tests/test_colander.py:341 | ||
msgid "fail ${val}" | ||
#: src/colander/__init__.py:2161 src/colander/__init__.py:2177 | ||
msgid "\"${val}\" is not a valid \"${cls}\"" | ||
msgstr "" | ||
|
||
#: colander/tests/test_colander.py:537 | ||
msgid "${val}: ${choices}" | ||
#: src/colander/__init__.py:2297 | ||
msgid "Required" | ||
msgstr "" | ||
|
Oops, something went wrong.