mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch '4.x' into 9479_autodoc_mocked_target
This commit is contained in:
commit
33f70bea87
1
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
1
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@ -16,7 +16,6 @@ body:
|
||||
label: How to Reproduce
|
||||
description: Please provide steps to reproduce this bug.
|
||||
value: |
|
||||
<Paste your command-line here which cause the problem>
|
||||
```
|
||||
$ git clone https://github.com/.../some_project
|
||||
$ cd some_project
|
||||
|
2
CHANGES
2
CHANGES
@ -23,6 +23,8 @@ Bugs fixed
|
||||
|
||||
* #9487: autodoc: typehint for cached_property is not shown
|
||||
* #9509: autodoc: AttributeError is raised on failed resolving typehints
|
||||
* #9518: autodoc: autodoc_docstring_signature does not effect to ``__init__()``
|
||||
and ``__new__()``
|
||||
* #9481: autosummary: some warnings contain non-existing filenames
|
||||
* #9481: c domain: some warnings contain non-existing filenames
|
||||
* #9481: cpp domain: some warnings contain non-existing filenames
|
||||
|
@ -2238,6 +2238,12 @@ class MethodDocumenter(DocstringSignatureMixin, ClassLevelDocumenter): # type:
|
||||
return None
|
||||
|
||||
def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]:
|
||||
if self._new_docstrings is not None:
|
||||
# docstring already returned previously, then modified by
|
||||
# `DocstringSignatureMixin`. Just return the previously-computed
|
||||
# result, so that we don't lose the processing done by
|
||||
# `DocstringSignatureMixin`.
|
||||
return self._new_docstrings
|
||||
if self.objpath[-1] == '__init__':
|
||||
docstring = getdoc(self.object, self.get_attr,
|
||||
self.config.autodoc_inherit_docstrings,
|
||||
@ -2252,15 +2258,13 @@ class MethodDocumenter(DocstringSignatureMixin, ClassLevelDocumenter): # type:
|
||||
else:
|
||||
return []
|
||||
elif self.objpath[-1] == '__new__':
|
||||
__new__ = self.get_attr(self.object, '__new__', None)
|
||||
if __new__:
|
||||
docstring = getdoc(__new__, self.get_attr,
|
||||
self.config.autodoc_inherit_docstrings,
|
||||
self.parent, self.object_name)
|
||||
if (docstring is not None and
|
||||
(docstring == object.__new__.__doc__ or # for pypy
|
||||
docstring.strip() == object.__new__.__doc__)): # for !pypy
|
||||
docstring = None
|
||||
docstring = getdoc(self.object, self.get_attr,
|
||||
self.config.autodoc_inherit_docstrings,
|
||||
self.parent, self.object_name)
|
||||
if (docstring is not None and
|
||||
(docstring == object.__new__.__doc__ or # for pypy
|
||||
docstring.strip() == object.__new__.__doc__)): # for !pypy
|
||||
docstring = None
|
||||
if docstring:
|
||||
tab_width = self.directive.state.document.settings.tab_width
|
||||
return [prepare_docstring(docstring, tabsize=tab_width)]
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "بحث"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "نتائج البحث"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "খুঁজুন"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "অনুসন্ধানের ফলাফল"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "cerca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Resultats de la Cerca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", pa"
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "hledat"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Výsledky vyhledávání"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr "Probíhá vyhledání"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Vyhledávání se připravuje..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Vyhledávání dokončeno, stránky odpovídající hledanému výrazu: %s."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", v "
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "chwilio"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Canlyniadau chwilio"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr "Yn chwilio"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Paratoi chwilio..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", yn "
|
||||
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n"
|
||||
@ -2808,29 +2808,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2838,71 +2838,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3303,12 +3303,12 @@ msgid "search"
|
||||
msgstr "søg"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Søgeresultater"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3374,12 +3374,12 @@ msgstr "Søger"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Forbereder søgning..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Søgning færdig, fandt %s sider der matcher søgeforespørgslen."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", i"
|
||||
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n"
|
||||
@ -2808,29 +2808,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2838,71 +2838,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3303,12 +3303,12 @@ msgid "search"
|
||||
msgstr "suchen"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Suchergebnisse"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3374,12 +3374,12 @@ msgstr "Suchen"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Suche wird vorbereitet..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", in "
|
||||
|
||||
|
Binary file not shown.
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n"
|
||||
@ -2807,29 +2807,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2837,71 +2837,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "δεν γνωρίζω ποιο δομοστοιχείο να εισάγω για αυτόματη τεκμηρίωση %r (προσπαθήστε να τοποθετήσετε μία οδηγία \"module\" ή \"currentmodule\" στο έγγραφο, ή να δώσετε ένα σαφές όνομα δομοστοιχείου)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "\"::\" στο όνομα automodule δεν βγάζει νόημα"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "ορίσματα υπογραφής ή επιστροφή σημείωσης η οποία δόθηκε για το automodule %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ πρέπει να είναι λίστα στοιχειοσειράς, όχι %r (στο δομοστοιχείο %s) -- θα αγνοηθεί το __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Βάσεις: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3302,12 +3302,12 @@ msgid "search"
|
||||
msgstr "αναζήτηση"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Αποτελέσματα Αναζήτησης"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3373,12 +3373,12 @@ msgstr "Εκτελείται η αναζήτηση"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Προετοιμασία αναζήτησης..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Η αναζήτηση ολοκληρώθηκε, βρέθηκε/αν %s σελίδα/ες με βάση τους όρους αναζήτησης."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", στο "
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "serĉu"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n"
|
||||
@ -2811,29 +2811,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "firma inválida para auto%s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "error al formatear argumentos para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "falta el atributo %s en el objeto %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autodoc: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2841,71 +2841,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "no sabe qué módulo importar para el autodocumento %r (intente colocar una directiva \"module\" o \"currentmodule\" en el documento o dar un nombre explícito al módulo)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "\"::\" en el nombre del automodule no tiene sentido"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "argumentos de firma o anotación de retorno dada para automodule %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ debe ser una lista de cadenas, no %r (en el módulo %s) -- ignorando __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Bases: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3306,12 +3306,12 @@ msgid "search"
|
||||
msgstr "buscar"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Resultados de la búsqueda"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3377,12 +3377,12 @@ msgstr "Buscando"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Preparando búsqueda..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Búsqueda finalizada, encontró %s página(s) acorde con la consulta de búsqueda."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", en "
|
||||
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n"
|
||||
@ -2808,29 +2808,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2838,71 +2838,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Põlvnemine: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3303,12 +3303,12 @@ msgid "search"
|
||||
msgstr "otsi"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Otsingu tulemused"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3374,12 +3374,12 @@ msgstr "Otsimine"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Otsingu ettevalmistamine..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Otsingu tulemusena leiti %s leht(e)."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "bilatu"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Bilaketa emaitzak"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n"
|
||||
@ -2808,29 +2808,29 @@ msgstr "مقدار نامعتبر برای گزینهی ترتیب اعضا (
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr "مقدار نامعتبر برای گزینهی «از مستندات کلاس» class-doc-from:%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "امضای ناشناخته برای %s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "خطا در قالب بندی نشانوند برای %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "ویژگی ناموجود %s در شیئ %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "مستندسازی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2838,71 +2838,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "مشخّص نیست کدام پیمانه را برای مستندسازی خودکار فراخوان کند %r (سعی کنید دستورالعمل «module» یا «currentmodule» را در سند قرار دهید، یا یک نام واضح برای پیمانه ارائه دهید)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr "خطا در قالب بندی امضا برای %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "\"::\" در پیمانهی خودکار معنی نمیدهد"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "نشانوندهای امضا یا یادداشت مقدار برگشتی داده شده برای پیمانهی خودکار %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ باید لیستی از رشتهمتن ها باشد، نه %r (در پیمانهی %s) -- __all__ نادیده گرفته میشود"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr "ویژگی نایاب در گزینهی :members: قید شده: پیمانهی:%s، ویژگی %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای سازندهی شیئ برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "پایه ها:%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "نام جانشین %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "نام جانشین نوع متغیر(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3303,12 +3303,12 @@ msgid "search"
|
||||
msgstr "جستجو"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "نتایج جستجو"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3374,12 +3374,12 @@ msgstr "در حال جست و جو"
|
||||
msgid "Preparing search..."
|
||||
msgstr "آماده سازی جست و جو..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "جستجو پایان یافت و %sصفحه نتایج مطابق جستار پیدا شدن."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr "، در "
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "etsi"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Etsinnän tulos"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -33,7 +33,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"
|
||||
@ -2830,29 +2830,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "signature invalide pour auto%s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "erreur pendant la mise en forme de l'argument %s:%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "attribut manquant %s dans l'objet %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autodoc : impossible de déterminer si %r est documenté; l'exception suivante a été levée :\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2860,71 +2860,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "module à importer pour auto-documenter %r est inconnu (essayer de placer une directive \"module\" ou \"currentmodule\" dans le document, ou de donner un nom de module explicite)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "\"::\" dans le nom d'automodule n'a pas de sens"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "arguments de signature ou annotation de return donnés pour l’automodule %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ devrait être une liste de chaînes, pas %r (dans module %s) -- __all__ sera ignoré"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Bases : %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "alias de %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3325,12 +3325,12 @@ msgid "search"
|
||||
msgstr "rechercher"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Résultats de la recherche"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3396,12 +3396,12 @@ msgstr "Recherche en cours"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Préparation de la recherche..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la recherche."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", dans"
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "חיפוש"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "תוצאות החיפוש"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n"
|
||||
@ -2808,29 +2808,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "स्वतः %s (%r) के लिए अमान्य हस्ताक्षर"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "%s गुण %s वस्तु में अनुपस्थित"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2838,71 +2838,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "पता नहीं है कि कौन सा प्रभाग स्वतःप्रलेखन %r के लिए आयात करना है (लेखपत्र में \"प्रभाग\" या \"वर्तमान-प्रभाग\" निर्देश रख कर देखें; अथवा स्पष्ट प्रभाग नाम देकर देखें)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "स्वतः प्रभाग नाम में \"::\" विवेकहीन है"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "स्वतः-प्रभाग %s के लिए हस्ताक्षर पद अथवा प्रत्युत्तरित टिप्पणी प्रदान की गई"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ अंतिम अक्षरमाला होनी चाहिए, न कि %r (%s प्रभाग में) -- __all__ की उपेक्षा की जाएगी"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "आधार: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3303,12 +3303,12 @@ msgid "search"
|
||||
msgstr "खोज"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "खोज परीणाम "
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3374,12 +3374,12 @@ msgstr "खोज जारी"
|
||||
msgid "Preparing search..."
|
||||
msgstr "खोज की तैयारी"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "खोज पूर्ण, खोज विषय के अनुकूल %s पृष्ठ मिला (मिले)."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", में "
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Osnovice: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "traži"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Rezultati pretrage"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr "Pretraživanje"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Priprema pretrage..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Pretraga završena, pronađeno %s stranica."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", u "
|
||||
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n"
|
||||
@ -2810,29 +2810,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2840,71 +2840,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3305,12 +3305,12 @@ msgid "search"
|
||||
msgstr "keresés"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Keresési Eredmények"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3376,12 +3376,12 @@ msgstr "Keresés folyamatban"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Felkészülés a keresésre..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", "
|
||||
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n"
|
||||
@ -2809,29 +2809,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "tanda tangan tidak valid untuk outo %s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "kesalahan saat memformat argumen untuk %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "atribut hilang %s dalam objek %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2839,71 +2839,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "tidak tahu modul mana yang akan diimpor untuk autodocumenting %r (coba letakkan pengarahan \"module\" atau \"currentmodule\" dalam dokumen, atau berikan nama modul yang eksplisit)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "\"::\" dalam nama automodule tidak masuk akal"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "argumen tanda tangan atau anotasi kembalian diberikan untuk automodule %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ harus berupa daftar string, bukan %r (dalam modul %s) -- mengabaikan __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Basis: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3304,12 +3304,12 @@ msgid "search"
|
||||
msgstr "pencarian"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Hasil Pencarian"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3375,12 +3375,12 @@ msgstr "Pencarian"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Penyiapkan pencarian..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", di"
|
||||
|
||||
|
@ -10,53 +10,53 @@ Documentation.addTranslations({
|
||||
"C API changes": "",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "",
|
||||
"Collapse sidebar": "",
|
||||
"Complete Table of Contents": "",
|
||||
"Complete Table of Contents": "Heildarefnisyfirlit",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
"General Index": "Almennt yfirlit",
|
||||
"Global Module Index": "",
|
||||
"Go": "",
|
||||
"Hide Search Matches": "",
|
||||
"Index": "",
|
||||
"Hide Search Matches": "Fela leitarni\u00f0urst\u00f6\u00f0ur",
|
||||
"Index": "Yfirlit",
|
||||
"Index – %(key)s": "",
|
||||
"Index pages by letter": "",
|
||||
"Indices and tables:": "",
|
||||
"Indices and tables:": "Atri\u00f0askr\u00e1 og t\u00f6flur:",
|
||||
"Last updated on %(last_updated)s.": "",
|
||||
"Library changes": "",
|
||||
"Navigation": "",
|
||||
"Next topic": "",
|
||||
"Next topic": "N\u00e6sta efni",
|
||||
"Other changes": "",
|
||||
"Overview": "",
|
||||
"Permalink to this definition": "",
|
||||
"Permalink to this headline": "",
|
||||
"Permalink to this definition": "Varanlegur hlekkur \u00e1 \u00feessa skilgreiningu",
|
||||
"Permalink to this headline": "Varanlegur hlekkur \u00e1 \u00feennan titil",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "",
|
||||
"Preparing search...": "",
|
||||
"Previous topic": "",
|
||||
"Quick search": "",
|
||||
"Search": "",
|
||||
"Search Page": "",
|
||||
"Search Results": "",
|
||||
"Search finished, found %s page(s) matching the search query.": "",
|
||||
"Search within %(docstitle)s": "",
|
||||
"Searching": "",
|
||||
"Preparing search...": "Undirb\u00fdr leit...",
|
||||
"Previous topic": "Fyrra efni",
|
||||
"Quick search": "Fl\u00fdtileit",
|
||||
"Search": "Leit",
|
||||
"Search Page": "Leitars\u00ed\u00f0a",
|
||||
"Search Results": "Leitarni\u00f0urst\u00f6\u00f0ur",
|
||||
"Search finished, found %s page(s) matching the search query.": "Leit loki\u00f0, fann %s s\u00ed\u00f0u(r) sem p\u00f6ssu\u00f0u vi\u00f0 leitarskilyr\u00f0in.",
|
||||
"Search within %(docstitle)s": "Leita \u00ed %(docstitle)s",
|
||||
"Searching": "Leitar",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Show Source": "",
|
||||
"Table of Contents": "",
|
||||
"Table of Contents": "Efnisyfirlit",
|
||||
"This Page": "",
|
||||
"Welcome! This is": "",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Leitin bar ekki \u00e1rangur. Vinsamlegast gangi\u00f0 \u00far skugga um a\u00f0 or\u00f0in s\u00e9u r\u00e9tt skrifu\u00f0 og a\u00f0 \u00fe\u00fa hafir vali\u00f0 n\u00e6gilega marga flokka.",
|
||||
"all functions, classes, terms": "",
|
||||
"can be huge": "",
|
||||
"last updated": "",
|
||||
"lists all sections and subsections": "",
|
||||
"next chapter": "",
|
||||
"previous chapter": "",
|
||||
"next chapter": "n\u00e6sti kafli",
|
||||
"previous chapter": "fyrri kafli",
|
||||
"quick access to all modules": "",
|
||||
"search": "",
|
||||
"search this documentation": "",
|
||||
"search": "leita",
|
||||
"search this documentation": "leita",
|
||||
"the documentation for": ""
|
||||
},
|
||||
"plural_expr": "(n % 10 != 1 || n % 100 == 11)"
|
||||
|
Binary file not shown.
@ -3,13 +3,14 @@
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
#
|
||||
# Translators:
|
||||
# Tryggvi Kalman <tkj3@hi.is>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-29 12:24+0000\n"
|
||||
"Last-Translator: Tryggvi Kalman <tkj3@hi.is>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -237,22 +238,22 @@ msgstr ""
|
||||
#: sphinx/config.py:385
|
||||
#, python-format
|
||||
msgid "Section %s"
|
||||
msgstr ""
|
||||
msgstr "Kafli %s"
|
||||
|
||||
#: sphinx/config.py:386
|
||||
#, python-format
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
msgstr "Mynd %s"
|
||||
|
||||
#: sphinx/config.py:387
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
msgstr "Tafla %s"
|
||||
|
||||
#: sphinx/config.py:388
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
msgstr "Listi %s"
|
||||
|
||||
#: sphinx/config.py:425
|
||||
msgid ""
|
||||
@ -923,19 +924,19 @@ msgstr ""
|
||||
|
||||
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
|
||||
msgid "General Index"
|
||||
msgstr ""
|
||||
msgstr "Almennt yfirlit"
|
||||
|
||||
#: sphinx/builders/html/__init__.py:485
|
||||
msgid "index"
|
||||
msgstr ""
|
||||
msgstr "yfirlit"
|
||||
|
||||
#: sphinx/builders/html/__init__.py:547
|
||||
msgid "next"
|
||||
msgstr ""
|
||||
msgstr "næsta"
|
||||
|
||||
#: sphinx/builders/html/__init__.py:556
|
||||
msgid "previous"
|
||||
msgstr ""
|
||||
msgstr "fyrri"
|
||||
|
||||
#: sphinx/builders/html/__init__.py:650
|
||||
msgid "generating indices"
|
||||
@ -1102,11 +1103,11 @@ msgstr ""
|
||||
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
|
||||
#: sphinx/writers/texinfo.py:498
|
||||
msgid "Index"
|
||||
msgstr ""
|
||||
msgstr "Yfirlit"
|
||||
|
||||
#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:82
|
||||
msgid "Release"
|
||||
msgstr ""
|
||||
msgstr "Útgáfa"
|
||||
|
||||
#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:382
|
||||
#, python-format
|
||||
@ -2241,7 +2242,7 @@ msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25
|
||||
msgid "Search Page"
|
||||
msgstr ""
|
||||
msgstr "Leitarsíða"
|
||||
|
||||
#: sphinx/domains/std.py:655 sphinx/domains/std.py:764
|
||||
#: sphinx/ext/autosectionlabel.py:51
|
||||
@ -2335,12 +2336,12 @@ msgstr ""
|
||||
#: sphinx/environment/adapters/indexentries.py:78
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr ""
|
||||
msgstr "sjá %s"
|
||||
|
||||
#: sphinx/environment/adapters/indexentries.py:82
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr ""
|
||||
msgstr "sjá einnig %s"
|
||||
|
||||
#: sphinx/environment/adapters/indexentries.py:85
|
||||
#, python-format
|
||||
@ -2701,7 +2702,7 @@ msgstr ""
|
||||
|
||||
#: sphinx/ext/imgmath.py:333 sphinx/ext/mathjax.py:52
|
||||
msgid "Permalink to this equation"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þessa jöfnu"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:173
|
||||
#, python-format
|
||||
@ -2804,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3080,53 +3081,53 @@ msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:252
|
||||
msgid "Attention"
|
||||
msgstr ""
|
||||
msgstr "Athugið"
|
||||
|
||||
#: sphinx/locale/__init__.py:253
|
||||
msgid "Caution"
|
||||
msgstr ""
|
||||
msgstr "Aðgát"
|
||||
|
||||
#: sphinx/locale/__init__.py:254
|
||||
msgid "Danger"
|
||||
msgstr ""
|
||||
msgstr "Hætta"
|
||||
|
||||
#: sphinx/locale/__init__.py:255
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
msgstr "Villa"
|
||||
|
||||
#: sphinx/locale/__init__.py:256
|
||||
msgid "Hint"
|
||||
msgstr ""
|
||||
msgstr "Ábending"
|
||||
|
||||
#: sphinx/locale/__init__.py:257
|
||||
msgid "Important"
|
||||
msgstr ""
|
||||
msgstr "Mikilvægt"
|
||||
|
||||
#: sphinx/locale/__init__.py:258
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
msgstr "Athugasemd"
|
||||
|
||||
#: sphinx/locale/__init__.py:259
|
||||
msgid "See also"
|
||||
msgstr ""
|
||||
msgstr "Sjá einnig"
|
||||
|
||||
#: sphinx/locale/__init__.py:260
|
||||
msgid "Tip"
|
||||
msgstr ""
|
||||
msgstr "Ábending"
|
||||
|
||||
#: sphinx/locale/__init__.py:261
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
msgstr "Aðvörun"
|
||||
|
||||
#: sphinx/templates/latex/longtable.tex_t:23
|
||||
#: sphinx/templates/latex/sphinxmessages.sty_t:8
|
||||
msgid "continued from previous page"
|
||||
msgstr ""
|
||||
msgstr "framhald frá fyrri síðu"
|
||||
|
||||
#: sphinx/templates/latex/longtable.tex_t:29
|
||||
#: sphinx/templates/latex/sphinxmessages.sty_t:9
|
||||
msgid "continues on next page"
|
||||
msgstr ""
|
||||
msgstr "framhald á næstu síðu"
|
||||
|
||||
#: sphinx/templates/latex/sphinxmessages.sty_t:10
|
||||
msgid "Non-alphabetical"
|
||||
@ -3143,12 +3144,12 @@ msgstr ""
|
||||
#: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10
|
||||
#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41
|
||||
msgid "Table of Contents"
|
||||
msgstr ""
|
||||
msgstr "Efnisyfirlit"
|
||||
|
||||
#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150
|
||||
#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
msgstr "Leit"
|
||||
|
||||
#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/searchbox.html:16
|
||||
msgid "Go"
|
||||
@ -3176,11 +3177,11 @@ msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/defindex.html:20
|
||||
msgid "Indices and tables:"
|
||||
msgstr ""
|
||||
msgstr "Atriðaskrá og töflur:"
|
||||
|
||||
#: sphinx/themes/basic/defindex.html:23
|
||||
msgid "Complete Table of Contents"
|
||||
msgstr ""
|
||||
msgstr "Heildarefnisyfirlit"
|
||||
|
||||
#: sphinx/themes/basic/defindex.html:24
|
||||
msgid "lists all sections and subsections"
|
||||
@ -3188,7 +3189,7 @@ msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/defindex.html:26
|
||||
msgid "search this documentation"
|
||||
msgstr ""
|
||||
msgstr "leita"
|
||||
|
||||
#: sphinx/themes/basic/defindex.html:28
|
||||
msgid "Global Module Index"
|
||||
@ -3229,7 +3230,7 @@ msgstr ""
|
||||
#: sphinx/themes/basic/layout.html:135
|
||||
#, python-format
|
||||
msgid "Search within %(docstitle)s"
|
||||
msgstr ""
|
||||
msgstr "Leita í %(docstitle)s"
|
||||
|
||||
#: sphinx/themes/basic/layout.html:144
|
||||
msgid "About these documents"
|
||||
@ -3264,23 +3265,23 @@ msgstr ""
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
msgid "Search %(docstitle)s"
|
||||
msgstr ""
|
||||
msgstr "Leita í %(docstitle)s"
|
||||
|
||||
#: sphinx/themes/basic/relations.html:11
|
||||
msgid "Previous topic"
|
||||
msgstr ""
|
||||
msgstr "Fyrra efni"
|
||||
|
||||
#: sphinx/themes/basic/relations.html:13
|
||||
msgid "previous chapter"
|
||||
msgstr ""
|
||||
msgstr "fyrri kafli"
|
||||
|
||||
#: sphinx/themes/basic/relations.html:16
|
||||
msgid "Next topic"
|
||||
msgstr ""
|
||||
msgstr "Næsta efni"
|
||||
|
||||
#: sphinx/themes/basic/relations.html:18
|
||||
msgid "next chapter"
|
||||
msgstr ""
|
||||
msgstr "næsti kafli"
|
||||
|
||||
#: sphinx/themes/basic/search.html:27
|
||||
msgid ""
|
||||
@ -3296,23 +3297,23 @@ msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:41
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
msgstr "leita"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
msgstr "Leitarniðurstöður"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
msgstr "Leitin bar ekki árangur. Vinsamlegast gangið úr skugga um að orðin séu rétt skrifuð og að þú hafir valið nægilega marga flokka."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
msgstr ""
|
||||
msgstr "Flýtileit"
|
||||
|
||||
#: sphinx/themes/basic/sourcelink.html:12
|
||||
msgid "This Page"
|
||||
@ -3350,32 +3351,32 @@ msgstr ""
|
||||
#: sphinx/writers/html.py:441 sphinx/writers/html5.py:387
|
||||
#: sphinx/writers/html5.py:392
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þennan titil"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:131
|
||||
#: sphinx/writers/html.py:140 sphinx/writers/html5.py:102
|
||||
#: sphinx/writers/html5.py:111
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þessa skilgreiningu"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:238
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
msgstr "Fela leitarniðurstöður"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:136
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
msgstr "Leitar"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:141
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
msgstr "Undirbýr leit..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
msgstr "Leit lokið, fann %s síðu(r) sem pössuðu við leitarskilyrðin."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -3534,19 +3535,19 @@ msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:413 sphinx/writers/html5.py:364
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þetta hugtak"
|
||||
|
||||
#: sphinx/writers/html.py:445 sphinx/writers/html5.py:396
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þessa töflu"
|
||||
|
||||
#: sphinx/writers/html.py:488 sphinx/writers/html5.py:439
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þennan kóða"
|
||||
|
||||
#: sphinx/writers/html.py:490 sphinx/writers/html5.py:441
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
msgstr "Varanlegur hlekkur á þessa mynd"
|
||||
|
||||
#: sphinx/writers/html.py:492 sphinx/writers/html5.py:443
|
||||
msgid "Permalink to this toctree"
|
||||
@ -3597,11 +3598,11 @@ msgstr ""
|
||||
#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:803
|
||||
#, python-format
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
msgstr "[mynd: %s]"
|
||||
|
||||
#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:804
|
||||
msgid "[image]"
|
||||
msgstr ""
|
||||
msgstr "[mynd]"
|
||||
|
||||
#: sphinx/writers/texinfo.py:1181
|
||||
msgid "caption not inside a figure."
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n"
|
||||
@ -2809,29 +2809,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2839,71 +2839,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr " Basi: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3304,12 +3304,12 @@ msgid "search"
|
||||
msgstr "cerca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Risultati della ricerca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3375,12 +3375,12 @@ msgstr "Cerca"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Preparo la ricerca..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Ricerca completata, trovata/e %s pagina/e corrispondenti."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", in "
|
||||
|
||||
|
Binary file not shown.
@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n"
|
||||
@ -2819,29 +2819,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "auto%s (%r) の署名が無効です"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "%sの引数のフォーマット中にエラーが発生しました: %s "
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "オブジェクト %s に属性 %s がありません"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autodoc: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2849,71 +2849,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "ドキュメントの自動生成 %r のためにどのモジュールをインポートするのか分かりません (ドキュメントに \"module\"または \"currentmodule\"ディレクティブを配置するか、明示的なモジュール名を指定してください)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "automodule 名の \"::\" は意味がありません"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "automodule に与えられた署名引数、または戻り値となるアノテーション %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ は文字列のリストでなければなりません。%r (%s モジュールの中) ではないです -- ignoring __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "ベースクラス: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3314,12 +3314,12 @@ msgid "search"
|
||||
msgstr "検索"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "検索結果"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3385,12 +3385,12 @@ msgstr "検索中"
|
||||
msgid "Preparing search..."
|
||||
msgstr "検索を準備しています..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "検索が完了し、 %s ページ見つけました。"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", in "
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 02:19+0000\n"
|
||||
"Last-Translator: YT H <dev@theYT.net>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr "member-order 옵션에 대해 잘못된 값: %s"
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr "class-doc-from 옵션에 대해 잘못된 값: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "auto%s (%r)에 대한 잘못된 서명"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "%s 속성이 %s 객체에 없음"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autodoc: 문서화 할 %r을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "%r의 자동 문서화를 위해 가져올 모듈을 알 수 없습니다 (문서에 \"module\" 또는 \"currentmodule\" 지시문을 배치하거나, 명시적으로 모듈 이름을 지정해 보십시오)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr "%s에 대한 서명을 서식화하는 동안 오류 발생: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "automodule 이름의 \"::\"은 의미가 없음"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "automodule %s에 대해 서명 인수 또는 반환 값 주석이 지정됨"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__은 %r이(가) 아닌 문자열의 목록이어야 합니다 (모듈 %s) -- __all__을 무시합니다"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "기반 클래스: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "%s의 별칭"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "TypeVar(%s)의 별칭"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "검색"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "검색 결과"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr "검색 중"
|
||||
msgid "Preparing search..."
|
||||
msgstr "검색 준비 중…"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "검색이 완료되었으며, 검색어와 일치하는 %s 개 페이지를 찾았습니다."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", 문서 - "
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "ieškoti"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Paieškos rezultatai"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr "meklēt"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Atlases rezultāti"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr "søk"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Søkeresultat"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "खोज्नुहोस्"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "खोजेको नतिजा"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n"
|
||||
@ -2810,29 +2810,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2840,71 +2840,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Basisklassen: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3305,12 +3305,12 @@ msgid "search"
|
||||
msgstr "zoeken"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Zoekresultaten"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3376,12 +3376,12 @@ msgstr "Bezig met zoeken"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Zoeken aan het voorbereiden..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", in"
|
||||
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n"
|
||||
@ -2808,29 +2808,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "błąd podczas formatowania argumentów dla %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "brakujący atrybut %s w obiekcie %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2838,71 +2838,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Klasy bazowe: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3303,12 +3303,12 @@ msgid "search"
|
||||
msgstr "szukaj"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Wyniki wyszukiwania"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3374,12 +3374,12 @@ msgstr "Wyszukiwanie"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Inicjalizacja wyszukiwania..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do zapytania: %s."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", w "
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 02:20+0000\n"
|
||||
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n"
|
||||
@ -2810,29 +2810,29 @@ msgstr "valor inválido para a opção member-order: %s"
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr "valor inválido para a opção class-doc-from: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "assinatura inválida para auto%s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "erro ao formatar argumentos para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "faltando atributo %s no objeto %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autodoc: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2840,71 +2840,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "não sei qual módulo importar para documentação automática %r (tente colocar uma diretiva “module” ou “currentmodule” no documento ou forneça um nome explícito para o módulo)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr "erro ao formatar assinatura para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "“::” no nome de automodule não faz sentido"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr "argumentos de assinatura ou anotação de retorno fornecidos para automodule %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ deve ser uma lista de strings, não %r (no módulo %s) -- ignorando __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "Falha ao obter uma assinatura de função para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr "Falha ao obter uma assinatura de construtor para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Base: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "apelido de %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "apelido de TypeVar(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "Falha ao obter uma assinatura de método para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "__slots__ inválido encontrado em %s. Ignorado."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3305,12 +3305,12 @@ msgid "search"
|
||||
msgstr "buscar"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Resultados da Busca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3376,12 +3376,12 @@ msgstr "Buscando"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Preparando a busca..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Busca concluída. %s página(s) que atendem a consulta."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", em "
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "pesquisar"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Resultados da Pesquisa"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr "A Pesquisar"
|
||||
msgid "Preparing search..."
|
||||
msgstr "A preparar a pesquisa..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Pesquisa concluída, foram encontrada(s) %s página(s) que combinam com a consulta feita."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", em"
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "căutare"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Rezultatele Căutării"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr "Căutare"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Se pregătește căutarea..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Căutare finalizată, au fost găsite %s pagini care au corespuns căutării."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", în"
|
||||
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n"
|
||||
@ -2810,29 +2810,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2840,71 +2840,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr " Базовые классы: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3305,12 +3305,12 @@ msgid "search"
|
||||
msgstr "искать"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Результаты поиска"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3376,12 +3376,12 @@ msgstr "Идёт поиск"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Подготовка поиска…"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Поиск завершён, найдено %s страниц, удовлетворяющих запросу."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", в"
|
||||
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n"
|
||||
@ -2805,29 +2805,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "සොයන්න"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "සෙවුම් ප්රතිඵල"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr "සොයමින්..."
|
||||
msgid "Preparing search..."
|
||||
msgstr "සෙවුම සූදානම් කරමින්...."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n"
|
||||
@ -2807,29 +2807,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "chyba formátovania argumentov %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "chýba atribút %s objektu %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2837,71 +2837,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "„::” v automodule nedáva zmysel"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ má byť zoznam reťazcov, nie %r (v module %s) -- ignorované __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Základ: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "alias pre %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "alias pre TypeVar(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "Neplatné __slots__ nájdené v %s. Ignorované."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3302,12 +3302,12 @@ msgid "search"
|
||||
msgstr "hľadať"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Výsledky hľadania"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3373,12 +3373,12 @@ msgstr "Hľadanie"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Príprava hľadania..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Hľadanie dokončené, nájdené %s strana(y), ktoré vyhovujú hľadanému výrazu."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", v "
|
||||
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n"
|
||||
@ -2804,29 +2804,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2834,71 +2834,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3299,12 +3299,12 @@ msgid "search"
|
||||
msgstr "išči"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Rezultati Iskanja"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3370,12 +3370,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx 4.2.0\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:36+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\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"
|
||||
@ -2822,22 +2822,22 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception"
|
||||
@ -2845,7 +2845,7 @@ msgid ""
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2853,70 +2853,70 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid "missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of "
|
||||
"\"alphabetic\". Please update your setting."
|
||||
@ -3320,12 +3320,12 @@ msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
@ -3391,12 +3391,12 @@ msgstr ""
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -8,9 +8,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 09:24+0000\n"
|
||||
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
|
||||
"Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -43,7 +43,7 @@ msgid ""
|
||||
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
|
||||
"above. For more details, please read https://github.com/sphinx-"
|
||||
"doc/sphinx/issues/6803"
|
||||
msgstr ""
|
||||
msgstr "Për arsye sigurie, mënyra paralele është e çaktivizuar në macOS dhe python3.8 dhe më sipër. Për më tepër hollësi, ju lutemi, lexoni https://github.com/sphinx-doc/sphinx/issues/6803"
|
||||
|
||||
#: sphinx/application.py:228
|
||||
#, python-format
|
||||
@ -2262,7 +2262,7 @@ msgstr "numfig është i çaktivizuar. :numref: është shpërfillur."
|
||||
#: sphinx/domains/std.py:878
|
||||
#, python-format
|
||||
msgid "Failed to create a cross reference. Any number is not assigned: %s"
|
||||
msgstr ""
|
||||
msgstr "S’u arrit të krijohej një ndërreferencë. S’u caktua ndonjë numër: %s"
|
||||
|
||||
#: sphinx/domains/std.py:890
|
||||
#, python-format
|
||||
@ -2287,7 +2287,7 @@ msgstr "etiketë e papërcaktuar: %s"
|
||||
#: sphinx/domains/std.py:1122
|
||||
#, python-format
|
||||
msgid "Failed to create a cross reference. A title or caption not found: %s"
|
||||
msgstr ""
|
||||
msgstr "S’u arrit të krijohej një ndërreferencë. S’u gjet titull ose legjendë: %s"
|
||||
|
||||
#: sphinx/environment/__init__.py:73
|
||||
msgid "new config"
|
||||
@ -2693,12 +2693,12 @@ msgstr "Urdhri %s %r s’mund të xhirohet (i nevojshëm për shfaqje formulash
|
||||
#: sphinx/ext/imgmath.py:300
|
||||
#, python-format
|
||||
msgid "display latex %r: %s"
|
||||
msgstr ""
|
||||
msgstr "shfaq latex %r: %s"
|
||||
|
||||
#: sphinx/ext/imgmath.py:326
|
||||
#, python-format
|
||||
msgid "inline latex %r: %s"
|
||||
msgstr ""
|
||||
msgstr "latex brendazi %r: %s"
|
||||
|
||||
#: sphinx/ext/imgmath.py:333 sphinx/ext/mathjax.py:52
|
||||
msgid "Permalink to this equation"
|
||||
@ -2805,29 +2805,29 @@ msgstr "vlerë e pavlefshme mundësie për member-order: %s"
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr "vlerë e pavlefshme për mundësinë class-doc-from: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr "nënshkrim i pavlefshëm për auto%s (%r)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr "gabim gjatë formatimi argumentesh për %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr "atribut %s që mungon te objekt %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autodoc: s’u arrit të përcaktohet %r për dokumentim, u shfaq përjashtimi vijues:\n%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2835,71 +2835,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr "s’dihet cili modul të importohet për vetëdokumentim të %r (provoni të vendosni te dokumenti një direktivë \"module\" ose \"currentmodule\", ose të jepni shprehimisht një emër moduli)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr "gabim gjatë formatimi nënshkrimesh për %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr "\"::\" në emër automoduli nuk ka kuptim"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr "__all__ should duhet të jetë një listë vargjesh, jo %r (në module %s) -- ignoring __all__"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr "Baza: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "alias për %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "alias për TypeVar(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "S’u arrit të merre një nënshkrim metode për %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -2923,7 +2923,7 @@ msgstr "S’u arrit të përtypet type_comment për %r: %s"
|
||||
#: sphinx/ext/autosummary/__init__.py:278
|
||||
#, python-format
|
||||
msgid "autosummary references excluded document %r. Ignored."
|
||||
msgstr ""
|
||||
msgstr "referenca vetëpërmbledhjeje përjashtuan dokumentin %r. U shpërfill."
|
||||
|
||||
#: sphinx/ext/autosummary/__init__.py:280
|
||||
#, python-format
|
||||
@ -3300,12 +3300,12 @@ msgid "search"
|
||||
msgstr "kërko"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Përfundime Kërkimi"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3371,12 +3371,12 @@ msgstr "Kërkim"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Po përgatitet kërkim..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Kërkimi përfundoi, u gjetën %s page(s) me përputhje me shprehjen e kërkuar."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", në "
|
||||
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-07-25 02:33+0000\n"
|
||||
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
|
||||
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n"
|
||||
@ -2806,29 +2806,29 @@ msgstr ""
|
||||
msgid "invalid value for class-doc-from option: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:398
|
||||
#: sphinx/ext/autodoc/__init__.py:401
|
||||
#, python-format
|
||||
msgid "invalid signature for auto%s (%r)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:515
|
||||
#: sphinx/ext/autodoc/__init__.py:518
|
||||
#, python-format
|
||||
msgid "error while formatting arguments for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673
|
||||
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
|
||||
#, python-format
|
||||
msgid "missing attribute %s in object %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:810
|
||||
#: sphinx/ext/autodoc/__init__.py:813
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autodoc: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:903
|
||||
#: sphinx/ext/autodoc/__init__.py:906
|
||||
#, python-format
|
||||
msgid ""
|
||||
"don't know which module to import for autodocumenting %r (try placing a "
|
||||
@ -2836,71 +2836,71 @@ msgid ""
|
||||
"explicit module name)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:961
|
||||
#: sphinx/ext/autodoc/__init__.py:964
|
||||
#, python-format
|
||||
msgid "error while formatting signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1011
|
||||
#: sphinx/ext/autodoc/__init__.py:1014
|
||||
msgid "\"::\" in automodule name doesn't make sense"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1018
|
||||
#: sphinx/ext/autodoc/__init__.py:1021
|
||||
#, python-format
|
||||
msgid "signature arguments or return annotation given for automodule %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1031
|
||||
#: sphinx/ext/autodoc/__init__.py:1034
|
||||
#, python-format
|
||||
msgid ""
|
||||
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
|
||||
"__all__"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1097
|
||||
#: sphinx/ext/autodoc/__init__.py:1100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"missing attribute mentioned in :members: option: module %s, attribute %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370
|
||||
#: sphinx/ext/autodoc/__init__.py:2721
|
||||
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
|
||||
#: sphinx/ext/autodoc/__init__.py:2726
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1559
|
||||
#: sphinx/ext/autodoc/__init__.py:1564
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1660
|
||||
#: sphinx/ext/autodoc/__init__.py:1665
|
||||
#, python-format
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819
|
||||
#: sphinx/ext/autodoc/__init__.py:1838
|
||||
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
|
||||
#: sphinx/ext/autodoc/__init__.py:1843
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1880
|
||||
#: sphinx/ext/autodoc/__init__.py:1885
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2113 sphinx/ext/autodoc/__init__.py:2207
|
||||
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2335
|
||||
#: sphinx/ext/autodoc/__init__.py:2340
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2764
|
||||
#: sphinx/ext/autodoc/__init__.py:2769
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@ -3301,12 +3301,12 @@ msgid "search"
|
||||
msgstr "тражи"
|
||||
|
||||
#: sphinx/themes/basic/search.html:47
|
||||
#: sphinx/themes/basic/static/searchtools.js:297
|
||||
#: sphinx/themes/basic/static/searchtools.js:303
|
||||
msgid "Search Results"
|
||||
msgstr "Резултати претраге"
|
||||
|
||||
#: sphinx/themes/basic/search.html:49
|
||||
#: sphinx/themes/basic/static/searchtools.js:299
|
||||
#: sphinx/themes/basic/static/searchtools.js:305
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
@ -3372,12 +3372,12 @@ msgstr "Претражује се"
|
||||
msgid "Preparing search..."
|
||||
msgstr "Припрема претраге..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:301
|
||||
#: sphinx/themes/basic/static/searchtools.js:307
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:355
|
||||
#: sphinx/themes/basic/static/searchtools.js:361
|
||||
msgid ", in "
|
||||
msgstr ", у "
|
||||
|
||||
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user